diff options
| author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-05-14 15:47:58 -0300 |
|---|---|---|
| committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-07-07 16:05:56 -0300 |
| commit | d0966b9f7ceac5a82e54b76d896cbf44f64749ea (patch) | |
| tree | 8a291be414f72eddd5af27c8eb734f0ffb4111b5 /src/video_core/shader | |
| parent | 9e689a81f8a6ea543ed56f2dbd90641c1b6502a9 (diff) | |
shader/texture: Add F16 support for TLDS
Diffstat (limited to 'src/video_core/shader')
| -rw-r--r-- | src/video_core/shader/decode/texture.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/video_core/shader/decode/texture.cpp b/src/video_core/shader/decode/texture.cpp index cb480be9b..323be3f14 100644 --- a/src/video_core/shader/decode/texture.cpp +++ b/src/video_core/shader/decode/texture.cpp @@ -269,7 +269,13 @@ u32 ShaderIR::DecodeTexture(NodeBlock& bb, u32 pc) { LOG_WARNING(HW_GPU, "TLDS.NODEP implementation is incomplete"); } - WriteTexsInstructionFloat(bb, instr, GetTldsCode(instr, texture_type, is_array)); + const Node4 components = GetTldsCode(instr, texture_type, is_array); + + if (instr.tlds.fp32_flag) { + WriteTexsInstructionFloat(bb, instr, components); + } else { + WriteTexsInstructionHalfFloat(bb, instr, components); + } break; } default: |
