From b1f92f926a2c77a8b0af4cf6959c888ae0e08354 Mon Sep 17 00:00:00 2001 From: Wunkolo Date: Mon, 20 Nov 2023 14:19:12 -0800 Subject: [PATCH] vk_blit_helper: Fix `d24s8_to_rgba8_ms_comp` SPV reference --- src/video_core/renderer_vulkan/vk_blit_helper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/renderer_vulkan/vk_blit_helper.cpp b/src/video_core/renderer_vulkan/vk_blit_helper.cpp index 8bed843a1..e270ba97a 100644 --- a/src/video_core/renderer_vulkan/vk_blit_helper.cpp +++ b/src/video_core/renderer_vulkan/vk_blit_helper.cpp @@ -192,7 +192,7 @@ BlitHelper::BlitHelper(const Instance& instance_, Scheduler& scheduler_, Descrip device.createPipelineLayout(PipelineLayoutCreateInfo(&two_textures_provider.Layout()))}, full_screen_vert{CompileSPV(FULL_SCREEN_TRIANGLE_VERT_SPV, device)}, d24s8_to_rgba8_comp{CompileSPV(VULKAN_D24S8_TO_RGBA8_COMP_SPV, device)}, - d24s8_to_rgba8_ms_comp{CompileSPV(VULKAN_D24S8_TO_RGBA8_COMP_SPV, device)}, + d24s8_to_rgba8_ms_comp{CompileSPV(VULKAN_D24S8_TO_RGBA8_MS_COMP_SPV, device)}, depth_to_buffer_comp{CompileSPV(VULKAN_DEPTH_TO_BUFFER_COMP_SPV, device)}, blit_depth_stencil_frag{CompileSPV(VULKAN_BLIT_DEPTH_STENCIL_FRAG_SPV, device)}, d24s8_to_rgba8_pipeline{MakeComputePipeline(d24s8_to_rgba8_comp, compute_pipeline_layout)},