diff options
author | Kenneth Graunke <[email protected]> | 2018-10-22 15:55:54 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-02-21 10:26:09 -0800 |
commit | 938d63b2e8984591ea78f166f80c4eb1c9216648 (patch) | |
tree | 628585d9e58e923dc12aca80cf1160938420c6c7 | |
parent | ba2a4207f91bc5e5af0fdbff72c57fd0c5b8d4e7 (diff) |
iris: Move snapshots_landed to the front.
Transform feedback overflow queries need to write additional data,
and it would be nice to have this field remain at a consistent offset.
-rw-r--r-- | src/gallium/drivers/iris/iris_query.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/iris/iris_query.c b/src/gallium/drivers/iris/iris_query.c index 1183a65fef2..e3cd3b2ef14 100644 --- a/src/gallium/drivers/iris/iris_query.c +++ b/src/gallium/drivers/iris/iris_query.c @@ -101,9 +101,9 @@ struct iris_query { }; struct iris_query_snapshots { + uint64_t snapshots_landed; uint64_t start; uint64_t end; - uint64_t snapshots_landed; }; /** |