summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-10-07 17:18:51 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-10-07 17:18:51 +0000
commit81a22ef53953d950052c7bd5a282e96107a25f24 (patch)
treef796e10cc70086d457463ba88b8f424f5f1542bc
parentf2802c40fff686301a7ff99f0a0b1c57d5cf5625 (diff)
MATH_DEBUG changes from bug #4468.
-rw-r--r--configs/linux-debug2
-rw-r--r--configs/linux-x86-64-debug2
-rw-r--r--configs/linux-x86-debug2
-rw-r--r--src/mesa/math/m_debug_clip.c4
-rw-r--r--src/mesa/math/m_debug_norm.c5
-rw-r--r--src/mesa/math/m_debug_util.h4
-rw-r--r--src/mesa/math/m_debug_xform.c4
-rw-r--r--src/mesa/math/m_xform.c4
-rw-r--r--src/mesa/x86/3dnow.c6
-rw-r--r--src/mesa/x86/sse.c4
-rw-r--r--src/mesa/x86/x86.c6
11 files changed, 21 insertions, 22 deletions
diff --git a/configs/linux-debug b/configs/linux-debug
index ff4d1c33b5..d5c93597b2 100644
--- a/configs/linux-debug
+++ b/configs/linux-debug
@@ -5,4 +5,4 @@ include $(TOP)/configs/linux
CONFIG_NAME = linux-debug
OPT_FLAGS = -g
-DEFINES += -DDEBUG -DMESA_DEBUG -DRUN_DEBUG_BENCHMARK
+DEFINES += -DDEBUG -DMESA_DEBUG -DDEBUG_MATH
diff --git a/configs/linux-x86-64-debug b/configs/linux-x86-64-debug
index bbdaec8014..d16f48790c 100644
--- a/configs/linux-x86-64-debug
+++ b/configs/linux-x86-64-debug
@@ -4,4 +4,4 @@ include $(TOP)/configs/linux-x86-64
CONFIG_NAME = linux-x86-64-debug
-DEFINES += -DDEBUG -DMESA_DEBUG -DRUN_DEBUG_BENCHMARK
+DEFINES += -DDEBUG -DMESA_DEBUG -DDEBUG_MATH
diff --git a/configs/linux-x86-debug b/configs/linux-x86-debug
index dbb970300e..874d76fd88 100644
--- a/configs/linux-x86-debug
+++ b/configs/linux-x86-debug
@@ -6,4 +6,4 @@ include $(TOP)/configs/linux-x86
CONFIG_NAME = linux-x86-debug
OPT_FLAGS = -g
-DEFINES += -DDEBUG -DMESA_DEBUG -DRUN_DEBUG_BENCHMARK
+DEFINES += -DDEBUG -DMESA_DEBUG -DDEBUG_MATH
diff --git a/src/mesa/math/m_debug_clip.c b/src/mesa/math/m_debug_clip.c
index ae8108b88a..334f3ef030 100644
--- a/src/mesa/math/m_debug_clip.c
+++ b/src/mesa/math/m_debug_clip.c
@@ -41,7 +41,7 @@
static char dummy;
#endif
-#ifdef DEBUG /* This code only used for debugging */
+#ifdef DEBUG_MATH /* This code only used for debugging */
static clip_func *clip_tab[2] = {
_mesa_clip_tab,
@@ -368,4 +368,4 @@ void _math_test_all_cliptest_functions( char *description )
}
-#endif /* DEBUG */
+#endif /* DEBUG_MATH */
diff --git a/src/mesa/math/m_debug_norm.c b/src/mesa/math/m_debug_norm.c
index 9bb4659815..11cae6bba7 100644
--- a/src/mesa/math/m_debug_norm.c
+++ b/src/mesa/math/m_debug_norm.c
@@ -43,7 +43,7 @@
static char dummy;
#endif
-#ifdef DEBUG /* This code only used for debugging */
+#ifdef DEBUG_MATH /* This code only used for debugging */
static int m_norm_identity[16] = {
@@ -375,10 +375,9 @@ void _math_test_all_normal_transform_functions( char *description )
#ifdef RUN_DEBUG_BENCHMARK
if ( mesa_profile ) {
_mesa_printf( "\n" );
- fflush( stdout );
}
#endif
}
-#endif /* DEBUG */
+#endif /* DEBUG_MATH */
diff --git a/src/mesa/math/m_debug_util.h b/src/mesa/math/m_debug_util.h
index 1b7d742a80..f7ce4679b6 100644
--- a/src/mesa/math/m_debug_util.h
+++ b/src/mesa/math/m_debug_util.h
@@ -29,7 +29,7 @@
#define __M_DEBUG_UTIL_H__
-#ifdef DEBUG /* This code only used for debugging */
+#ifdef DEBUG_MATH /* This code only used for debugging */
/* Comment this out to deactivate the cycle counter.
@@ -315,6 +315,6 @@ enum { NIL = 0, ONE = 1, NEG = -1, VAR = 2 };
#endif
-#endif /* DEBUG */
+#endif /* DEBUG_MATH */
#endif /* __M_DEBUG_UTIL_H__ */
diff --git a/src/mesa/math/m_debug_xform.c b/src/mesa/math/m_debug_xform.c
index feed539eac..2af837cf64 100644
--- a/src/mesa/math/m_debug_xform.c
+++ b/src/mesa/math/m_debug_xform.c
@@ -42,7 +42,7 @@
static char dummy;
#endif
-#ifdef DEBUG /* This code only used for debugging */
+#ifdef DEBUG_MATH /* This code only used for debugging */
/* Overhead of profiling counter in cycles. Automatically adjusted to
@@ -335,4 +335,4 @@ void _math_test_all_transform_functions( char *description )
}
-#endif /* DEBUG */
+#endif /* DEBUG_MATH */
diff --git a/src/mesa/math/m_xform.c b/src/mesa/math/m_xform.c
index 5366e34989..fa3f57a8e5 100644
--- a/src/mesa/math/m_xform.c
+++ b/src/mesa/math/m_xform.c
@@ -43,7 +43,7 @@
#include "mathmod.h"
-#ifdef DEBUG
+#ifdef DEBUG_MATH
#include "m_debug.h"
#endif
@@ -204,7 +204,7 @@ _math_init_transformation( void )
init_copy0();
init_dotprod();
-#ifdef DEBUG
+#ifdef DEBUG_MATH
_math_test_all_transform_functions( "default" );
_math_test_all_normal_transform_functions( "default" );
_math_test_all_cliptest_functions( "default" );
diff --git a/src/mesa/x86/3dnow.c b/src/mesa/x86/3dnow.c
index c0a4e7a175..032aa661f4 100644
--- a/src/mesa/x86/3dnow.c
+++ b/src/mesa/x86/3dnow.c
@@ -1,4 +1,4 @@
-/* $Id: 3dnow.c,v 1.23 2003/03/29 16:38:37 brianp Exp $ */
+/* $Id: 3dnow.c,v 1.24 2005/10/07 17:18:52 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -37,7 +37,7 @@
#include "3dnow.h"
#include "common_x86_macros.h"
-#ifdef DEBUG
+#ifdef DEBUG_MATH
#include "math/m_debug.h"
#endif
@@ -84,7 +84,7 @@ void _mesa_init_3dnow_transform_asm( void )
ASSIGN_NORM_GROUP( 3dnow );
*/
-#ifdef DEBUG
+#ifdef DEBUG_MATH
_math_test_all_transform_functions( "3DNow!" );
_math_test_all_normal_transform_functions( "3DNow!" );
#endif
diff --git a/src/mesa/x86/sse.c b/src/mesa/x86/sse.c
index 45852c4e1c..4b016a1e85 100644
--- a/src/mesa/x86/sse.c
+++ b/src/mesa/x86/sse.c
@@ -35,7 +35,7 @@
#include "sse.h"
#include "common_x86_macros.h"
-#ifdef DEBUG
+#ifdef DEBUG_MATH
#include "math/m_debug.h"
#endif
@@ -114,7 +114,7 @@ void _mesa_init_sse_transform_asm( void )
ASSIGN_NORM_GROUP( sse );
#endif
-#ifdef DEBUG
+#ifdef DEBUG_MATH
_math_test_all_transform_functions( "SSE" );
_math_test_all_normal_transform_functions( "SSE" );
#endif
diff --git a/src/mesa/x86/x86.c b/src/mesa/x86/x86.c
index 16586b9727..6b74e9e375 100644
--- a/src/mesa/x86/x86.c
+++ b/src/mesa/x86/x86.c
@@ -1,4 +1,4 @@
-/* $Id: x86.c,v 1.25 2002/04/09 14:58:03 keithw Exp $ */
+/* $Id: x86.c,v 1.26 2005/10/07 17:18:52 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -36,7 +36,7 @@
#include "x86.h"
#include "common_x86_macros.h"
-#ifdef DEBUG
+#ifdef DEBUG_MATH
#include "math/m_debug.h"
#endif
@@ -87,7 +87,7 @@ void _mesa_init_x86_transform_asm( void )
_mesa_clip_tab[4] = _mesa_x86_cliptest_points4;
_mesa_clip_np_tab[4] = _mesa_x86_cliptest_points4_np;
-#ifdef DEBUG
+#ifdef DEBUG_MATH
_math_test_all_transform_functions( "x86" );
_math_test_all_cliptest_functions( "x86" );
#endif