summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend/maxwell
diff options
context:
space:
mode:
authorBilly Laws <blaws05@gmail.com>2022-11-23 22:30:23 +0100
committerBilly Laws <blaws05@gmail.com>2023-01-05 23:13:07 +0100
commit8804a4eb23e0c4f3e4bab03dee7c204bd38bf21e (patch)
treea250fb7a6485109609c5f89fee55fd73549b3a19 /src/shader_recompiler/frontend/maxwell
parentshader_recompiler: SPIRV: Only enable int64 feature when supported (diff)
downloadyuzu-8804a4eb23e0c4f3e4bab03dee7c204bd38bf21e.tar
yuzu-8804a4eb23e0c4f3e4bab03dee7c204bd38bf21e.tar.gz
yuzu-8804a4eb23e0c4f3e4bab03dee7c204bd38bf21e.tar.bz2
yuzu-8804a4eb23e0c4f3e4bab03dee7c204bd38bf21e.tar.lz
yuzu-8804a4eb23e0c4f3e4bab03dee7c204bd38bf21e.tar.xz
yuzu-8804a4eb23e0c4f3e4bab03dee7c204bd38bf21e.tar.zst
yuzu-8804a4eb23e0c4f3e4bab03dee7c204bd38bf21e.zip
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell')
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate_program.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate_program.cpp b/src/shader_recompiler/frontend/maxwell/translate_program.cpp
index ac159d24b..89fced84c 100644
--- a/src/shader_recompiler/frontend/maxwell/translate_program.cpp
+++ b/src/shader_recompiler/frontend/maxwell/translate_program.cpp
@@ -223,7 +223,7 @@ IR::Program TranslateProgram(ObjectPool<IR::Inst>& inst_pool, ObjectPool<IR::Blo
Optimization::PositionPass(env, program);
- Optimization::GlobalMemoryToStorageBufferPass(program);
+ Optimization::GlobalMemoryToStorageBufferPass(program, host_info);
Optimization::TexturePass(env, program, host_info);
if (Settings::values.resolution_info.active) {