mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
RenderingDevice: Fix usage of index offset
This commit is contained in:
parent
6882890a34
commit
382f0f97d6
@ -7751,7 +7751,7 @@ void RenderingDeviceVulkan::draw_list_bind_index_array(DrawListID p_list, RID p_
|
||||
dl->validation.index_array_size = index_array->indices;
|
||||
dl->validation.index_array_offset = index_array->offset;
|
||||
|
||||
vkCmdBindIndexBuffer(dl->command_buffer, index_array->buffer, index_array->offset, index_array->index_type);
|
||||
vkCmdBindIndexBuffer(dl->command_buffer, index_array->buffer, 0, index_array->index_type);
|
||||
}
|
||||
|
||||
void RenderingDeviceVulkan::draw_list_set_line_width(DrawListID p_list, float p_width) {
|
||||
|
Loading…
Reference in New Issue
Block a user