From: Ilia Mirkin Date: Wed, 22 Jul 2015 16:39:47 +0000 (-0400) Subject: mesa: adjust error message when there's a missing teximage X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c844afe94eaecc66e00cc4869f700ac1236bdc89;p=mesa.git mesa: adjust error message when there's a missing teximage The current message makes it seem like the zoffset is invalid. Signed-off-by: Ilia Mirkin Reviewed-by: Brian Paul --- diff --git a/src/mesa/main/texgetimage.c b/src/mesa/main/texgetimage.c index 59ec091257e..2f35ac6d77a 100644 --- a/src/mesa/main/texgetimage.c +++ b/src/mesa/main/texgetimage.c @@ -1013,8 +1013,7 @@ dimensions_error_check(struct gl_context *ctx, texImage = select_tex_image(texObj, target, level, zoffset); if (!texImage) { /* missing texture image */ - _mesa_error(ctx, GL_INVALID_OPERATION, - "%s(zoffset = %d)", caller, zoffset); + _mesa_error(ctx, GL_INVALID_OPERATION, "%s(missing image)", caller); return true; }