diff options
author | Gareth Hughes <gareth@valinux.com> | 2001-02-03 08:41:03 +0000 |
---|---|---|
committer | Gareth Hughes <gareth@valinux.com> | 2001-02-03 08:41:03 +0000 |
commit | fe69cb4b9bff800b6078ea7da5ea18bab05678d8 (patch) | |
tree | 84f7fdddaae6b3c8be1f78ffdd9e3f7ccaa4958f /src/mesa/x86 | |
parent | 6d689e8a69cdd89db181691f5bc21b71518398b0 (diff) |
Some more work on interal debugging, timing routines for things that
will have implementations in assembly code. To come: texture image
conversions, more of internal T&L pipeline and so on.
Diffstat (limited to 'src/mesa/x86')
-rw-r--r-- | src/mesa/x86/3dnow.c | 10 | ||||
-rw-r--r-- | src/mesa/x86/x86.c | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/src/mesa/x86/3dnow.c b/src/mesa/x86/3dnow.c index b1777ae49d..b81c0eef0f 100644 --- a/src/mesa/x86/3dnow.c +++ b/src/mesa/x86/3dnow.c @@ -1,4 +1,4 @@ -/* $Id: 3dnow.c,v 1.13 2000/12/27 19:57:37 keithw Exp $ */ +/* $Id: 3dnow.c,v 1.14 2001/02/03 08:41:03 gareth Exp $ */ /* * Mesa 3-D graphics library @@ -40,7 +40,7 @@ #include "tnl/t_context.h" #ifdef DEBUG -#include "math/m_debug_xform.h" +#include "math/m_debug.h" #endif @@ -168,8 +168,8 @@ void gl_init_3dnow_transform_asm( void ) /* ASSIGN_NORM_GROUP( 3dnow, CULL_MASK_ACTIVE, masked ); */ #ifdef DEBUG - gl_test_all_transform_functions( "3DNow!" ); - gl_test_all_normal_transform_functions( "3DNow!" ); + _math_test_all_transform_functions( "3DNow!" ); + _math_test_all_normal_transform_functions( "3DNow!" ); #endif #endif } @@ -182,7 +182,7 @@ void gl_init_3dnow_vertex_asm( void ) gl_project_clipped_v16 = gl_3dnow_project_clipped_vertices; #ifdef DEBUG_NOT - gl_test_all_vertex_functions( "3DNow!" ); + _math_test_all_vertex_functions( "3DNow!" ); #endif #endif } diff --git a/src/mesa/x86/x86.c b/src/mesa/x86/x86.c index b49965f6b3..1c2539d959 100644 --- a/src/mesa/x86/x86.c +++ b/src/mesa/x86/x86.c @@ -1,4 +1,4 @@ -/* $Id: x86.c,v 1.15 2001/01/13 05:48:25 keithw Exp $ */ +/* $Id: x86.c,v 1.16 2001/02/03 08:41:03 gareth Exp $ */ /* * Mesa 3-D graphics library @@ -39,7 +39,7 @@ #include "tnl/t_context.h" #ifdef DEBUG -#include "math/m_debug_xform.h" +#include "math/m_debug.h" #endif @@ -131,7 +131,7 @@ void gl_init_x86_transform_asm( void ) gl_clip_np_tab[4] = gl_x86_cliptest_points4_np; #ifdef DEBUG - gl_test_all_transform_functions( "x86" ); + _math_test_all_transform_functions( "x86" ); #endif #endif } @@ -142,8 +142,8 @@ void gl_init_x86_vertex_asm( void ) gl_xform_points3_v16_general = gl_v16_x86_general_xform; gl_cliptest_points4_v16 = gl_v16_x86_cliptest_points4; -#ifdef DEBUG_NOT - gl_test_all_vertex_functions( "x86" ); +#ifdef DEBUG + _math_test_all_vertex_functions( "x86" ); #endif #endif } |