diff options
author | Kenneth Graunke <[email protected]> | 2018-11-01 16:11:31 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-02-21 10:26:09 -0800 |
commit | 3e6aaa1ba5c706046daa4c0e45551a17c867a9b3 (patch) | |
tree | 54cea416b4ca11dab2bba13d7b4d14beb45324e9 | |
parent | 84a419432deffd47f166819e432a5f927f149263 (diff) |
iris: Disable a PIPE_CONTROL workaround on Icelake
-rw-r--r-- | src/gallium/drivers/iris/iris_state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/iris/iris_state.c b/src/gallium/drivers/iris/iris_state.c index 12741c7a899..86975e279e1 100644 --- a/src/gallium/drivers/iris/iris_state.c +++ b/src/gallium/drivers/iris/iris_state.c @@ -4776,7 +4776,7 @@ iris_emit_raw_pipe_control(struct iris_batch *batch, uint32_t flags, * We do these now because they may add post-sync operations or CS stalls. */ - if (flags & PIPE_CONTROL_VF_CACHE_INVALIDATE) { + if (GEN_GEN < 11 && flags & PIPE_CONTROL_VF_CACHE_INVALIDATE) { /* Project: BDW, SKL+ (stopping at CNL) / Argument: VF Invalidate * * "'Post Sync Operation' must be enabled to 'Write Immediate Data' or |