mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-07 19:30:12 +01:00
mesa: improve the warning message in _mesa_choose_tex_format()
Bug 42128 hits this _mesa_warning() call.
This commit is contained in:
parent
dc637b66b2
commit
08b2cc018d
1 changed files with 3 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue