Module: Mesa Branch: vulkan Commit: 07441c344c845bd663398529dbf484759d09cd54 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=07441c344c845bd663398529dbf484759d09cd54
Author: Kristian Høgsberg Kristensen <[email protected]> Date: Fri Mar 4 12:21:43 2016 -0800 anv: Rename anv_pipeline_cache_add_entry() to 'set' This function is a helper that unconditionally sets a hash table entry and expects the cache to have enough room. Calling it 'add_entry' suggests it will grow the cache as needed. --- src/intel/vulkan/anv_pipeline_cache.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/intel/vulkan/anv_pipeline_cache.c b/src/intel/vulkan/anv_pipeline_cache.c index 024fdf7..0b26052 100644 --- a/src/intel/vulkan/anv_pipeline_cache.c +++ b/src/intel/vulkan/anv_pipeline_cache.c @@ -140,7 +140,7 @@ anv_pipeline_cache_search(struct anv_pipeline_cache *cache, } static void -anv_pipeline_cache_add_entry(struct anv_pipeline_cache *cache, +anv_pipeline_cache_set_entry(struct anv_pipeline_cache *cache, struct cache_entry *entry, uint32_t entry_offset) { const uint32_t mask = cache->table_size - 1; @@ -187,7 +187,7 @@ anv_pipeline_cache_grow(struct anv_pipeline_cache *cache) struct cache_entry *entry = cache->program_stream.block_pool->map + offset; - anv_pipeline_cache_add_entry(cache, entry, offset); + anv_pipeline_cache_set_entry(cache, entry, offset); } free(old_table); @@ -231,7 +231,7 @@ anv_pipeline_cache_upload_kernel(struct anv_pipeline_cache *cache, * have enough space to add this new kernel. Only add it if there's room. */ if (cache->kernel_count < cache->table_size / 2) - anv_pipeline_cache_add_entry(cache, entry, state.offset); + anv_pipeline_cache_set_entry(cache, entry, state.offset); } pthread_mutex_unlock(&cache->mutex); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
