summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/ir_opt/passes.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-06-23 06:33:42 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:39 +0200
commitd8d5501459d6c8b4c39307d293b0f40834dce8f3 (patch)
tree5c44ce2b967f66b1362c8a00b154b7fb1bc2b3ce /src/shader_recompiler/ir_opt/passes.h
parentshader: Teach global memory base tracker to follow vectors (diff)
downloadyuzu-d8d5501459d6c8b4c39307d293b0f40834dce8f3.tar
yuzu-d8d5501459d6c8b4c39307d293b0f40834dce8f3.tar.gz
yuzu-d8d5501459d6c8b4c39307d293b0f40834dce8f3.tar.bz2
yuzu-d8d5501459d6c8b4c39307d293b0f40834dce8f3.tar.lz
yuzu-d8d5501459d6c8b4c39307d293b0f40834dce8f3.tar.xz
yuzu-d8d5501459d6c8b4c39307d293b0f40834dce8f3.tar.zst
yuzu-d8d5501459d6c8b4c39307d293b0f40834dce8f3.zip
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/ir_opt/passes.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shader_recompiler/ir_opt/passes.h b/src/shader_recompiler/ir_opt/passes.h
index 5ebde49ea..2f89b1ea0 100644
--- a/src/shader_recompiler/ir_opt/passes.h
+++ b/src/shader_recompiler/ir_opt/passes.h
@@ -18,6 +18,7 @@ void DeadCodeEliminationPass(IR::Program& program);
void GlobalMemoryToStorageBufferPass(IR::Program& program);
void IdentityRemovalPass(IR::Program& program);
void LowerFp16ToFp32(IR::Program& program);
+void LowerInt64ToInt32(IR::Program& program);
void SsaRewritePass(IR::Program& program);
void TexturePass(Environment& env, IR::Program& program);
void VerificationPass(const IR::Program& program);