diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2021-05-19 02:05:46 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-23 03:51:32 +0200 |
commit | 0a42277a4f7ffc822b334781467ed4588335ba02 (patch) | |
tree | 0c73f85431163cdea47eaaf8fcd2cb1bc3ce61ff /src/shader_recompiler/backend/glasm/emit_glasm_instructions.h | |
parent | glasm: Implement gl_FrongFacing attribute (diff) | |
download | yuzu-0a42277a4f7ffc822b334781467ed4588335ba02.tar yuzu-0a42277a4f7ffc822b334781467ed4588335ba02.tar.gz yuzu-0a42277a4f7ffc822b334781467ed4588335ba02.tar.bz2 yuzu-0a42277a4f7ffc822b334781467ed4588335ba02.tar.lz yuzu-0a42277a4f7ffc822b334781467ed4588335ba02.tar.xz yuzu-0a42277a4f7ffc822b334781467ed4588335ba02.tar.zst yuzu-0a42277a4f7ffc822b334781467ed4588335ba02.zip |
Diffstat (limited to 'src/shader_recompiler/backend/glasm/emit_glasm_instructions.h')
-rw-r--r-- | src/shader_recompiler/backend/glasm/emit_glasm_instructions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h b/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h index 53e9bdac7..17bec1d58 100644 --- a/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h +++ b/src/shader_recompiler/backend/glasm/emit_glasm_instructions.h @@ -543,7 +543,7 @@ void EmitImageGatherDref(EmitContext& ctx, IR::Inst& inst, const IR::Value& inde void EmitImageFetch(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, Register coord, Register offset, Register lod, Register ms); void EmitImageQueryDimensions(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, - Register lod); + ScalarF32 lod); void EmitImageQueryLod(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, Register coord); void EmitImageGradient(EmitContext& ctx, IR::Inst& inst, const IR::Value& index, Register coord, Register derivates, Register offset, Register lod_clamp); |