diff options
author | Brian Paul <[email protected]> | 2001-03-03 21:11:32 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-03-03 21:11:32 +0000 |
commit | 865322f931197c5c73c57b366b64300894565dab (patch) | |
tree | 67cddee5843e070dbb0bdf5024bf15a532e57edc /src/mesa/x86/common_x86_features.h | |
parent | d62269757b3e40e4ddae54cc8bf0cc0e1d5d1eae (diff) |
more clean-ups
Diffstat (limited to 'src/mesa/x86/common_x86_features.h')
-rw-r--r-- | src/mesa/x86/common_x86_features.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/x86/common_x86_features.h b/src/mesa/x86/common_x86_features.h index 2f575c8bfe0..f8c7b2ab7bd 100644 --- a/src/mesa/x86/common_x86_features.h +++ b/src/mesa/x86/common_x86_features.h @@ -1,4 +1,4 @@ -/* $Id: common_x86_features.h,v 1.2 2000/10/23 00:16:28 gareth Exp $ */ +/* $Id: common_x86_features.h,v 1.3 2001/03/03 21:11:32 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -26,7 +26,7 @@ /* * x86 CPUID feature information. The raw data is returned by - * gl_identify_x86_cpu_features() and interpreted with the cpu_has_* + * _mesa_identify_x86_cpu_features() and interpreted with the cpu_has_* * helper macros. * * Gareth Hughes <[email protected]> @@ -70,8 +70,8 @@ #define X86_FEATURE_3DNOWEXT 0x40000000 #define X86_FEATURE_3DNOW 0x80000000 -#define cpu_has_mmx (gl_x86_cpu_features & X86_FEATURE_MMX) -#define cpu_has_xmm (gl_x86_cpu_features & X86_FEATURE_XMM) -#define cpu_has_3dnow (gl_x86_cpu_features & X86_FEATURE_3DNOW) +#define cpu_has_mmx (_mesa_x86_cpu_features & X86_FEATURE_MMX) +#define cpu_has_xmm (_mesa_x86_cpu_features & X86_FEATURE_XMM) +#define cpu_has_3dnow (_mesa_x86_cpu_features & X86_FEATURE_3DNOW) #endif |