summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_compute_pipeline.h
diff options
context:
space:
mode:
authorWollnashorn <Wollnashorn@users.noreply.github.com>2022-12-30 14:50:07 +0100
committerWollnashorn <Wollnashorn@users.noreply.github.com>2023-01-05 21:02:44 +0100
commit16809c1fa7e2b4fb798749030645deaec79a2381 (patch)
treee43ef31843da210165c529494652014a660268e6 /src/video_core/renderer_vulkan/vk_compute_pipeline.h
parentMerge pull request #9557 from FernandoS27/ooops-i-killed-the-shitty-drivers (diff)
downloadyuzu-16809c1fa7e2b4fb798749030645deaec79a2381.tar
yuzu-16809c1fa7e2b4fb798749030645deaec79a2381.tar.gz
yuzu-16809c1fa7e2b4fb798749030645deaec79a2381.tar.bz2
yuzu-16809c1fa7e2b4fb798749030645deaec79a2381.tar.lz
yuzu-16809c1fa7e2b4fb798749030645deaec79a2381.tar.xz
yuzu-16809c1fa7e2b4fb798749030645deaec79a2381.tar.zst
yuzu-16809c1fa7e2b4fb798749030645deaec79a2381.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_vulkan/vk_compute_pipeline.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/video_core/renderer_vulkan/vk_compute_pipeline.h b/src/video_core/renderer_vulkan/vk_compute_pipeline.h
index d70837fc5..78d77027f 100644
--- a/src/video_core/renderer_vulkan/vk_compute_pipeline.h
+++ b/src/video_core/renderer_vulkan/vk_compute_pipeline.h
@@ -28,7 +28,8 @@ class Scheduler;
class ComputePipeline {
public:
- explicit ComputePipeline(const Device& device, DescriptorPool& descriptor_pool,
+ explicit ComputePipeline(const Device& device, vk::PipelineCache& pipeline_cache,
+ DescriptorPool& descriptor_pool,
UpdateDescriptorQueue& update_descriptor_queue,
Common::ThreadWorker* thread_worker,
PipelineStatistics* pipeline_statistics,
@@ -46,6 +47,7 @@ public:
private:
const Device& device;
+ vk::PipelineCache& pipeline_cache;
UpdateDescriptorQueue& update_descriptor_queue;
Shader::Info info;