From c34a95fa25effc4e3967d9d2b1909af2d9c6975e Mon Sep 17 00:00:00 2001 From: german77 Date: Sat, 25 Jun 2022 23:51:37 -0500 Subject: video_core: Replace VKUpdateDescriptorQueue with UpdateDescriptorQueue --- src/video_core/renderer_vulkan/vk_graphics_pipeline.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/video_core/renderer_vulkan/vk_graphics_pipeline.h') diff --git a/src/video_core/renderer_vulkan/vk_graphics_pipeline.h b/src/video_core/renderer_vulkan/vk_graphics_pipeline.h index 79746c638..e8949a9ab 100644 --- a/src/video_core/renderer_vulkan/vk_graphics_pipeline.h +++ b/src/video_core/renderer_vulkan/vk_graphics_pipeline.h @@ -63,7 +63,7 @@ class PipelineStatistics; class RenderPassCache; class RescalingPushConstant; class Scheduler; -class VKUpdateDescriptorQueue; +class UpdateDescriptorQueue; class GraphicsPipeline { static constexpr size_t NUM_STAGES = Tegra::Engines::Maxwell3D::Regs::MaxShaderStage; @@ -73,7 +73,7 @@ public: Tegra::Engines::Maxwell3D& maxwell3d, Tegra::MemoryManager& gpu_memory, Scheduler& scheduler, BufferCache& buffer_cache, TextureCache& texture_cache, VideoCore::ShaderNotify* shader_notify, const Device& device, - DescriptorPool& descriptor_pool, VKUpdateDescriptorQueue& update_descriptor_queue, + DescriptorPool& descriptor_pool, UpdateDescriptorQueue& update_descriptor_queue, Common::ThreadWorker* worker_thread, PipelineStatistics* pipeline_statistics, RenderPassCache& render_pass_cache, const GraphicsPipelineCacheKey& key, std::array stages, @@ -126,7 +126,7 @@ private: TextureCache& texture_cache; BufferCache& buffer_cache; Scheduler& scheduler; - VKUpdateDescriptorQueue& update_descriptor_queue; + UpdateDescriptorQueue& update_descriptor_queue; void (*configure_func)(GraphicsPipeline*, bool){}; -- cgit v1.2.3