vkd3d: Remove warning for setting NULL index buffer.

This is benign and easily gets spammed a TON.
We will warn if an indexed draw is actually made like this.

Signed-off-by: Hans-Kristian Arntzen <post@arntzen-software.no>
This commit is contained in:
Hans-Kristian Arntzen 2022-02-02 16:59:35 +01:00
parent 91ca2ed8ba
commit 5e526d506b
1 changed files with 0 additions and 1 deletions

View File

@ -7760,7 +7760,6 @@ static void STDMETHODCALLTYPE d3d12_command_list_IASetIndexBuffer(d3d12_command_
if (!view)
{
WARN("Got NULL index buffer view, indexed draw calls will be dropped.\n");
list->has_valid_index_buffer = false;
return;
}