i965: Fix new FS handling of builtin uniforms with packed scalars in structs.
We were pointing each element at the .x channel of the ParameterValues. Fixes glsl1-linear fog.
This commit is contained in:
@@ -696,12 +696,12 @@ fs_visitor::setup_builtin_uniform_values(ir_variable *ir)
|
||||
*/
|
||||
int last_swiz = -1;
|
||||
for (unsigned int i = 0; i < 4; i++) {
|
||||
int this_swiz = GET_SWZ(element->swizzle, i);
|
||||
if (this_swiz == last_swiz)
|
||||
int swiz = GET_SWZ(element->swizzle, i);
|
||||
if (swiz == last_swiz)
|
||||
break;
|
||||
last_swiz = this_swiz;
|
||||
last_swiz = swiz;
|
||||
|
||||
c->prog_data.param[c->prog_data.nr_params++] = &vec_values[i];
|
||||
c->prog_data.param[c->prog_data.nr_params++] = &vec_values[swiz];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user