From 9c0de5372f1fe536a0b3b7a35c4ed0ee0597e73c Mon Sep 17 00:00:00 2001 From: Connor Abbott Date: Mon, 22 Aug 2022 17:45:54 +0200 Subject: [PATCH] tu: Nuke tu_pipeline_cache This is just a leftover from the never-finished pipeline cache copied from another driver, we use vk_pipeline_cache now. Part-of: --- src/freedreno/vulkan/tu_pipeline.h | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/freedreno/vulkan/tu_pipeline.h b/src/freedreno/vulkan/tu_pipeline.h index 8f48d661fd6..75f01e72f91 100644 --- a/src/freedreno/vulkan/tu_pipeline.h +++ b/src/freedreno/vulkan/tu_pipeline.h @@ -39,24 +39,6 @@ enum tu_dynamic_state struct cache_entry; -struct tu_pipeline_cache -{ - struct vk_object_base base; - - struct tu_device *device; - pthread_mutex_t mutex; - - uint32_t total_size; - uint32_t table_size; - uint32_t kernel_count; - struct cache_entry **hash_table; - bool modified; - - VkAllocationCallbacks alloc; -}; -VK_DEFINE_NONDISP_HANDLE_CASTS(tu_pipeline_cache, base, VkPipelineCache, - VK_OBJECT_TYPE_PIPELINE_CACHE) - struct tu_lrz_pipeline { uint32_t force_disable_mask;