diff options
author | Brian <[email protected]> | 2007-01-24 14:15:01 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-01-24 14:15:01 -0700 |
commit | e713c21bd09468887faceebcba9a62a406321c07 (patch) | |
tree | 346edb1339910f09aed7a0c4042dc9fee1b10e57 /src/mesa/tnl/t_vp_build.c | |
parent | ff917003f6ed35b9ef966397a58c80dc7df98bff (diff) |
remove some parenthesis
Diffstat (limited to 'src/mesa/tnl/t_vp_build.c')
-rw-r--r-- | src/mesa/tnl/t_vp_build.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_vp_build.c b/src/mesa/tnl/t_vp_build.c index d80afaf2452..47fed32904d 100644 --- a/src/mesa/tnl/t_vp_build.c +++ b/src/mesa/tnl/t_vp_build.c @@ -1213,7 +1213,7 @@ static void build_texture_transform( struct tnl_program *p ) for (i = 0; i < MAX_TEXTURE_UNITS; i++) { - if (!(p->state->fragprog_inputs_read & (FRAG_BIT_TEX(i)))) + if (!(p->state->fragprog_inputs_read & FRAG_BIT_TEX(i))) continue; if (p->state->unit[i].texgen_enabled || |