From decac394ec48b7f0a51ea0241e2706e170dcc1a1 Mon Sep 17 00:00:00 2001 From: CrazyBloo Date: Sun, 18 Aug 2024 19:58:31 -0400 Subject: [PATCH] skip problematic shaders that compile on death (#469) --- src/video_core/renderer_vulkan/vk_pipeline_cache.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp index bafe5ad20..134f90210 100644 --- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp +++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp @@ -270,7 +270,8 @@ std::unique_ptr PipelineCache::CreateGraphicsPipeline() { DumpShader(code, hash, stage, "bin"); } - if (hash == 0x8ccd4c7 || hash == 3273382176) { + if (hash == 0x8ccd4c7 || hash == 3273382176 || hash == 1253917491 || hash == 3568414570 || + hash == 886182625 || hash == 2876255299 || hash == 2153234908 || hash == 0xc0cbc309) { return nullptr; }