diff options
| author | 2021-05-31 14:17:00 -0400 | |
|---|---|---|
| committer | 2021-07-22 21:51:37 -0400 | |
| commit | 68d075d1e8af66c3f8044b162344bffc943168a8 (patch) | |
| tree | 14eff63022bdfc599b128af5795eb77c4878fcdd /src/shader_recompiler/backend/glsl/emit_glsl_instructions.h | |
| parent | glsl: Implement geometry shaders (diff) | |
| download | yuzu-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.h | 2 |
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); | |||
| 92 | void EmitLocalInvocationId(EmitContext& ctx, IR::Inst& inst); | 92 | void EmitLocalInvocationId(EmitContext& ctx, IR::Inst& inst); |
| 93 | void EmitInvocationId(EmitContext& ctx, IR::Inst& inst); | 93 | void EmitInvocationId(EmitContext& ctx, IR::Inst& inst); |
| 94 | void EmitSampleId(EmitContext& ctx, IR::Inst& inst); | 94 | void EmitSampleId(EmitContext& ctx, IR::Inst& inst); |
| 95 | void EmitIsHelperInvocation(EmitContext& ctx); | 95 | void EmitIsHelperInvocation(EmitContext& ctx, IR::Inst& inst); |
| 96 | void EmitYDirection(EmitContext& ctx, IR::Inst& inst); | 96 | void EmitYDirection(EmitContext& ctx, IR::Inst& inst); |
| 97 | void EmitLoadLocal(EmitContext& ctx, IR::Inst& inst, std::string_view word_offset); | 97 | void EmitLoadLocal(EmitContext& ctx, IR::Inst& inst, std::string_view word_offset); |
| 98 | void EmitWriteLocal(EmitContext& ctx, std::string_view word_offset, std::string_view value); | 98 | void EmitWriteLocal(EmitContext& ctx, std::string_view word_offset, std::string_view value); |