diff options
author | Rafael Antognolli <[email protected]> | 2019-01-15 15:48:43 -0800 |
---|---|---|
committer | Rafael Antognolli <[email protected]> | 2019-01-17 15:08:22 -0800 |
commit | 643248b66a265242ef3de3dffdae79e1283eee31 (patch) | |
tree | 78acf8c7fca478f717a314069aaa6209180e28e5 /src/intel/vulkan/genX_pipeline.c | |
parent | 5d61c74f3de0510289b2527562607042c4995094 (diff) |
anv: Remove state flush.
We have all the state buffers snooped, so we don't need to clflush
everything anymore.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/genX_pipeline.c')
-rw-r--r-- | src/intel/vulkan/genX_pipeline.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/intel/vulkan/genX_pipeline.c b/src/intel/vulkan/genX_pipeline.c index e52e5d8304a..76766a89258 100644 --- a/src/intel/vulkan/genX_pipeline.c +++ b/src/intel/vulkan/genX_pipeline.c @@ -1055,7 +1055,6 @@ emit_cb_state(struct anv_pipeline *pipeline, #endif GENX(BLEND_STATE_pack)(NULL, pipeline->blend_state.map, &blend_state); - anv_state_flush(device, pipeline->blend_state); anv_batch_emit(&pipeline->batch, GENX(3DSTATE_BLEND_STATE_POINTERS), bsp) { bsp.BlendStatePointer = pipeline->blend_state.offset; |