From 01f57c8d246ecdd03a4b984bdb0abf20c4befcab Mon Sep 17 00:00:00 2001 From: Dmugetsu Date: Fri, 27 Dec 2024 09:38:50 -0600 Subject: [PATCH] Fixed Cutscenes Going White cause of two shaders skipped --- src/video_core/renderer_vulkan/vk_pipeline_cache.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp index 084c157f12b..a7306d7ec57 100644 --- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp +++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp @@ -215,8 +215,8 @@ PipelineCache::PipelineCache(const Instance& instance_, Scheduler& scheduler_, } bool ShouldSkipShader(u64 shader_hash, const char* shader_type) { - static std::vector skip_hashes = {0xbddb8fc7, 0x9a987165, 0xbfed1ef4, 0x6faab5f9, - 0x125a83c1, 0x8e3f8dc4, 0xfefebf9f}; + static std::vector skip_hashes = {0xbddb8fc7, 0x9a987165, 0xbfed1ef4, + 0x8e3f8dc4, 0xfefebf9f}; if (std::ranges::contains(skip_hashes, shader_hash)) { LOG_WARNING(Render_Vulkan, "Skipped {} shader hash {:#x}.", shader_type, shader_hash); return true;