diff options
author | Jason Ekstrand <[email protected]> | 2017-02-20 10:28:27 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-02-21 12:26:35 -0800 |
commit | f9d7d27d6dc46696c0c8479a3180c57774991129 (patch) | |
tree | 8a81d3959bb3c7770c56740e94348978c93833df /src/intel/vulkan/genX_pipeline.c | |
parent | 075ed20614e91110322aadff44dbd4c1ca2422e8 (diff) |
anv: Rename clflush_range and state_clflush
It's a bit shorter and easier to work with. Also, we're about to add a
helper called clflush which does the clflush but without any memory
fencing.
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/vulkan/genX_pipeline.c')
-rw-r--r-- | src/intel/vulkan/genX_pipeline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/genX_pipeline.c b/src/intel/vulkan/genX_pipeline.c index a9396da48ac..e461e6e3563 100644 --- a/src/intel/vulkan/genX_pipeline.c +++ b/src/intel/vulkan/genX_pipeline.c @@ -977,7 +977,7 @@ emit_cb_state(struct anv_pipeline *pipeline, GENX(BLEND_STATE_pack)(NULL, pipeline->blend_state.map, &blend_state); if (!device->info.has_llc) - anv_state_clflush(pipeline->blend_state); + anv_state_flush(pipeline->blend_state); anv_batch_emit(&pipeline->batch, GENX(3DSTATE_BLEND_STATE_POINTERS), bsp) { bsp.BlendStatePointer = pipeline->blend_state.offset; |