llvmpipe: fix ps invocations query bug

We were not initializing the PS invocation count to zero before
computing the sum of the per-thread results.

This fixes an issue where querying the result of the query more
than once would cause the result to grow larger each time.

Signed-off-by: Brian Paul <brianp@vmware.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22281>
This commit is contained in:
Brian Paul
2023-04-03 20:23:51 -06:00
committed by Marge Bot
parent 840e98f19e
commit 43773fdda7
+1
View File
@@ -184,6 +184,7 @@ llvmpipe_get_query_result(struct pipe_context *pipe,
struct pipe_query_data_pipeline_statistics *stats =
(struct pipe_query_data_pipeline_statistics *)vresult;
/* only ps_invocations come from binned query */
pq->stats.ps_invocations = 0;
for (unsigned i = 0; i < num_threads; i++) {
pq->stats.ps_invocations += pq->end[i];
}