Skip to content

Commit

Permalink
Last guardian
Browse files Browse the repository at this point in the history
  • Loading branch information
Xcedf committed Nov 19, 2024
1 parent b3a580f commit f827d11
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,12 @@ bool PipelineCache::RefreshGraphicsKey() {
//if (bininfo->shader_hash == 0xb585d534 || bininfo->shader_hash == 0x29c851e0) {
// return false;
//}

unsigned int skip_hash[6] ={ 0xa12c240a, 0xdd2e7072, 0xc5f6bede, 0x232e176d, 0x595a3faa, 0x9c9190e}
for (int i = 0; i < 6; I++) {
if (bininfo->shader_hash == skip_hash[i]) {
return false;
}
}
// Skipping this fragment shader to workaround a white screen issue in God of War III
// Remastered.
if (bininfo->shader_hash == 0x394ef85fcecf26dd) {
Expand Down

0 comments on commit f827d11

Please sign in to comment.