summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2011-03-24 18:01:37 -0700
committerIan Romanick <ian.d.romanick@intel.com>2011-03-25 11:28:07 -0700
commit4e994e150f65c854229b4af12eae5519ebd9dda1 (patch)
tree89b7b24d96cdf4f5dedd0b8769479c7e69d56476
parent0d9d036004f135c38990c60f46074b70cff6e663 (diff)
i965/fs: Use different name for inner loop counter
'i' is already used for the outer loop. This caused some problems while doing other work in this area. No bug exists here... until you want to use the outer loop counter in the inner loop.
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp
index ecc4d482b60..74596e91c35 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
@@ -440,8 +440,8 @@ fs_visitor::setup_builtin_uniform_values(ir_variable *ir)
* the array/matrix/structure we're trying to fill in.
*/
int last_swiz = -1;
- for (unsigned int i = 0; i < 4; i++) {
- int swiz = GET_SWZ(element->swizzle, i);
+ for (unsigned int j = 0; j < 4; j++) {
+ int swiz = GET_SWZ(element->swizzle, j);
if (swiz == last_swiz)
break;
last_swiz = swiz;