iris: Move snapshots_landed to the front.
authorKenneth Graunke <kenneth@whitecape.org>
Mon, 22 Oct 2018 22:55:54 +0000 (15:55 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Thu, 21 Feb 2019 18:26:09 +0000 (10:26 -0800)
Transform feedback overflow queries need to write additional data,
and it would be nice to have this field remain at a consistent offset.

src/gallium/drivers/iris/iris_query.c

index 1183a65fef2f6fd4f50fae08689f58b2b578069b..e3cd3b2ef141e6f2644645956ebfe76e80d6c4ef 100644 (file)
@@ -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;
 };
 
 /**