mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 05:08:08 +02:00
minor error string improvement
This commit is contained in:
parent
0dde1904c8
commit
7e86eb991b
1 changed files with 3 additions and 1 deletions
|
|
@ -305,7 +305,9 @@ _mesa_test_texobj_completeness( const GLcontext *ctx,
|
|||
|
||||
/* Always need the base level image */
|
||||
if (!t->Image[baseLevel]) {
|
||||
incomplete(t, "Image[baseLevel] == NULL");
|
||||
char s[100];
|
||||
sprintf(s, "obj %p (%d) Image[baseLevel=%d] == NULL", t, t->Name, baseLevel);
|
||||
incomplete(t, s);
|
||||
t->Complete = GL_FALSE;
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue