summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGareth Hughes <gareth@valinux.com>2000-10-20 04:29:15 +0000
committerGareth Hughes <gareth@valinux.com>2000-10-20 04:29:15 +0000
commit807544498a089924d32c49d5adb3b6b0812a0417 (patch)
tree7b22355bf5eb0954265b97f1efec5687c71d40f3 /src
parent17f2610d037dbce79e57540c0747e31f46400785 (diff)
- General cleanups, fix version numbers.
- Fix INV_MATRIX in katmai_norm_raw.S - Change MOVUPS to MOVAPS where appropriate
Diffstat (limited to 'src')
-rw-r--r--src/mesa/x86/3dnow.c4
-rw-r--r--src/mesa/x86/common_x86.c21
2 files changed, 12 insertions, 13 deletions
diff --git a/src/mesa/x86/3dnow.c b/src/mesa/x86/3dnow.c
index aac5d08cd88..6a19c9171a1 100644
--- a/src/mesa/x86/3dnow.c
+++ b/src/mesa/x86/3dnow.c
@@ -1,8 +1,8 @@
-/* $Id: 3dnow.c,v 1.5.4.1 2000/09/17 21:23:11 gareth Exp $ */
+/* $Id: 3dnow.c,v 1.5.4.2 2000/10/20 04:29:15 gareth Exp $ */
/*
* Mesa 3-D graphics library
- * Version: 3.5
+ * Version: 3.4
*
* Copyright (C) 1999-2000 Brian Paul All Rights Reserved.
*
diff --git a/src/mesa/x86/common_x86.c b/src/mesa/x86/common_x86.c
index e779fe193ba..b6c1335f24c 100644
--- a/src/mesa/x86/common_x86.c
+++ b/src/mesa/x86/common_x86.c
@@ -1,21 +1,21 @@
-/* $Id: common_x86.c,v 1.6 2000/01/25 17:04:47 brianp Exp $ */
+/* $Id: common_x86.c,v 1.6.4.1 2000/10/20 04:29:15 gareth Exp $ */
/*
* Mesa 3-D graphics library
- * Version: 3.3
- *
+ * Version: 3.4
+ *
* 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"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
- *
+ *
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
- *
+ *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
@@ -67,10 +67,10 @@ void gl_init_all_x86_asm (void)
#ifdef USE_MMX_ASM
if (gl_x86_cpu_features & GL_CPU_MMX) {
char *s = getenv( "MESA_NO_MMX" );
- if (s == NULL) {
+ if (s == NULL) {
message("MMX cpu detected.");
} else {
- gl_x86_cpu_features &= (~GL_CPU_MMX);
+ gl_x86_cpu_features &= (~GL_CPU_MMX);
}
}
#endif
@@ -83,7 +83,7 @@ void gl_init_all_x86_asm (void)
message("3Dnow cpu detected.");
gl_init_3dnow_asm_transforms ();
} else {
- gl_x86_cpu_features &= (~GL_CPU_3Dnow);
+ gl_x86_cpu_features &= (~GL_CPU_3Dnow);
}
}
#endif
@@ -96,11 +96,10 @@ void gl_init_all_x86_asm (void)
message("Katmai cpu detected.");
gl_init_katmai_asm_transforms ();
} else {
- gl_x86_cpu_features &= (~GL_CPU_Katmai);
+ gl_x86_cpu_features &= (~GL_CPU_Katmai);
}
}
#endif
#endif
}
-