Module: Mesa Branch: master Commit: d06e168b878be45029bf66c2ac627d16144a7823 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=d06e168b878be45029bf66c2ac627d16144a7823
Author: Dave Airlie <[email protected]> Date: Sun Mar 19 14:17:14 2017 +1000 radv: fix primitive reset index emission This was meant to be checking the index type to get the correct index not the last emitted one. This fixes: dEQP-VK.pipeline.input_assembly.primitive_restart.index_type_uint32.triangle_strip_with_adjacency Reviewed-by: Bas Nieuwenhuizen <[email protected]> Cc: "13.0 17.0" <[email protected]> Signed-off-by: Dave Airlie <[email protected]> --- src/amd/vulkan/radv_cmd_buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/radv_cmd_buffer.c b/src/amd/vulkan/radv_cmd_buffer.c index 17be0a1dd3..ba192f302e 100644 --- a/src/amd/vulkan/radv_cmd_buffer.c +++ b/src/amd/vulkan/radv_cmd_buffer.c @@ -2324,7 +2324,7 @@ void radv_CmdDraw( static void radv_emit_primitive_reset_index(struct radv_cmd_buffer *cmd_buffer) { - uint32_t primitive_reset_index = cmd_buffer->state.last_primitive_reset_index ? 0xffffffffu : 0xffffu; + uint32_t primitive_reset_index = cmd_buffer->state.index_type ? 0xffffffffu : 0xffffu; if (cmd_buffer->state.pipeline->graphics.prim_restart_enable && primitive_reset_index != cmd_buffer->state.last_primitive_reset_index) { _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
