summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-07-25 12:41:52 -0400
committerGitHub <noreply@github.com>2019-07-25 12:41:52 -0400
commit4d26550f5faff5e1c52fd0fb1b17e03ca4144130 (patch)
treecda37600bdeddf5c0422263f76fcfedc80159557
parentccbc5549490de065fd989cd7f1025dba10cb0c32 (diff)
parentd614193e494c640cab078f8a4747764052b58bb3 (diff)
Merge pull request #2737 from FernandoS27/track-fixmainline-192
Shader_Ir: Correct tracking to track from right to left
-rw-r--r--src/video_core/shader/track.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/track.cpp b/src/video_core/shader/track.cpp
index a53e02253b..55f5949e4b 100644
--- a/src/video_core/shader/track.cpp
+++ b/src/video_core/shader/track.cpp
@@ -59,8 +59,8 @@ std::tuple<Node, u32, u32> ShaderIR::TrackCbuf(Node tracked, const NodeBlock& co
return TrackCbuf(source, code, new_cursor);
}
if (const auto operation = std::get_if<OperationNode>(&*tracked)) {
- for (std::size_t i = 0; i < operation->GetOperandsCount(); ++i) {
- if (auto found = TrackCbuf((*operation)[i], code, cursor); std::get<0>(found)) {
+ for (std::size_t i = operation->GetOperandsCount(); i > 0; --i) {
+ if (auto found = TrackCbuf((*operation)[i - 1], code, cursor); std::get<0>(found)) {
// Cbuf found in operand.
return found;
}