projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dc637b6
)
mesa: improve the warning message in _mesa_choose_tex_format()
author
Brian Paul
<brianp@vmware.com>
Sun, 23 Oct 2011 16:00:00 +0000
(10:00 -0600)
committer
Brian Paul
<brianp@vmware.com>
Sun, 23 Oct 2011 16:00:04 +0000
(10:00 -0600)
Bug 42128 hits this _mesa_warning() call.
src/mesa/main/texformat.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/texformat.c
b/src/mesa/main/texformat.c
index 7f262d6d82f6b7e8c783e3cacab54e2a5080483d..aebe38ee0bfb5c94bdabe2ce3aacc68872363e7a 100644
(file)
--- 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;
}