summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIcecream95 <ixn@disroot.org>2020-10-15 00:08:36 +1300
committerMarge Bot <eric+marge@anholt.net>2020-10-21 01:27:45 +0000
commitc97e82bab50a2ec2d9d6e73a68c59c544526d01c (patch)
treee570bfb497f9ac3b04c6fbe7c333e805be699d95
parent04e955f19bb760b88acad414425cd4708a58e58e (diff)
panfrost: Only enable occlusion queries when active
Fixes piglit tests: - occlusion_query_meta_fragments - occlusion_query_meta_save Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7074>
-rw-r--r--src/gallium/drivers/panfrost/pan_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/panfrost/pan_context.c b/src/gallium/drivers/panfrost/pan_context.c
index 5728ec6fe8a..9d0b6c430b2 100644
--- a/src/gallium/drivers/panfrost/pan_context.c
+++ b/src/gallium/drivers/panfrost/pan_context.c
@@ -401,7 +401,7 @@ panfrost_draw_emit_tiler(struct panfrost_batch *batch,
pan_emit_draw_descs(batch, &cfg, PIPE_SHADER_FRAGMENT);
- if (ctx->occlusion_query) {
+ if (ctx->occlusion_query && ctx->active_queries) {
if (ctx->occlusion_query->type == PIPE_QUERY_OCCLUSION_COUNTER)
cfg.occlusion_query = MALI_OCCLUSION_MODE_COUNTER;
else