swrast: Use BITFIELD64_BIT for arrayAttribs.
As VARYING_SLOT_MAX can be bigger than 32. I'll probably stop building swrast with MSVC in the near future, but this seems a real bug regardless. Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
@@ -788,7 +788,7 @@ clip_span( struct gl_context *ctx, SWspan *span )
|
||||
memmove(ARRAY, ARRAY + (SHIFT), (LEN) * sizeof(ARRAY[0]))
|
||||
|
||||
for (i = 0; i < VARYING_SLOT_MAX; i++) {
|
||||
if (span->arrayAttribs & (1 << i)) {
|
||||
if (span->arrayAttribs & BITFIELD64_BIT(i)) {
|
||||
/* shift array elements left by 'leftClip' */
|
||||
SHIFT_ARRAY(span->array->attribs[i], leftClip, n - leftClip);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user