Mesa (master): iris: Bail on queries for INTEL_NO_HW=1.

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Jun 19 16:59:44 UTC 2019


Module: Mesa
Branch: master
Commit: bbbf7a538c3d7a6b11569d8ff20c3e51f7c3eff0
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=bbbf7a538c3d7a6b11569d8ff20c3e51f7c3eff0

Author: Kenneth Graunke <kenneth at whitecape.org>
Date:   Tue Jun 18 23:47:12 2019 -0500

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 6d9659080a7..d30011fe467 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]);




More information about the mesa-commit mailing list