summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glsl
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/backend/glsl')
-rw-r--r--src/shader_recompiler/backend/glsl/emit_glsl_context_get_set.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_glsl_context_get_set.cpp b/src/shader_recompiler/backend/glsl/emit_glsl_context_get_set.cpp
index c1671c37b..39579cf5d 100644
--- a/src/shader_recompiler/backend/glsl/emit_glsl_context_get_set.cpp
+++ b/src/shader_recompiler/backend/glsl/emit_glsl_context_get_set.cpp
@@ -205,6 +205,9 @@ void EmitGetAttribute(EmitContext& ctx, IR::Inst& inst, IR::Attribute attr,
205 case IR::Attribute::PrimitiveId: 205 case IR::Attribute::PrimitiveId:
206 ctx.AddF32("{}=itof(gl_PrimitiveID);", inst); 206 ctx.AddF32("{}=itof(gl_PrimitiveID);", inst);
207 break; 207 break;
208 case IR::Attribute::Layer:
209 ctx.AddF32("{}=itof(gl_Layer);", inst);
210 break;
208 case IR::Attribute::PositionX: 211 case IR::Attribute::PositionX:
209 case IR::Attribute::PositionY: 212 case IR::Attribute::PositionY:
210 case IR::Attribute::PositionZ: 213 case IR::Attribute::PositionZ: