diff options
Diffstat (limited to 'src/shader_recompiler')
| -rw-r--r-- | src/shader_recompiler/backend/glasm/emit_glasm_context_get_set.cpp | 3 |
1 files changed, 3 insertions, 0 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 7bbb3e1af..f362dd2c8 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 | |||
| @@ -93,6 +93,9 @@ void EmitSetAttribute(EmitContext& ctx, IR::Attribute attr, ScalarF32 value, | |||
| 93 | return; | 93 | return; |
| 94 | } | 94 | } |
| 95 | switch (attr) { | 95 | switch (attr) { |
| 96 | case IR::Attribute::PointSize: | ||
| 97 | ctx.Add("MOV.F result.pointsize.x,{};", value); | ||
| 98 | break; | ||
| 96 | case IR::Attribute::PositionX: | 99 | case IR::Attribute::PositionX: |
| 97 | case IR::Attribute::PositionY: | 100 | case IR::Attribute::PositionY: |
| 98 | case IR::Attribute::PositionZ: | 101 | case IR::Attribute::PositionZ: |