summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_graphics_pipeline.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-05-10 19:35:25 +0200
committerLiam <byteslice@airmail.cc>2023-05-10 19:46:48 +0200
commit67fd1df762c125fe8a04d7bbded42ba50a1cdef1 (patch)
tree2323933878dcd1fb788a99d8da56a7aff4c635d8 /src/video_core/renderer_vulkan/vk_graphics_pipeline.h
parentMerge pull request #10207 from german77/amiibo_cheater (diff)
downloadyuzu-67fd1df762c125fe8a04d7bbded42ba50a1cdef1.tar
yuzu-67fd1df762c125fe8a04d7bbded42ba50a1cdef1.tar.gz
yuzu-67fd1df762c125fe8a04d7bbded42ba50a1cdef1.tar.bz2
yuzu-67fd1df762c125fe8a04d7bbded42ba50a1cdef1.tar.lz
yuzu-67fd1df762c125fe8a04d7bbded42ba50a1cdef1.tar.xz
yuzu-67fd1df762c125fe8a04d7bbded42ba50a1cdef1.tar.zst
yuzu-67fd1df762c125fe8a04d7bbded42ba50a1cdef1.zip
Diffstat (limited to 'src/video_core/renderer_vulkan/vk_graphics_pipeline.h')
-rw-r--r--src/video_core/renderer_vulkan/vk_graphics_pipeline.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/video_core/renderer_vulkan/vk_graphics_pipeline.h b/src/video_core/renderer_vulkan/vk_graphics_pipeline.h
index 67c657d0e..99e56e9ad 100644
--- a/src/video_core/renderer_vulkan/vk_graphics_pipeline.h
+++ b/src/video_core/renderer_vulkan/vk_graphics_pipeline.h
@@ -64,7 +64,6 @@ class RenderPassCache;
class RescalingPushConstant;
class RenderAreaPushConstant;
class Scheduler;
-class UpdateDescriptorQueue;
class GraphicsPipeline {
static constexpr size_t NUM_STAGES = Tegra::Engines::Maxwell3D::Regs::MaxShaderStage;
@@ -74,7 +73,7 @@ public:
Scheduler& scheduler, BufferCache& buffer_cache, TextureCache& texture_cache,
vk::PipelineCache& pipeline_cache, VideoCore::ShaderNotify* shader_notify,
const Device& device, DescriptorPool& descriptor_pool,
- UpdateDescriptorQueue& update_descriptor_queue, Common::ThreadWorker* worker_thread,
+ GuestDescriptorQueue& guest_descriptor_queue, Common::ThreadWorker* worker_thread,
PipelineStatistics* pipeline_statistics, RenderPassCache& render_pass_cache,
const GraphicsPipelineCacheKey& key, std::array<vk::ShaderModule, NUM_STAGES> stages,
const std::array<const Shader::Info*, NUM_STAGES>& infos);
@@ -133,7 +132,7 @@ private:
BufferCache& buffer_cache;
vk::PipelineCache& pipeline_cache;
Scheduler& scheduler;
- UpdateDescriptorQueue& update_descriptor_queue;
+ GuestDescriptorQueue& guest_descriptor_queue;
void (*configure_func)(GraphicsPipeline*, bool){};