From bbbf7a538c3d7a6b11569d8ff20c3e51f7c3eff0 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Tue, 18 Jun 2019 23:47:12 -0500 Subject: [PATCH] iris: Bail on queries for INTEL_NO_HW=1. We don't execute any of the commands to record snapshots, so we can't actually produce a real result. We do however need to avoid waiting on a syncpt which will never be signalled. So, just return 0. --- src/gallium/drivers/iris/iris_query.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/gallium/drivers/iris/iris_query.c b/src/gallium/drivers/iris/iris_query.c index 6d96590..d30011f 100644 --- a/src/gallium/drivers/iris/iris_query.c +++ b/src/gallium/drivers/iris/iris_query.c @@ -859,6 +859,11 @@ iris_get_query_result(struct pipe_context *ctx, const struct gen_device_info *devinfo = &screen->devinfo; struct iris_bo *bo = iris_resource_bo(q->query_state_ref.res); + if (unlikely(screen->no_hw)) { + result->u64 = 0; + return true; + } + if (!q->ready) { if (iris_batch_references(&ice->batches[q->batch_idx], bo)) iris_batch_flush(&ice->batches[q->batch_idx]); -- 2.7.4