radeonsi: iterate from draw 1 for total/min_direct_count computation

Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8653>
This commit is contained in:
Marek Olšák 2021-01-17 18:48:09 -05:00 committed by Marge Bot
parent 01e3d28829
commit 67c2921193

View file

@ -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;