diff options
| -rw-r--r-- | src/mesa/main/texobj.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/texobj.c b/src/mesa/main/texobj.c index 0024efc0e6..d51e7b76ec 100644 --- a/src/mesa/main/texobj.c +++ b/src/mesa/main/texobj.c @@ -281,7 +281,8 @@ valid_texture_object(const struct gl_texture_object *tex)        _mesa_problem(NULL, "invalid reference to a deleted texture object");        return GL_FALSE;     default: -      _mesa_problem(NULL, "invalid texture object Target value"); +      _mesa_problem(NULL, "invalid texture object Target 0x%x, Id = %u", +                    tex->Target, tex->Name);        return GL_FALSE;     }  }  | 
