diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2021-05-21 02:40:49 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-23 03:51:32 +0200 |
commit | 0d7d85c81eb3bb931916ec5b85bcb42761a00522 (patch) | |
tree | d4bfa67ecb458f1be358827157bc785d21e84864 /src/shader_recompiler/backend | |
parent | glasm: Fix tessellation headers (diff) | |
download | yuzu-0d7d85c81eb3bb931916ec5b85bcb42761a00522.tar yuzu-0d7d85c81eb3bb931916ec5b85bcb42761a00522.tar.gz yuzu-0d7d85c81eb3bb931916ec5b85bcb42761a00522.tar.bz2 yuzu-0d7d85c81eb3bb931916ec5b85bcb42761a00522.tar.lz yuzu-0d7d85c81eb3bb931916ec5b85bcb42761a00522.tar.xz yuzu-0d7d85c81eb3bb931916ec5b85bcb42761a00522.tar.zst yuzu-0d7d85c81eb3bb931916ec5b85bcb42761a00522.zip |
Diffstat (limited to 'src/shader_recompiler/backend')
-rw-r--r-- | src/shader_recompiler/backend/glasm/emit_glasm_context_get_set.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm_context_get_set.cpp b/src/shader_recompiler/backend/glasm/emit_glasm_context_get_set.cpp index a728225b0..cdba4fa89 100644 --- a/src/shader_recompiler/backend/glasm/emit_glasm_context_get_set.cpp +++ b/src/shader_recompiler/backend/glasm/emit_glasm_context_get_set.cpp @@ -79,7 +79,7 @@ void EmitGetAttribute(EmitContext& ctx, IR::Inst& inst, IR::Attribute attr, Scal break; case IR::Attribute::TessellationEvaluationPointU: case IR::Attribute::TessellationEvaluationPointV: - ctx.Add("MOV.F {}.x,vertex.tesscoord.{}", inst, swizzle); + ctx.Add("MOV.F {}.x,vertex.tesscoord.{};", inst, swizzle); break; case IR::Attribute::PointSpriteS: case IR::Attribute::PointSpriteT: |