mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-07 21:40:20 +01:00
print internalFormat value in r200ChooseTextureFormat() error message
This commit is contained in:
parent
a6c423d956
commit
d0bdae8a28
1 changed files with 3 additions and 1 deletions
|
|
@ -421,7 +421,9 @@ r200ChooseTextureFormat( GLcontext *ctx, GLint internalFormat,
|
|||
return &_mesa_texformat_ycbcr_rev;
|
||||
|
||||
default:
|
||||
_mesa_problem(ctx, "unexpected texture format in %s", __FUNCTION__);
|
||||
_mesa_problem(ctx,
|
||||
"unexpected internalFormat 0x%x in r200ChooseTextureFormat",
|
||||
(int) internalFormat);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue