minor error string improvement
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user