summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mesa/drivers/dri/r300/r300_vertprog.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_vertprog.c b/src/mesa/drivers/dri/r300/r300_vertprog.c
index 703fba4874..9f807dbc99 100644
--- a/src/mesa/drivers/dri/r300/r300_vertprog.c
+++ b/src/mesa/drivers/dri/r300/r300_vertprog.c
@@ -1524,10 +1524,14 @@ static GLuint getUsedComponents(const GLuint swizzle)
ret = 0;
/* need to mask out ZERO, ONE and NIL swizzles */
- ret |= 1 << (GET_SWZ(swizzle, SWIZZLE_X) & 0x3);
- ret |= 1 << (GET_SWZ(swizzle, SWIZZLE_Y) & 0x3);
- ret |= 1 << (GET_SWZ(swizzle, SWIZZLE_Z) & 0x3);
- ret |= 1 << (GET_SWZ(swizzle, SWIZZLE_W) & 0x3);
+ if (GET_SWZ(swizzle, SWIZZLE_X) <= SWIZZLE_W)
+ ret |= 1 << (GET_SWZ(swizzle, SWIZZLE_X));
+ if (GET_SWZ(swizzle, SWIZZLE_Y) <= SWIZZLE_W)
+ ret |= 1 << (GET_SWZ(swizzle, SWIZZLE_Y));
+ if (GET_SWZ(swizzle, SWIZZLE_Z) <= SWIZZLE_W)
+ ret |= 1 << (GET_SWZ(swizzle, SWIZZLE_Z));
+ if (GET_SWZ(swizzle, SWIZZLE_W) <= SWIZZLE_W)
+ ret |= 1 << (GET_SWZ(swizzle, SWIZZLE_W));
return ret;
}