summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-10-23 10:00:00 -0600
committerBrian Paul <brianp@vmware.com>2011-10-23 10:00:04 -0600
commit08b2cc018ddcfce4b4f4204b89ff5c1d62bfe85d (patch)
tree2ac49d210e652ef38b0cb4524f9118a2cd2ec569
parentdc637b66b25f341783efb53acc70e1bafbcba576 (diff)
mesa: improve the warning message in _mesa_choose_tex_format()
Bug 42128 hits this _mesa_warning() call.
-rw-r--r--src/mesa/main/texformat.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/texformat.c b/src/mesa/main/texformat.c
index 7f262d6d82f..aebe38ee0bf 100644
--- a/src/mesa/main/texformat.c
+++ b/src/mesa/main/texformat.c
@@ -34,6 +34,7 @@
#include "context.h"
+#include "enums.h"
#include "mfeatures.h"
#include "mtypes.h"
#include "texcompress.h"
@@ -897,7 +898,8 @@ _mesa_choose_tex_format( struct gl_context *ctx, GLint internalFormat,
}
}
- _mesa_problem(ctx, "unexpected format in _mesa_choose_tex_format()");
+ _mesa_problem(ctx, "unexpected format %s in _mesa_choose_tex_format()",
+ _mesa_lookup_enum_by_nr(internalFormat));
return MESA_FORMAT_NONE;
}