From e9283774dc32c8f6526448e6b666b9975dae7230 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 22 Oct 2002 15:15:41 +0000 Subject: remove debug printfs --- src/mesa/main/texobj.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/mesa') 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) { -- cgit v1.2.3