From: Brian Paul Date: Fri, 24 Apr 2015 18:56:04 +0000 (-0600) Subject: mesa: put more info in glTexImage GL_OUT_OF_MEMORY error message X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=13b2e6a520d1f8979fc4da1dd2c6811585b16203;p=mesa.git mesa: put more info in glTexImage GL_OUT_OF_MEMORY error message Give the user some idea about the size of the texture which caused the GL_OUT_OF_MEMORY error. Reviewed-by: Matt Turner --- diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index d07263c59b1..7bc1da7f805 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -3320,7 +3320,9 @@ teximage(struct gl_context *ctx, GLboolean compressed, GLuint dims, if (!sizeOK) { _mesa_error(ctx, GL_OUT_OF_MEMORY, - "glTexImage%uD(image too large)", dims); + "glTexImage%uD(image too large: %d x %d x %d, %s format)", + dims, width, height, depth, + _mesa_lookup_enum_by_nr(internalFormat)); return; }