diff options
author | Kenneth Graunke <[email protected]> | 2019-01-23 16:58:30 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-02-21 10:26:11 -0800 |
commit | 6e41f1b45956c3edf202541dc2494dedc6066f7a (patch) | |
tree | 8c1856afa055ff8a1194fd4f94efb2fc4c68fa2d /src/gallium/drivers/iris | |
parent | edd3ce5a63eb11e8063177545fcb77dc4fe7454d (diff) |
iris: Drop comment about ISP_DIS
i965 re-emits 3DSTATE_CONSTANT_* on every batch, so there's no point in
restoring the constants from the context. Iris actually re-pins the
constant buffers properly across the batch, and avoids re-emitting the
constant packets unless it's necessary. So, we don't want ISP_DIS.
Diffstat (limited to 'src/gallium/drivers/iris')
-rw-r--r-- | src/gallium/drivers/iris/iris_batch.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/drivers/iris/iris_batch.c b/src/gallium/drivers/iris/iris_batch.c index 66ed3c36278..2e4d529ffb2 100644 --- a/src/gallium/drivers/iris/iris_batch.c +++ b/src/gallium/drivers/iris/iris_batch.c @@ -444,8 +444,6 @@ iris_chain_to_new_batch(struct iris_batch *batch) static void iris_finish_batch(struct iris_batch *batch) { - // XXX: ISP DIS - /* Emit MI_BATCH_BUFFER_END to finish our batch. */ uint32_t *map = batch->map_next; |