added dummy function to silence compiler warning
authorBrian Paul <brian.paul@tungstengraphics.com>
Wed, 14 Jun 2000 21:55:11 +0000 (21:55 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Wed, 14 Jun 2000 21:55:11 +0000 (21:55 +0000)
src/mesa/drivers/svga/svgamesa15.c
src/mesa/drivers/svga/svgamesa16.c
src/mesa/drivers/svga/svgamesa24.c
src/mesa/drivers/svga/svgamesa32.c
src/mesa/drivers/svga/svgamesa8.c
src/mesa/x86/3dnow.c

index cb73a8567949637b28acac1db81b2e8b9ea709e1..28cd7a42642a03b82ce952162319fa7cfecaa190 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: svgamesa15.c,v 1.5 2000/01/31 22:10:06 tanner Exp $ */
+/* $Id: svgamesa15.c,v 1.6 2000/06/14 21:59:07 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -198,4 +198,14 @@ void __read_rgba_pixels15( const GLcontext *ctx,
    }
 }
 
+#else
+
+
+/* silence compiler warning */
+extern void _mesa_svga15_dummy_function(void);
+void _mesa_svga15_dummy_function(void)
+{
+}
+
+
 #endif
index 6057d7d732049159f0c4ba32c26a96f5a9092e71..817d4bb606de58f1a032137e562c3e6eae7834f3 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: svgamesa16.c,v 1.5 2000/01/31 22:10:06 tanner Exp $ */
+/* $Id: svgamesa16.c,v 1.6 2000/06/14 21:59:07 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -200,4 +200,14 @@ void __read_rgba_pixels16( const GLcontext *ctx,
    }
 }
 
+#else
+
+
+/* silence compiler warning */
+extern void _mesa_svga16_dummy_function(void);
+void _mesa_svga16_dummy_function(void)
+{
+}
+
+
 #endif
index f8b29faaddc16b0f7b34d856262a0b038d551661..6f7cc9c2214017ef6d4af86424bf4c90a0a57630 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: svgamesa24.c,v 1.6 2000/01/31 22:10:07 tanner Exp $ */
+/* $Id: svgamesa24.c,v 1.7 2000/06/14 21:59:07 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -233,4 +233,14 @@ void __read_rgba_pixels24( const GLcontext *ctx,
    }
 }
 
+#else
+
+
+/* silence compiler warning */
+extern void _mesa_svga24_dummy_function(void);
+void _mesa_svga24_dummy_function(void)
+{
+}
+
+
 #endif
index 46e8c684cab2802afcb5768378f0a7c7e9b60186..1fbef3d26d15facbab4db167a9554dda37164fa6 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: svgamesa32.c,v 1.6 2000/01/31 22:10:07 tanner Exp $ */
+/* $Id: svgamesa32.c,v 1.7 2000/06/14 21:59:07 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -206,5 +206,16 @@ void __read_rgba_pixels32( const GLcontext *ctx,
    }
 }
 
+
+#else
+
+
+/* silence compiler warning */
+extern void _mesa_svga32_dummy_function(void);
+void _mesa_svga32_dummy_function(void)
+{
+}
+
+
 #endif
 
index 99ea05e7129a9c893d4ad199182e17b72c910cf1..2578428178f3f88fa05c982a2fe94a5e2b6b6312 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: svgamesa8.c,v 1.5 2000/01/31 22:10:07 tanner Exp $ */
+/* $Id: svgamesa8.c,v 1.6 2000/06/14 21:59:07 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -176,4 +176,14 @@ void __read_ci32_pixels8( const GLcontext *ctx,
 }
 
 
+#else
+
+
+/* silence compiler warning */
+extern void _mesa_svga8_dummy_function(void);
+void _mesa_svga8_dummy_function(void)
+{
+}
+
+
 #endif
index a32815bf6252ee970dc7de18b558e5085f486d27..f61e369edc2ff7ab693ee0f5e3fe61678a4ae351 100644 (file)
@@ -1,10 +1,10 @@
-/* $Id: 3dnow.c,v 1.3 1999/11/12 04:57:22 kendallb Exp $ */
+/* $Id: 3dnow.c,v 1.4 2000/06/14 21:55:11 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
- * Version:  3.1
+ * Version:  3.3
  * 
- * Copyright (C) 1999  Brian Paul   All Rights Reserved.
+ * Copyright (C) 1999-2000  Brian Paul   All Rights Reserved.
  * 
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),
@@ -186,4 +186,13 @@ void gl_init_3dnow_asm_transforms (void)
    gl_project_clipped_v16 = gl_3dnow_project_clipped_vertices;
 } 
 
+#else
+
+
+/* silence compiler warning */
+extern void _mesa_3dnow_dummy_function(void);
+void _mesa_3dnow_dummy_function(void)
+{
+}
+
 #endif