summaryrefslogtreecommitdiff
path: root/src/mesa/x86
diff options
context:
space:
mode:
authorGareth Hughes <gareth@valinux.com>2000-11-19 02:18:33 +0000
committerGareth Hughes <gareth@valinux.com>2000-11-19 02:18:33 +0000
commit54d7a7453250fa3d5d9e0d8d8bcab21a6216cbfb (patch)
treed0af25d17b5f49076f3bf39942fcf08144b26fb3 /src/mesa/x86
parenta13fab59ae03ebafefe78bfd5ecb758261cce988 (diff)
- Fix tnl/t_context.h inclusion.
- Some SSE asm updates, more to come.
Diffstat (limited to 'src/mesa/x86')
-rw-r--r--src/mesa/x86/3dnow.c8
-rw-r--r--src/mesa/x86/x86.c10
2 files changed, 10 insertions, 8 deletions
diff --git a/src/mesa/x86/3dnow.c b/src/mesa/x86/3dnow.c
index 65f1753a46..35c3437240 100644
--- a/src/mesa/x86/3dnow.c
+++ b/src/mesa/x86/3dnow.c
@@ -1,4 +1,4 @@
-/* $Id: 3dnow.c,v 1.10 2000/11/18 08:10:23 jtaylor Exp $ */
+/* $Id: 3dnow.c,v 1.11 2000/11/19 02:18:33 gareth Exp $ */
/*
* Mesa 3-D graphics library
@@ -34,11 +34,11 @@
#include "types.h"
#include "3dnow.h"
-#include "../tnl/t_context.h"
-
#include "math/m_vertices.h"
#include "math/m_xform.h"
+#include "tnl/t_context.h"
+
#ifdef DEBUG
#include "math/m_debug_xform.h"
#endif
@@ -181,7 +181,7 @@ void gl_init_3dnow_vertex_asm( void )
gl_project_v16 = gl_3dnow_project_vertices;
gl_project_clipped_v16 = gl_3dnow_project_clipped_vertices;
-#if 0
+#ifdef DEBUG_NOT
gl_test_all_vertex_functions( "3DNow!" );
#endif
#endif
diff --git a/src/mesa/x86/x86.c b/src/mesa/x86/x86.c
index e71d752990..cdde1c018c 100644
--- a/src/mesa/x86/x86.c
+++ b/src/mesa/x86/x86.c
@@ -1,4 +1,4 @@
-/* $Id: x86.c,v 1.11 2000/11/18 08:10:23 jtaylor Exp $ */
+/* $Id: x86.c,v 1.12 2000/11/19 02:18:33 gareth Exp $ */
/*
* Mesa 3-D graphics library
@@ -31,10 +31,12 @@
#include "glheader.h"
#include "context.h"
#include "types.h"
+#include "x86.h"
+
#include "math/m_vertices.h"
#include "math/m_xform.h"
-#include "../tnl/t_context.h"
-#include "x86.h"
+
+#include "tnl/t_context.h"
#ifdef DEBUG
#include "math/m_debug_xform.h"
@@ -132,7 +134,7 @@ 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;
-#if 0
+#ifdef DEBUG_NOT
gl_test_all_vertex_functions( "x86" );
#endif
#endif