From: Brian Paul Date: Sun, 4 Nov 2012 23:43:44 +0000 (-0700) Subject: mesa: silence MSVC signed/unsigned warning in texstorage.c X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0dddf592edad3e9a73c91af0687a688875ab2099;p=mesa.git mesa: silence MSVC signed/unsigned warning in texstorage.c Reviewed-by: Jose Fonseca --- diff --git a/src/mesa/main/texstorage.c b/src/mesa/main/texstorage.c index 283aefad308..968f6f90408 100644 --- a/src/mesa/main/texstorage.c +++ b/src/mesa/main/texstorage.c @@ -292,7 +292,7 @@ tex_storage_error_check(struct gl_context *ctx, GLuint dims, GLenum target, /* check levels against width/height/depth */ maxDim = MAX3(width, height, depth); - if (levels > _mesa_logbase2(maxDim) + 1) { + if (levels > (GLint) _mesa_logbase2(maxDim) + 1) { _mesa_error(ctx, GL_INVALID_OPERATION, "glTexStorage%uD(too many levels for max texture dimension)", dims);