From: Alan Hourihane Date: Thu, 4 Dec 2003 23:24:12 +0000 (+0000) Subject: disable some DEBUG X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0cbb006942560788b70a9706694f53f3f034e8ee;p=mesa.git disable some DEBUG --- diff --git a/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c b/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c index fc55b89b030..654d24cc4ec 100644 --- a/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c +++ b/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c @@ -36,7 +36,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include "glheader.h" #include "imports.h" #include "mtypes.h" -#include "mmath.h" #include "macros.h" #include "swrast_setup/swrast_setup.h" @@ -422,8 +421,10 @@ void radeonEmitArrays( GLcontext *ctx, GLuint inputs ) GLuint count = VB->Count; GLuint vtx; +#if 0 if (RADEON_DEBUG & DEBUG_VERTS) _tnl_print_vert_flags( __FUNCTION__, inputs ); +#endif if (1) { if (!rmesa->tcl.obj.buf) @@ -568,8 +569,10 @@ void radeonReleaseArrays( GLcontext *ctx, GLuint newinputs ) { radeonContextPtr rmesa = RADEON_CONTEXT( ctx ); +#if 0 if (RADEON_DEBUG & DEBUG_VERTS) _tnl_print_vert_flags( __FUNCTION__, newinputs ); +#endif if (newinputs & VERT_BIT_POS) radeonReleaseDmaRegion( rmesa, &rmesa->tcl.obj, __FUNCTION__ ); diff --git a/src/mesa/drivers/dri/radeon/radeon_maos_verts.c b/src/mesa/drivers/dri/radeon/radeon_maos_verts.c index 5e63e6e880f..233d4915749 100644 --- a/src/mesa/drivers/dri/radeon/radeon_maos_verts.c +++ b/src/mesa/drivers/dri/radeon/radeon_maos_verts.c @@ -361,8 +361,10 @@ void radeonReleaseArrays( GLcontext *ctx, GLuint newinputs ) { radeonContextPtr rmesa = RADEON_CONTEXT( ctx ); +#if 0 if (RADEON_DEBUG & DEBUG_VERTS) _tnl_print_vert_flags( __FUNCTION__, newinputs ); +#endif if (newinputs) radeonReleaseDmaRegion( rmesa, &rmesa->tcl.indexed_verts, __FUNCTION__ );