summaryrefslogtreecommitdiffstats
path: root/src/intel/vulkan/anv_device.c
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2017-02-20 10:28:27 -0800
committerJason Ekstrand <[email protected]>2017-02-21 12:26:35 -0800
commitf9d7d27d6dc46696c0c8479a3180c57774991129 (patch)
tree8a81d3959bb3c7770c56740e94348978c93833df /src/intel/vulkan/anv_device.c
parent075ed20614e91110322aadff44dbd4c1ca2422e8 (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/anv_device.c')
-rw-r--r--src/intel/vulkan/anv_device.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c
index 2ba827cc380..f14c1abc795 100644
--- a/src/intel/vulkan/anv_device.c
+++ b/src/intel/vulkan/anv_device.c
@@ -862,7 +862,7 @@ anv_state_pool_emit_data(struct anv_state_pool *pool, size_t size, size_t align,
memcpy(state.map, p, size);
if (!pool->block_pool->device->info.has_llc)
- anv_state_clflush(state);
+ anv_state_flush(state);
return state;
}
@@ -913,7 +913,7 @@ anv_device_submit_simple_batch(struct anv_device *device,
memcpy(bo.map, batch->start, size);
if (!device->info.has_llc)
- anv_clflush_range(bo.map, size);
+ anv_flush_range(bo.map, size);
exec_bos[0] = &bo;
exec2_objects[0].handle = bo.gem_handle;
@@ -2063,7 +2063,7 @@ anv_fill_buffer_surface_state(struct anv_device *device, struct anv_state state,
.stride = stride);
if (!device->info.has_llc)
- anv_state_clflush(state);
+ anv_state_flush(state);
}
void anv_DestroySampler(