summaryrefslogtreecommitdiff
path: root/src/glsl/ir_constant_folding.cpp
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-08-23 07:05:07 -0700
committerEric Anholt <eric@anholt.net>2010-08-23 07:22:16 -0700
commitea709696185846c876581e1c41a21921826823ec (patch)
tree36c7a2aa732ddbb56d8d57fb3196c2758ef5b672 /src/glsl/ir_constant_folding.cpp
parent2e215bc28f71d6b556ba65e6c4e26654782e1844 (diff)
glsl2: Add missing sig_iter.next() to the no-constant-folding-to-outvals fix.
Diffstat (limited to 'src/glsl/ir_constant_folding.cpp')
-rw-r--r--src/glsl/ir_constant_folding.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/ir_constant_folding.cpp b/src/glsl/ir_constant_folding.cpp
index 5d77093852..3e6934c9a7 100644
--- a/src/glsl/ir_constant_folding.cpp
+++ b/src/glsl/ir_constant_folding.cpp
@@ -117,6 +117,7 @@ ir_constant_folding_visitor::visit_enter(ir_call *ir)
param_rval->replace_with(new_param);
}
}
+ sig_iter.next();
}
return visit_continue_with_parent;