diff options
-rw-r--r-- | src/mesa/main/texobj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texobj.c b/src/mesa/main/texobj.c index 9934f2a446c..3d89ca179ce 100644 --- a/src/mesa/main/texobj.c +++ b/src/mesa/main/texobj.c @@ -454,7 +454,7 @@ _mesa_test_texobj_completeness( const struct gl_context *ctx, if (t->Image[0][baseLevel]->Width == 0 || t->Image[0][baseLevel]->Height == 0 || t->Image[0][baseLevel]->Depth == 0) { - incomplete(t, "texture width = 0"); + incomplete(t, "texture width or height or depth = 0"); return; } |