Build fix for -Werror=int-to-pointer-cast -Werror=pointer-to-int-cast
authorJeremy Huddleston <jeremyhu@apple.com>
Wed, 2 Nov 2011 04:04:34 +0000 (21:04 -0700)
committerJeremy Huddleston <jeremyhu@apple.com>
Wed, 2 Nov 2011 04:04:51 +0000 (21:04 -0700)
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
src/mesa/drivers/dri/r200/r200_tcl.c
src/mesa/drivers/dri/radeon/radeon_tcl.c

index 48563dd6023e141f9f7e6ab014d0ec8e3242b557..3ece7a3d7121971ac4c811db0a66566b498218d4 100644 (file)
@@ -218,8 +218,8 @@ static void r200EmitPrim( struct gl_context *ctx,
 #ifdef MESA_BIG_ENDIAN
 /* We could do without (most of) this ugliness if dest was always 32 bit word aligned... */
 #define EMIT_ELT(dest, offset, x) do {                          \
-        int off = offset + ( ( (GLuint)dest & 0x2 ) >> 1 );     \
-        GLushort *des = (GLushort *)( (GLuint)dest & ~0x2 );    \
+        int off = offset + ( ( (uintptr_t)dest & 0x2 ) >> 1 );     \
+        GLushort *des = (GLushort *)( (uintptr_t)dest & ~0x2 );    \
         (des)[ off + 1 - 2 * ( off & 1 ) ] = (GLushort)(x);    \
        (void)rmesa; } while (0)
 #else
index 5d2e8f4870fb1a6f54744d80b2daaae0602bcddf..874ba926dc4c9355d516586356f4f904d1bf5ce4 100644 (file)
@@ -207,8 +207,8 @@ static void radeonEmitPrim( struct gl_context *ctx,
 #ifdef MESA_BIG_ENDIAN
 /* We could do without (most of) this ugliness if dest was always 32 bit word aligned... */
 #define EMIT_ELT(dest, offset, x) do {                         \
-       int off = offset + ( ( (GLuint)dest & 0x2 ) >> 1 );     \
-       GLushort *des = (GLushort *)( (GLuint)dest & ~0x2 );    \
+       int off = offset + ( ( (uintptr_t)dest & 0x2 ) >> 1 );  \
+       GLushort *des = (GLushort *)( (uintptr_t)dest & ~0x2 ); \
        (des)[ off + 1 - 2 * ( off & 1 ) ] = (GLushort)(x);     \
        (void)rmesa; } while (0)
 #else