diff options
author | Brian Paul <[email protected]> | 2016-05-04 14:01:29 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2016-05-04 14:49:39 -0600 |
commit | 54d203a319cbe33461b3c1872722cea10adc337a (patch) | |
tree | 1df3deed1064ed04d537c8a65d206e831764d707 /src/mesa | |
parent | a62f031bc394e20a0f33dafe3af60a294ad7f09e (diff) |
mesa: include texture format in glGenerateMipmap error message
Reviewed-by: Charmaine Lee <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/genmipmap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/genmipmap.c b/src/mesa/main/genmipmap.c index 1a6ae9a5f3c..d917220f7e8 100644 --- a/src/mesa/main/genmipmap.c +++ b/src/mesa/main/genmipmap.c @@ -139,7 +139,8 @@ _mesa_generate_texture_mipmap(struct gl_context *ctx, srcImage->InternalFormat)) { _mesa_unlock_texture(ctx, texObj); _mesa_error(ctx, GL_INVALID_OPERATION, - "glGenerate%sMipmap(invalid internal format)", suffix); + "glGenerate%sMipmap(invalid internal format %s)", suffix, + _mesa_enum_to_string(srcImage->InternalFormat)); return; } |