From 67c2921193ec71a902b4b1a8bed2465f45b348a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Sun, 17 Jan 2021 18:48:09 -0500 Subject: [PATCH] radeonsi: iterate from draw 1 for total/min_direct_count computation Reviewed-by: Pierre-Eric Pelloux-Prayer Part-of: --- src/gallium/drivers/radeonsi/si_state_draw.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/radeonsi/si_state_draw.cpp b/src/gallium/drivers/radeonsi/si_state_draw.cpp index e7385a88536..f7360e68ff1 100644 --- a/src/gallium/drivers/radeonsi/si_state_draw.cpp +++ b/src/gallium/drivers/radeonsi/si_state_draw.cpp @@ -1837,8 +1837,9 @@ static void si_draw_vbo(struct pipe_context *ctx, } } } else { - min_direct_count = num_draws ? UINT_MAX : 0; - for (unsigned i = 0; i < num_draws; i++) { + total_direct_count = min_direct_count = draws[0].count; + + for (unsigned i = 1; i < num_draws; i++) { unsigned count = draws[i].count; total_direct_count += count;