summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/backend/glsl/emit_glsl_instructions.h')
-rw-r--r--src/shader_recompiler/backend/glsl/emit_glsl_instructions.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h b/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
index 72d97c7e1..1e7247358 100644
--- a/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
+++ b/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h
@@ -679,16 +679,16 @@ void EmitImageAtomicXor32(EmitContext& ctx, IR::Inst& inst, const IR::Value& ind
679 std::string_view coords, std::string_view value); 679 std::string_view coords, std::string_view value);
680void EmitImageAtomicExchange32(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, 680void EmitImageAtomicExchange32(EmitContext& ctx, IR::Inst& inst, const IR::Value& index,
681 std::string_view coords, std::string_view value); 681 std::string_view coords, std::string_view value);
682void EmitLaneId(EmitContext& ctx); 682void EmitLaneId(EmitContext& ctx, IR::Inst& inst);
683void EmitVoteAll(EmitContext& ctx, std::string_view pred); 683void EmitVoteAll(EmitContext& ctx, IR::Inst& inst, std::string_view pred);
684void EmitVoteAny(EmitContext& ctx, std::string_view pred); 684void EmitVoteAny(EmitContext& ctx, IR::Inst& inst, std::string_view pred);
685void EmitVoteEqual(EmitContext& ctx, std::string_view pred); 685void EmitVoteEqual(EmitContext& ctx, IR::Inst& inst, std::string_view pred);
686void EmitSubgroupBallot(EmitContext& ctx, std::string_view pred); 686void EmitSubgroupBallot(EmitContext& ctx, IR::Inst& inst, std::string_view pred);
687void EmitSubgroupEqMask(EmitContext& ctx); 687void EmitSubgroupEqMask(EmitContext& ctx, IR::Inst& inst);
688void EmitSubgroupLtMask(EmitContext& ctx); 688void EmitSubgroupLtMask(EmitContext& ctx, IR::Inst& inst);
689void EmitSubgroupLeMask(EmitContext& ctx); 689void EmitSubgroupLeMask(EmitContext& ctx, IR::Inst& inst);
690void EmitSubgroupGtMask(EmitContext& ctx); 690void EmitSubgroupGtMask(EmitContext& ctx, IR::Inst& inst);
691void EmitSubgroupGeMask(EmitContext& ctx); 691void EmitSubgroupGeMask(EmitContext& ctx, IR::Inst& inst);
692void EmitShuffleIndex(EmitContext& ctx, IR::Inst& inst, std::string_view value, 692void EmitShuffleIndex(EmitContext& ctx, IR::Inst& inst, std::string_view value,
693 std::string_view index, std::string_view clamp, 693 std::string_view index, std::string_view clamp,
694 std::string_view segmentation_mask); 694 std::string_view segmentation_mask);