summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2003-04-30 09:47:16 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2003-04-30 09:47:16 +0000
commit7001513cfc711168521309b476a44fcc926d7696 (patch)
tree29554ccfe4859d23044db0a4977e3e0a01687d9f
parentdf0afe92d2885d7353f7314838c296874398da10 (diff)
Remove debug printfs
-rw-r--r--src/mesa/drivers/dri/radeon/radeon_state.c4
-rw-r--r--src/mesa/drivers/dri/radeon/radeon_subset_tex.c2
-rw-r--r--src/miniglx/dri_util.c6
3 files changed, 0 insertions, 12 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_state.c b/src/mesa/drivers/dri/radeon/radeon_state.c
index f738903ec1..1277fce8f0 100644
--- a/src/mesa/drivers/dri/radeon/radeon_state.c
+++ b/src/mesa/drivers/dri/radeon/radeon_state.c
@@ -1162,8 +1162,6 @@ void radeonSetCliprects( radeonContextPtr rmesa, GLenum mode )
{
__DRIdrawablePrivate *dPriv = rmesa->dri.drawable;
- fprintf(stderr, "%s\n", __FUNCTION__);
-
switch ( mode ) {
case GL_FRONT_LEFT:
rmesa->numClipRects = dPriv->numClipRects;
@@ -1190,8 +1188,6 @@ void radeonSetCliprects( radeonContextPtr rmesa, GLenum mode )
return;
}
- fprintf(stderr, "%s: %d cliprects\n", __FUNCTION__, rmesa->numClipRects);
-
if (rmesa->state.scissor.enabled)
radeonRecalcScissorRects( rmesa );
}
diff --git a/src/mesa/drivers/dri/radeon/radeon_subset_tex.c b/src/mesa/drivers/dri/radeon/radeon_subset_tex.c
index 2afdb4e11d..ce94aa1fd7 100644
--- a/src/mesa/drivers/dri/radeon/radeon_subset_tex.c
+++ b/src/mesa/drivers/dri/radeon/radeon_subset_tex.c
@@ -96,8 +96,6 @@ void radeonDestroyTexObj( radeonContextPtr rmesa, radeonTexObjPtr t )
*/
static void radeonSwapOutTexObj( radeonContextPtr rmesa, radeonTexObjPtr t )
{
- fprintf(stderr, "%s memblock: %p\n", __FUNCTION__, t->memBlock);
-
if ( t->memBlock ) {
mmFreeMem( t->memBlock );
t->memBlock = NULL;
diff --git a/src/miniglx/dri_util.c b/src/miniglx/dri_util.c
index 9d126bd030..ba1d619d9f 100644
--- a/src/miniglx/dri_util.c
+++ b/src/miniglx/dri_util.c
@@ -288,8 +288,6 @@ void __driUtilUpdateDrawableInfo(__DRIdrawablePrivate *pdp)
pdp->numClipRects = psp->pSAREA->drawableTable[pdp->index].flags ? 1 : 0;
pdp->lastStamp = *(pdp->pStamp);
-
- fprintf(stderr, "%s: %d cliprects\n", __FUNCTION__, pdp->numClipRects);
}
@@ -416,10 +414,6 @@ static void *driCreateDrawable(Display *dpy, int scrn,
pdraw->swapBuffers = driSwapBuffers; /* called by glXSwapBuffers() */
pdp->swapBuffers = psp->DriverAPI.SwapBuffers;
- fprintf(stderr, "%s index: %d stamp: %d\n",
- __FUNCTION__, pdp->index,
- psp->pSAREA->drawableTable[pdp->index].stamp);
-
pdp->pStamp = &(psp->pSAREA->drawableTable[pdp->index].stamp);
__driUtilUpdateDrawableInfo( pdp );
return (void *) pdp;