summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/decode/other.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2018-12-26 06:17:56 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-01-15 21:54:53 +0100
commit52223313b10af4c76b516d6ead247a1a201a71d8 (patch)
treee9fb7a948605622b7702d1c4aebef5838253850e /src/video_core/shader/decode/other.cpp
parentgl_shader_decompiler: Use rasterizer's UBO size limit (diff)
downloadyuzu-52223313b10af4c76b516d6ead247a1a201a71d8.tar
yuzu-52223313b10af4c76b516d6ead247a1a201a71d8.tar.gz
yuzu-52223313b10af4c76b516d6ead247a1a201a71d8.tar.bz2
yuzu-52223313b10af4c76b516d6ead247a1a201a71d8.tar.lz
yuzu-52223313b10af4c76b516d6ead247a1a201a71d8.tar.xz
yuzu-52223313b10af4c76b516d6ead247a1a201a71d8.tar.zst
yuzu-52223313b10af4c76b516d6ead247a1a201a71d8.zip
Diffstat (limited to 'src/video_core/shader/decode/other.cpp')
-rw-r--r--src/video_core/shader/decode/other.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/video_core/shader/decode/other.cpp b/src/video_core/shader/decode/other.cpp
index 1918762b8..386433d8e 100644
--- a/src/video_core/shader/decode/other.cpp
+++ b/src/video_core/shader/decode/other.cpp
@@ -134,9 +134,8 @@ u32 ShaderIR::DecodeOther(BasicBlock& bb, u32 pc) {
const Tegra::Shader::IpaMode input_mode{instr.ipa.interp_mode.Value(),
instr.ipa.sample_mode.Value()};
- const Node input_attr = GetInputAttribute(attribute.index, attribute.element, input_mode);
- const Node ipa = Operation(OperationCode::Ipa, input_attr);
- const Node value = GetSaturatedFloat(ipa, instr.ipa.saturate);
+ const Node attr = GetInputAttribute(attribute.index, attribute.element, input_mode);
+ const Node value = GetSaturatedFloat(attr, instr.ipa.saturate);
SetRegister(bb, instr.gpr0, value);
break;