mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 00:40:09 +01:00
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.
This commit is contained in:
parent
0d9d036004
commit
4e994e150f
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue