Module: Mesa Branch: master Commit: c7fcaf231466ee602d3973b1cb01d3f03cc072e9 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=c7fcaf231466ee602d3973b1cb01d3f03cc072e9
Author: Bas Nieuwenhuizen <[email protected]> Date: Sun Feb 19 03:35:02 2017 +0100 radv: Invert ring SGPR check. I assume this wants to check if all pipelines use the same SGPR for the rings. Signed-off-by: Bas Nieuwenhuizen <[email protected]> Reviewed-by: Dave Airlie <[email protected]> Acked-by: Edward O'Callaghan <[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 75149c5..57d55b3 100644 --- a/src/amd/vulkan/radv_cmd_buffer.c +++ b/src/amd/vulkan/radv_cmd_buffer.c @@ -1900,7 +1900,7 @@ void radv_CmdBindPipeline( if (cmd_buffer->ring_offsets_idx == -1) cmd_buffer->ring_offsets_idx = loc->sgpr_idx; else if (loc->sgpr_idx != -1) - assert(loc->sgpr_idx != cmd_buffer->ring_offsets_idx); + assert(loc->sgpr_idx == cmd_buffer->ring_offsets_idx); } break; default: _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
