- Fix tnl/t_context.h inclusion.
authorGareth Hughes <gareth@valinux.com>
Sun, 19 Nov 2000 02:18:33 +0000 (02:18 +0000)
committerGareth Hughes <gareth@valinux.com>
Sun, 19 Nov 2000 02:18:33 +0000 (02:18 +0000)
- Some SSE asm updates, more to come.

src/mesa/x86/3dnow.c
src/mesa/x86/x86.c

index 65f1753a46c833da5d80114069cdce6f619ffc02..35c343724079b4d11c761ac72ac8955a7a5da106 100644 (file)
@@ -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
 #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
index e71d752990b50ba3389f3049c9e7257e8b08564a..cdde1c018c876682be0329eaad586e6b4602ce0b 100644 (file)
@@ -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
 #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