From d555b2fd7e9487dd7d3b93bd7339eff70fc4b8cf Mon Sep 17 00:00:00 2001 From: CrazyBloo Date: Mon, 19 Aug 2024 01:48:24 -0400 Subject: [PATCH] skip a shader that would compile when warping --- 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 134f90210..58836acc9 100644 --- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp +++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp @@ -271,7 +271,8 @@ std::unique_ptr PipelineCache::CreateGraphicsPipeline() { } if (hash == 0x8ccd4c7 || hash == 3273382176 || hash == 1253917491 || hash == 3568414570 || - hash == 886182625 || hash == 2876255299 || hash == 2153234908 || hash == 0xc0cbc309) { + hash == 886182625 || hash == 2876255299 || hash == 2153234908 || hash == 0xc0cbc309 || + hash == 2251599991) { return nullptr; }