From: Brian Paul Date: Mon, 8 Jul 2013 16:00:01 +0000 (-0600) Subject: mesa: s/GLuint/GLint/ to silence MSVC warning in textore.c X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5b0fbf1b0be58672db14c2da965d8c0c323eab29;p=mesa.git mesa: s/GLuint/GLint/ to silence MSVC warning in textore.c --- diff --git a/src/mesa/main/texstore.c b/src/mesa/main/texstore.c index 9b66ad50b96..04385e1e9c6 100644 --- a/src/mesa/main/texstore.c +++ b/src/mesa/main/texstore.c @@ -4143,7 +4143,7 @@ _mesa_store_compressed_texsubimage(struct gl_context *ctx, GLuint dims, const GLubyte *src; const gl_format texFormat = texImage->TexFormat; GLuint bw, bh; - GLuint slice; + GLint slice; if (dims == 1) { _mesa_problem(ctx, "Unexpected 1D compressed texsubimage call");