mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
mesa: Fix typo in bitmask.
This commit is contained in:
parent
0a4fcabe44
commit
8fa8669aeb
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue