aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/iris/iris_batch.h
diff options
context:
space:
mode:
authorChris Wilson <[email protected]>2020-05-27 22:19:52 +0100
committerKenneth Graunke <[email protected]>2020-05-28 12:47:19 -0700
commit034329128b703f8c2e8ad1980ddb131df372ce48 (patch)
treee27de841255132a06c7d9d52804abaed25ae76c6 /src/gallium/drivers/iris/iris_batch.h
parent682e14d3eaee8991ee08ea309cbf9a509b6e6b27 (diff)
iris: Rename iris_seqno to iris_fine_fence
Rename iris_seqno to iris_fine_fence, borrowed from si_fine_fence, to avoid introducing any confusion with any other seqno used for tracking pipelines. Reviewed-by: Kenneth Graunke <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5233>
Diffstat (limited to 'src/gallium/drivers/iris/iris_batch.h')
-rw-r--r--src/gallium/drivers/iris/iris_batch.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/iris/iris_batch.h b/src/gallium/drivers/iris/iris_batch.h
index 8323f45eff2..421d8e064d4 100644
--- a/src/gallium/drivers/iris/iris_batch.h
+++ b/src/gallium/drivers/iris/iris_batch.h
@@ -34,7 +34,7 @@
#include "common/gen_decoder.h"
#include "iris_fence.h"
-#include "iris_seqno.h"
+#include "iris_fine_fence.h"
struct iris_context;
@@ -117,10 +117,10 @@ struct iris_batch {
/** The sequence number to write the next time we add a fence. */
uint32_t next;
- } seqno;
+ } fine_fences;
/** A seqno (and syncobj) for the last batch that was submitted. */
- struct iris_seqno *last_seqno;
+ struct iris_fine_fence *last_fence;
/** List of other batches which we might need to flush to use a BO */
struct iris_batch *other_batches[IRIS_BATCH_COUNT - 1];