diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2002-10-22 15:15:41 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2002-10-22 15:15:41 +0000 |
commit | e9283774dc32c8f6526448e6b666b9975dae7230 (patch) | |
tree | e3a14650f274883fc3cf142af6044a48faf8cccf /src | |
parent | cf462086246692282a4b51db4412bfb89f9c8c9b (diff) |
remove debug printfs
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/texobj.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/main/texobj.c b/src/mesa/main/texobj.c index c4616bb506..c58df0764c 100644 --- a/src/mesa/main/texobj.c +++ b/src/mesa/main/texobj.c @@ -1,4 +1,4 @@ -/* $Id: texobj.c,v 1.60 2002/10/22 15:14:49 brianp Exp $ */ +/* $Id: texobj.c,v 1.61 2002/10/22 15:15:41 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -567,7 +567,6 @@ _mesa_DeleteTextures( GLsizei n, const GLuint *texName) * If so, unbind it and decrement the reference count. */ GLuint u; - printf("RefCount in delete = %d\n", delObj->RefCount); for (u = 0; u < MAX_TEXTURE_UNITS; u++) { struct gl_texture_unit *unit = &ctx->Texture.Unit[u]; if (delObj == unit->Current1D) { @@ -610,7 +609,6 @@ _mesa_DeleteTextures( GLsizei n, const GLuint *texName) /* Decrement reference count and delete if zero */ delObj->RefCount--; - printf("RefCount' in delete = %d\n", delObj->RefCount); ASSERT(delObj->RefCount >= 0); if (delObj->RefCount == 0) { |