summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/maxwell/program.cpp
diff options
context:
space:
mode:
authorGravatar FernandoS272021-04-04 06:47:14 +0200
committerGravatar ameerj2021-07-22 21:51:26 -0400
commit1d51803169f72f79e19995072fb9e8a371dbdcbf (patch)
treeeb668d924985e4b0bd599a695a0a2eee30fd0090 /src/shader_recompiler/frontend/maxwell/program.cpp
parentshader: Implement AL2P (diff)
downloadyuzu-1d51803169f72f79e19995072fb9e8a371dbdcbf.tar.gz
yuzu-1d51803169f72f79e19995072fb9e8a371dbdcbf.tar.xz
yuzu-1d51803169f72f79e19995072fb9e8a371dbdcbf.zip
shader: Implement indexed attributes
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/frontend/maxwell/program.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/program.cpp b/src/shader_recompiler/frontend/maxwell/program.cpp
index 58caa35a1..aaf2a74a7 100644
--- a/src/shader_recompiler/frontend/maxwell/program.cpp
+++ b/src/shader_recompiler/frontend/maxwell/program.cpp
@@ -87,7 +87,7 @@ IR::Program TranslateProgram(ObjectPool<IR::Inst>& inst_pool, ObjectPool<IR::Blo
87 Optimization::DeadCodeEliminationPass(program); 87 Optimization::DeadCodeEliminationPass(program);
88 Optimization::IdentityRemovalPass(program); 88 Optimization::IdentityRemovalPass(program);
89 Optimization::VerificationPass(program); 89 Optimization::VerificationPass(program);
90 Optimization::CollectShaderInfoPass(program); 90 Optimization::CollectShaderInfoPass(env, program);
91 CollectInterpolationInfo(env, program); 91 CollectInterpolationInfo(env, program);
92 return program; 92 return program;
93} 93}