summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-08-04 16:32:12 -0700
committerEric Anholt <eric@anholt.net>2010-08-04 20:52:33 -0700
commit022f79e49648d465d2db0240554f58ac42754584 (patch)
treef00dcbbded771bb0aa6619cbed3e9d46074d8966 /src
parent83cb310dbb47357c4b3065ca0d6739796d9e371f (diff)
glsl2: Return progress from ir_vec_index_to_swizzle.
Diffstat (limited to 'src')
-rw-r--r--src/glsl/ir_vec_index_to_swizzle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ir_vec_index_to_swizzle.cpp b/src/glsl/ir_vec_index_to_swizzle.cpp
index b3de91f8ab..969dc8f94a 100644
--- a/src/glsl/ir_vec_index_to_swizzle.cpp
+++ b/src/glsl/ir_vec_index_to_swizzle.cpp
@@ -153,5 +153,5 @@ do_vec_index_to_swizzle(exec_list *instructions)
v.run(instructions);
- return false;
+ return v.progress;
}