Module: Mesa Branch: master Commit: fd41cbc557509a36ae513eb7170edffbaa5e5715 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=fd41cbc557509a36ae513eb7170edffbaa5e5715
Author: Brian Paul <[email protected]> Date: Thu Aug 16 08:55:48 2012 -0600 mesa: add cast to silence warning in _mesa_pack_rgba_span_from_ints() --- src/mesa/main/pack.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/mesa/main/pack.c b/src/mesa/main/pack.c index 7aebd45..4c99199 100644 --- a/src/mesa/main/pack.c +++ b/src/mesa/main/pack.c @@ -926,7 +926,7 @@ _mesa_pack_rgba_span_from_ints(struct gl_context *ctx, GLuint n, GLint rgba[][4] break; case GL_INT: /* No conversion necessary. */ - pack_uint_from_uint_rgba(ctx, dstAddr, dstFormat, rgba, n); + pack_uint_from_uint_rgba(ctx, dstAddr, dstFormat, (GLuint (*)[4]) rgba, n); break; case GL_UNSIGNED_SHORT: pack_ushort_from_int_rgba(ctx, dstAddr, dstFormat, rgba, n); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
