summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/backend/glasm/emit_context.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-05-21 00:21:38 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:32 +0200
commit79929be8331fabdb83b5595704241f863a0ae33a (patch)
tree88f532c0759862485592069180b064e22c9b87fe /src/shader_recompiler/backend/glasm/emit_context.cpp
parentglasm: Properly declare attributes on geometry programs (diff)
downloadyuzu-79929be8331fabdb83b5595704241f863a0ae33a.tar
yuzu-79929be8331fabdb83b5595704241f863a0ae33a.tar.gz
yuzu-79929be8331fabdb83b5595704241f863a0ae33a.tar.bz2
yuzu-79929be8331fabdb83b5595704241f863a0ae33a.tar.lz
yuzu-79929be8331fabdb83b5595704241f863a0ae33a.tar.xz
yuzu-79929be8331fabdb83b5595704241f863a0ae33a.tar.zst
yuzu-79929be8331fabdb83b5595704241f863a0ae33a.zip
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/backend/glasm/emit_context.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_context.cpp b/src/shader_recompiler/backend/glasm/emit_context.cpp
index a9bbb680f..d8451b41f 100644
--- a/src/shader_recompiler/backend/glasm/emit_context.cpp
+++ b/src/shader_recompiler/backend/glasm/emit_context.cpp
@@ -74,6 +74,9 @@ EmitContext::EmitContext(IR::Program& program, Bindings& bindings, const Profile
InterpDecorator(generic.interpolation), index, attr_stage, index, index);
}
}
+ if (stage == Stage::Geometry && info.loads_position) {
+ Add("ATTRIB vertex_position=vertex.position;");
+ }
for (size_t index = 0; index < program.info.stores_frag_color.size(); ++index) {
if (!program.info.stores_frag_color[index]) {
continue;