diff options
author | Brian Paul <[email protected]> | 2012-01-12 09:54:04 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-01-12 13:02:50 -0700 |
commit | 706400f0a7a59bba89eca8e97a1ada45445ee6df (patch) | |
tree | ca697e985db3fe5793b99d31f878bbfc1f95eaf4 /src/mesa/swrast/s_context.c | |
parent | decd018b992eb0f7f85338ee39083daca04885b6 (diff) |
swrast: use BITFIELD64_BIT() macro to fix MSVC warnings
NOTE: This is a candidate for the 8.0 branch.
Reviewed-by: José Fonseca <[email protected]>
Diffstat (limited to 'src/mesa/swrast/s_context.c')
-rw-r--r-- | src/mesa/swrast/s_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_context.c b/src/mesa/swrast/s_context.c index 94b7fe34daa..06824ea2ce9 100644 --- a/src/mesa/swrast/s_context.c +++ b/src/mesa/swrast/s_context.c @@ -531,7 +531,7 @@ _swrast_update_active_attribs(struct gl_context *ctx) { GLuint i, num = 0; for (i = 0; i < FRAG_ATTRIB_MAX; i++) { - if (attribsMask & (1 << i)) { + if (attribsMask & BITFIELD64_BIT(i)) { swrast->_ActiveAttribs[num++] = i; /* how should this attribute be interpolated? */ if (i == FRAG_ATTRIB_COL0 || i == FRAG_ATTRIB_COL1) |