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 | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h b/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h index 9f32070b0..49ab108bb 100644 --- a/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h +++ b/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h | |||
| @@ -61,7 +61,8 @@ void EmitGetCbufU32(EmitContext& ctx, IR::Inst& inst, const IR::Value& binding, | |||
| 61 | void EmitGetCbufF32(EmitContext& ctx, IR::Inst& inst, const IR::Value& binding, | 61 | void EmitGetCbufF32(EmitContext& ctx, IR::Inst& inst, const IR::Value& binding, |
| 62 | const IR::Value& offset); | 62 | const IR::Value& offset); |
| 63 | void EmitGetCbufU32x2(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset); | 63 | void EmitGetCbufU32x2(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset); |
| 64 | void EmitGetAttribute(EmitContext& ctx, IR::Attribute attr, std::string_view vertex); | 64 | void EmitGetAttribute(EmitContext& ctx, IR::Inst& inst, IR::Attribute attr, |
| 65 | std::string_view vertex); | ||
| 65 | void EmitSetAttribute(EmitContext& ctx, IR::Attribute attr, std::string_view value, | 66 | void EmitSetAttribute(EmitContext& ctx, IR::Attribute attr, std::string_view value, |
| 66 | std::string_view vertex); | 67 | std::string_view vertex); |
| 67 | void EmitGetAttributeIndexed(EmitContext& ctx, std::string_view offset, std::string_view vertex); | 68 | void EmitGetAttributeIndexed(EmitContext& ctx, std::string_view offset, std::string_view vertex); |
| @@ -180,8 +181,10 @@ void EmitCompositeConstructF32x4(EmitContext& ctx, std::string_view e1, std::str | |||
| 180 | std::string_view e3, std::string_view e4); | 181 | std::string_view e3, std::string_view e4); |
| 181 | void EmitCompositeExtractF32x2(EmitContext& ctx, IR::Inst& inst, std::string_view composite, | 182 | void EmitCompositeExtractF32x2(EmitContext& ctx, IR::Inst& inst, std::string_view composite, |
| 182 | u32 index); | 183 | u32 index); |
| 183 | void EmitCompositeExtractF32x3(EmitContext& ctx, std::string_view composite, u32 index); | 184 | void EmitCompositeExtractF32x3(EmitContext& ctx, IR::Inst& inst, std::string_view composite, |
| 184 | void EmitCompositeExtractF32x4(EmitContext& ctx, std::string_view composite, u32 index); | 185 | u32 index); |
| 186 | void EmitCompositeExtractF32x4(EmitContext& ctx, IR::Inst& inst, std::string_view composite, | ||
| 187 | u32 index); | ||
| 185 | void EmitCompositeInsertF32x2(EmitContext& ctx, std::string_view composite, std::string_view object, | 188 | void EmitCompositeInsertF32x2(EmitContext& ctx, std::string_view composite, std::string_view object, |
| 186 | u32 index); | 189 | u32 index); |
| 187 | void EmitCompositeInsertF32x3(EmitContext& ctx, std::string_view composite, std::string_view object, | 190 | void EmitCompositeInsertF32x3(EmitContext& ctx, std::string_view composite, std::string_view object, |