diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2021-05-08 21:43:26 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-23 03:51:30 +0200 |
commit | 2b04b4d27fc38d9865cef5bf8eabb335bc29eb83 (patch) | |
tree | a9e76656df7dfd6e4bf9d7168d297f719963a485 /src/shader_recompiler/backend | |
parent | gl_rasterizer: Flush L2 caches before glFlush on GLASM (diff) | |
download | yuzu-2b04b4d27fc38d9865cef5bf8eabb335bc29eb83.tar yuzu-2b04b4d27fc38d9865cef5bf8eabb335bc29eb83.tar.gz yuzu-2b04b4d27fc38d9865cef5bf8eabb335bc29eb83.tar.bz2 yuzu-2b04b4d27fc38d9865cef5bf8eabb335bc29eb83.tar.lz yuzu-2b04b4d27fc38d9865cef5bf8eabb335bc29eb83.tar.xz yuzu-2b04b4d27fc38d9865cef5bf8eabb335bc29eb83.tar.zst yuzu-2b04b4d27fc38d9865cef5bf8eabb335bc29eb83.zip |
Diffstat (limited to 'src/shader_recompiler/backend')
-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&) { return ctx.code; } -void EmitIdentity(EmitContext& ctx, IR::Inst& inst, const IR::Value& value) { +void EmitIdentity(EmitContext&, IR::Inst& inst, const IR::Value& value) { Identity(inst, value); } -void EmitBitCastU16F16(EmitContext& ctx, IR::Inst& inst, const IR::Value& value) { +void EmitBitCastU16F16(EmitContext&, IR::Inst& inst, const IR::Value& value) { Identity(inst, value); } -void EmitBitCastU32F32(EmitContext& ctx, IR::Inst& inst, const IR::Value& value) { +void EmitBitCastU32F32(EmitContext&, IR::Inst& inst, const IR::Value& value) { Identity(inst, value); } -void EmitBitCastU64F64(EmitContext& ctx, IR::Inst& inst, const IR::Value& value) { +void EmitBitCastU64F64(EmitContext&, IR::Inst& inst, const IR::Value& value) { Identity(inst, value); } -void EmitBitCastF16U16(EmitContext& ctx, IR::Inst& inst, const IR::Value& value) { +void EmitBitCastF16U16(EmitContext&, IR::Inst& inst, const IR::Value& value) { Identity(inst, value); } -void EmitBitCastF32U32(EmitContext& ctx, IR::Inst& inst, const IR::Value& value) { +void EmitBitCastF32U32(EmitContext&, IR::Inst& inst, const IR::Value& value) { Identity(inst, value); } -void EmitBitCastF64U64(EmitContext& ctx, IR::Inst& inst, const IR::Value& value) { +void EmitBitCastF64U64(EmitContext&, IR::Inst& inst, const IR::Value& value) { Identity(inst, value); } |