mesa: Fix typo in bitmask.

This commit is contained in:
José Fonseca 2009-06-10 21:25:54 +01:00
parent 0a4fcabe44
commit 8fa8669aeb

View file

@ -2872,7 +2872,7 @@ extract_uint_indexes(GLuint n, GLuint indexes[],
}
else {
for (i = 0; i < n; i++)
indexes[i] = s[i] & 0xfff; /* lower 8 bits */
indexes[i] = s[i] & 0xff; /* lower 8 bits */
}
}
break;