OSDN Git Service

r300: fix big endian build
authorDave Airlie <airlied@redhat.com>
Tue, 18 Aug 2009 03:55:12 +0000 (13:55 +1000)
committerDave Airlie <airlied@redhat.com>
Tue, 18 Aug 2009 03:55:12 +0000 (13:55 +1000)
src/mesa/drivers/dri/r300/r300_draw.c

index fb416a0..d524d60 100644 (file)
@@ -108,6 +108,7 @@ static void r300FixupIndexBuffer(GLcontext *ctx, const struct _mesa_index_buffer
 
 #if MESA_BIG_ENDIAN
        } else { /* if (mesa_ind_buf->type == GL_UNSIGNED_SHORT) */
+               GLuint size;
                GLushort *in = (GLushort *)src_ptr;
                size = sizeof(GLushort) * ((mesa_ind_buf->count + 1) & ~1);