summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
diff options
context:
space:
mode:
authorGravatar ameerj2021-06-14 11:27:37 -0400
committerGravatar ameerj2021-07-22 21:51:38 -0400
commit6c6a451d6afdfe02dc24b06f54b2a183f73a04fb (patch)
treeb9185295e4065bd986ad34fef1a3c406a17a2aad /src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
parentglsl: Conditionally add EXT_texture_shadow_lod (diff)
downloadyuzu-6c6a451d6afdfe02dc24b06f54b2a183f73a04fb.tar.gz
yuzu-6c6a451d6afdfe02dc24b06f54b2a183f73a04fb.tar.xz
yuzu-6c6a451d6afdfe02dc24b06f54b2a183f73a04fb.zip
glsl: Add LoopSafety instructions
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, 2 insertions, 0 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h b/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
index 0c717664f..9e812dabb 100644
--- a/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
+++ b/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
@@ -47,6 +47,8 @@ void EmitSetGotoVariable(EmitContext& ctx);
47void EmitGetGotoVariable(EmitContext& ctx); 47void EmitGetGotoVariable(EmitContext& ctx);
48void EmitSetIndirectBranchVariable(EmitContext& ctx); 48void EmitSetIndirectBranchVariable(EmitContext& ctx);
49void EmitGetIndirectBranchVariable(EmitContext& ctx); 49void EmitGetIndirectBranchVariable(EmitContext& ctx);
50void EmitSetLoopSafetyVariable(EmitContext& ctx);
51void EmitGetLoopSafetyVariable(EmitContext& ctx);
50void EmitGetCbufU8(EmitContext& ctx, IR::Inst& inst, const IR::Value& binding, 52void EmitGetCbufU8(EmitContext& ctx, IR::Inst& inst, const IR::Value& binding,
51 const IR::Value& offset); 53 const IR::Value& offset);
52void EmitGetCbufS8(EmitContext& ctx, IR::Inst& inst, const IR::Value& binding, 54void EmitGetCbufS8(EmitContext& ctx, IR::Inst& inst, const IR::Value& binding,