summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
diff options
context:
space:
mode:
authorGravatar ameerj2021-05-31 14:17:00 -0400
committerGravatar ameerj2021-07-22 21:51:37 -0400
commit68d075d1e8af66c3f8044b162344bffc943168a8 (patch)
tree14eff63022bdfc599b128af5795eb77c4878fcdd /src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
parentglsl: Implement geometry shaders (diff)
downloadyuzu-68d075d1e8af66c3f8044b162344bffc943168a8.tar.gz
yuzu-68d075d1e8af66c3f8044b162344bffc943168a8.tar.xz
yuzu-68d075d1e8af66c3f8044b162344bffc943168a8.zip
glsl: Fix atomic SSBO offsets
and implement misc getters
Diffstat (limited to 'src/shader_recompiler/backend/glsl/emit_glsl_instructions.h')
-rw-r--r--src/shader_recompiler/backend/glsl/emit_glsl_instructions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h b/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
index 5e0195b0f..24c36bbda 100644
--- a/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
+++ b/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
@@ -92,7 +92,7 @@ void EmitWorkgroupId(EmitContext& ctx, IR::Inst& inst);
92void EmitLocalInvocationId(EmitContext& ctx, IR::Inst& inst); 92void EmitLocalInvocationId(EmitContext& ctx, IR::Inst& inst);
93void EmitInvocationId(EmitContext& ctx, IR::Inst& inst); 93void EmitInvocationId(EmitContext& ctx, IR::Inst& inst);
94void EmitSampleId(EmitContext& ctx, IR::Inst& inst); 94void EmitSampleId(EmitContext& ctx, IR::Inst& inst);
95void EmitIsHelperInvocation(EmitContext& ctx); 95void EmitIsHelperInvocation(EmitContext& ctx, IR::Inst& inst);
96void EmitYDirection(EmitContext& ctx, IR::Inst& inst); 96void EmitYDirection(EmitContext& ctx, IR::Inst& inst);
97void EmitLoadLocal(EmitContext& ctx, IR::Inst& inst, std::string_view word_offset); 97void EmitLoadLocal(EmitContext& ctx, IR::Inst& inst, std::string_view word_offset);
98void EmitWriteLocal(EmitContext& ctx, std::string_view word_offset, std::string_view value); 98void EmitWriteLocal(EmitContext& ctx, std::string_view word_offset, std::string_view value);