summaryrefslogtreecommitdiffstats
path: root/src/intel/vulkan/anv_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/intel/vulkan/anv_private.h')
-rw-r--r--src/intel/vulkan/anv_private.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h
index c36fdcf75b4..fa114b9967a 100644
--- a/src/intel/vulkan/anv_private.h
+++ b/src/intel/vulkan/anv_private.h
@@ -436,7 +436,7 @@ struct anv_state_stream {
#define CACHELINE_MASK 63
static inline void
-anv_clflush_range(void *start, size_t size)
+anv_flush_range(void *start, size_t size)
{
void *p = (void *) (((uintptr_t) start) & ~CACHELINE_MASK);
void *end = start + size;
@@ -462,9 +462,9 @@ anv_invalidate_range(void *start, size_t size)
}
static void inline
-anv_state_clflush(struct anv_state state)
+anv_state_flush(struct anv_state state)
{
- anv_clflush_range(state.map, state.alloc_size);
+ anv_flush_range(state.map, state.alloc_size);
}
VkResult anv_block_pool_init(struct anv_block_pool *pool,