diff options
Diffstat (limited to 'src/shader_recompiler')
| -rw-r--r-- | src/shader_recompiler/backend/glasm/emit_glasm.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm.cpp b/src/shader_recompiler/backend/glasm/emit_glasm.cpp index 65600f58c..7ec880c81 100644 --- a/src/shader_recompiler/backend/glasm/emit_glasm.cpp +++ b/src/shader_recompiler/backend/glasm/emit_glasm.cpp | |||
| @@ -124,31 +124,31 @@ std::string EmitGLASM(const Profile&, IR::Program& program, Bindings&) { | |||
| 124 | return ctx.code; | 124 | return ctx.code; |
| 125 | } | 125 | } |
| 126 | 126 | ||
| 127 | void EmitIdentity(EmitContext& ctx, IR::Inst& inst, const IR::Value& value) { | 127 | void EmitIdentity(EmitContext&, IR::Inst& inst, const IR::Value& value) { |
| 128 | Identity(inst, value); | 128 | Identity(inst, value); |
| 129 | } | 129 | } |
| 130 | 130 | ||
| 131 | void EmitBitCastU16F16(EmitContext& ctx, IR::Inst& inst, const IR::Value& value) { | 131 | void EmitBitCastU16F16(EmitContext&, IR::Inst& inst, const IR::Value& value) { |
| 132 | Identity(inst, value); | 132 | Identity(inst, value); |
| 133 | } | 133 | } |
| 134 | 134 | ||
| 135 | void EmitBitCastU32F32(EmitContext& ctx, IR::Inst& inst, const IR::Value& value) { | 135 | void EmitBitCastU32F32(EmitContext&, IR::Inst& inst, const IR::Value& value) { |
| 136 | Identity(inst, value); | 136 | Identity(inst, value); |
| 137 | } | 137 | } |
| 138 | 138 | ||
| 139 | void EmitBitCastU64F64(EmitContext& ctx, IR::Inst& inst, const IR::Value& value) { | 139 | void EmitBitCastU64F64(EmitContext&, IR::Inst& inst, const IR::Value& value) { |
| 140 | Identity(inst, value); | 140 | Identity(inst, value); |
| 141 | } | 141 | } |
| 142 | 142 | ||
| 143 | void EmitBitCastF16U16(EmitContext& ctx, IR::Inst& inst, const IR::Value& value) { | 143 | void EmitBitCastF16U16(EmitContext&, IR::Inst& inst, const IR::Value& value) { |
| 144 | Identity(inst, value); | 144 | Identity(inst, value); |
| 145 | } | 145 | } |
| 146 | 146 | ||
| 147 | void EmitBitCastF32U32(EmitContext& ctx, IR::Inst& inst, const IR::Value& value) { | 147 | void EmitBitCastF32U32(EmitContext&, IR::Inst& inst, const IR::Value& value) { |
| 148 | Identity(inst, value); | 148 | Identity(inst, value); |
| 149 | } | 149 | } |
| 150 | 150 | ||
| 151 | void EmitBitCastF64U64(EmitContext& ctx, IR::Inst& inst, const IR::Value& value) { | 151 | void EmitBitCastF64U64(EmitContext&, IR::Inst& inst, const IR::Value& value) { |
| 152 | Identity(inst, value); | 152 | Identity(inst, value); |
| 153 | } | 153 | } |
| 154 | 154 | ||