summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2021-05-18 19:43:17 -0300
committerGravatar ameerj2021-07-22 21:51:32 -0400
commit0fa421f82f4efbb7fe2d86a18427b4889fd8d855 (patch)
tree4ef4d81c98e616abbda2f0498448ad7c39d12b44 /src/shader_recompiler/backend/glasm/emit_glasm_instructions.h
parentglasm: Do not alias ConditionRef for now (diff)
downloadyuzu-0fa421f82f4efbb7fe2d86a18427b4889fd8d855.tar.gz
yuzu-0fa421f82f4efbb7fe2d86a18427b4889fd8d855.tar.xz
yuzu-0fa421f82f4efbb7fe2d86a18427b4889fd8d855.zip
glasm: Implement gl_FragDepth and gl_SampleMask stores
Diffstat (limited to 'src/shader_recompiler/backend/glasm/emit_glasm_instructions.h')
-rw-r--r--src/shader_recompiler/backend/glasm/emit_glasm_instructions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h b/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h
index df0933a3f..ce0181fd2 100644
--- a/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h
+++ b/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h
@@ -56,7 +56,7 @@ void EmitSetAttributeIndexed(EmitContext& ctx, ScalarU32 offset, ScalarF32 value
56void EmitGetPatch(EmitContext& ctx, IR::Patch patch); 56void EmitGetPatch(EmitContext& ctx, IR::Patch patch);
57void EmitSetPatch(EmitContext& ctx, IR::Patch patch, ScalarF32 value); 57void EmitSetPatch(EmitContext& ctx, IR::Patch patch, ScalarF32 value);
58void EmitSetFragColor(EmitContext& ctx, u32 index, u32 component, ScalarF32 value); 58void EmitSetFragColor(EmitContext& ctx, u32 index, u32 component, ScalarF32 value);
59void EmitSetSampleMask(EmitContext& ctx, ScalarF32 value); 59void EmitSetSampleMask(EmitContext& ctx, ScalarS32 value);
60void EmitSetFragDepth(EmitContext& ctx, ScalarF32 value); 60void EmitSetFragDepth(EmitContext& ctx, ScalarF32 value);
61void EmitGetZFlag(EmitContext& ctx); 61void EmitGetZFlag(EmitContext& ctx);
62void EmitGetSFlag(EmitContext& ctx); 62void EmitGetSFlag(EmitContext& ctx);