diff options
Diffstat (limited to 'src/mesa/main/arbparse.c')
-rw-r--r-- | src/mesa/main/arbparse.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/main/arbparse.c b/src/mesa/main/arbparse.c index ddffbc2b14c..a84f16f59ed 100644 --- a/src/mesa/main/arbparse.c +++ b/src/mesa/main/arbparse.c @@ -4649,16 +4649,16 @@ parse_extended_swizzle_mask (GLubyte ** inst, GLubyte * mask, GLboolean * Negate mask[a] = SWIZZLE_ONE; break; case COMPONENT_X: - mask[a] = 0; + mask[a] = SWIZZLE_X; break; case COMPONENT_Y: - mask[a] = 1; + mask[a] = SWIZZLE_Y; break; case COMPONENT_Z: - mask[a] = 2; + mask[a] = SWIZZLE_Z; break; case COMPONENT_W: - mask[a] = 3; + mask[a] = SWIZZLE_W; break; } |