Archived
1
Fork 0

Support base instance parameter on Vulkan's DrawInstanced command

This commit is contained in:
Joshua Goins 2022-02-07 18:17:58 -05:00
parent c732a86df8
commit 2f30a9e18e

View file

@ -1479,7 +1479,7 @@ void GFXVulkan::submit(GFXCommandBuffer* command_buffer, const platform::window_
case GFXCommandType::DrawIndexed:
{
if(try_bind_descriptor()) {
vkCmdDrawIndexed(cmd, command.data.draw_indexed.index_count, 1, command.data.draw_indexed.first_index, command.data.draw_indexed.vertex_offset, 0);
vkCmdDrawIndexed(cmd, command.data.draw_indexed.index_count, 1, command.data.draw_indexed.first_index, command.data.draw_indexed.vertex_offset, command.data.draw_indexed.base_instance);
}
}
break;