diff options
Diffstat (limited to 'src/shader_recompiler/backend/glsl/emit_glsl_instructions.h')
| -rw-r--r-- | src/shader_recompiler/backend/glsl/emit_glsl_instructions.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h b/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h index 703db80ee..c2e5aff16 100644 --- a/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h +++ b/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h | |||
| @@ -26,7 +26,7 @@ void EmitPhi(EmitContext& ctx, IR::Inst& inst); | |||
| 26 | void EmitVoid(EmitContext& ctx); | 26 | void EmitVoid(EmitContext& ctx); |
| 27 | void EmitIdentity(EmitContext& ctx, IR::Inst& inst, const IR::Value& value); | 27 | void EmitIdentity(EmitContext& ctx, IR::Inst& inst, const IR::Value& value); |
| 28 | void EmitConditionRef(EmitContext& ctx, IR::Inst& inst, const IR::Value& value); | 28 | void EmitConditionRef(EmitContext& ctx, IR::Inst& inst, const IR::Value& value); |
| 29 | void EmitReference(EmitContext&); | 29 | void EmitReference(EmitContext& ctx, const IR::Value& value); |
| 30 | void EmitPhiMove(EmitContext& ctx, const IR::Value& phi, const IR::Value& value); | 30 | void EmitPhiMove(EmitContext& ctx, const IR::Value& phi, const IR::Value& value); |
| 31 | void EmitBranch(EmitContext& ctx, std::string_view label); | 31 | void EmitBranch(EmitContext& ctx, std::string_view label); |
| 32 | void EmitBranchConditional(EmitContext& ctx, std::string_view condition, | 32 | void EmitBranchConditional(EmitContext& ctx, std::string_view condition, |
| @@ -165,12 +165,12 @@ void EmitCompositeExtractU32x3(EmitContext& ctx, IR::Inst& inst, std::string_vie | |||
| 165 | u32 index); | 165 | u32 index); |
| 166 | void EmitCompositeExtractU32x4(EmitContext& ctx, IR::Inst& inst, std::string_view composite, | 166 | void EmitCompositeExtractU32x4(EmitContext& ctx, IR::Inst& inst, std::string_view composite, |
| 167 | u32 index); | 167 | u32 index); |
| 168 | void EmitCompositeInsertU32x2(EmitContext& ctx, std::string_view composite, std::string_view object, | 168 | void EmitCompositeInsertU32x2(EmitContext& ctx, IR::Inst& inst, std::string_view composite, |
| 169 | u32 index); | 169 | std::string_view object, u32 index); |
| 170 | void EmitCompositeInsertU32x3(EmitContext& ctx, std::string_view composite, std::string_view object, | 170 | void EmitCompositeInsertU32x3(EmitContext& ctx, IR::Inst& inst, std::string_view composite, |
| 171 | u32 index); | 171 | std::string_view object, u32 index); |
| 172 | void EmitCompositeInsertU32x4(EmitContext& ctx, std::string_view composite, std::string_view object, | 172 | void EmitCompositeInsertU32x4(EmitContext& ctx, IR::Inst& inst, std::string_view composite, |
| 173 | u32 index); | 173 | std::string_view object, u32 index); |
| 174 | void EmitCompositeConstructF16x2(EmitContext& ctx, std::string_view e1, std::string_view e2); | 174 | void EmitCompositeConstructF16x2(EmitContext& ctx, std::string_view e1, std::string_view e2); |
| 175 | void EmitCompositeConstructF16x3(EmitContext& ctx, std::string_view e1, std::string_view e2, | 175 | void EmitCompositeConstructF16x3(EmitContext& ctx, std::string_view e1, std::string_view e2, |
| 176 | std::string_view e3); | 176 | std::string_view e3); |
| @@ -197,12 +197,12 @@ void EmitCompositeExtractF32x3(EmitContext& ctx, IR::Inst& inst, std::string_vie | |||
| 197 | u32 index); | 197 | u32 index); |
| 198 | void EmitCompositeExtractF32x4(EmitContext& ctx, IR::Inst& inst, std::string_view composite, | 198 | void EmitCompositeExtractF32x4(EmitContext& ctx, IR::Inst& inst, std::string_view composite, |
| 199 | u32 index); | 199 | u32 index); |
| 200 | void EmitCompositeInsertF32x2(EmitContext& ctx, std::string_view composite, std::string_view object, | 200 | void EmitCompositeInsertF32x2(EmitContext& ctx, IR::Inst& inst, std::string_view composite, |
| 201 | u32 index); | 201 | std::string_view object, u32 index); |
| 202 | void EmitCompositeInsertF32x3(EmitContext& ctx, std::string_view composite, std::string_view object, | 202 | void EmitCompositeInsertF32x3(EmitContext& ctx, IR::Inst& inst, std::string_view composite, |
| 203 | u32 index); | 203 | std::string_view object, u32 index); |
| 204 | void EmitCompositeInsertF32x4(EmitContext& ctx, std::string_view composite, std::string_view object, | 204 | void EmitCompositeInsertF32x4(EmitContext& ctx, IR::Inst& inst, std::string_view composite, |
| 205 | u32 index); | 205 | std::string_view object, u32 index); |
| 206 | void EmitCompositeConstructF64x2(EmitContext& ctx); | 206 | void EmitCompositeConstructF64x2(EmitContext& ctx); |
| 207 | void EmitCompositeConstructF64x3(EmitContext& ctx); | 207 | void EmitCompositeConstructF64x3(EmitContext& ctx); |
| 208 | void EmitCompositeConstructF64x4(EmitContext& ctx); | 208 | void EmitCompositeConstructF64x4(EmitContext& ctx); |