diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2008-10-23 10:26:19 +0200 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2008-10-23 10:26:19 +0200 |
commit | 86099bcd9cbd08e585dd3d70e7d577eef42464be (patch) | |
tree | 7dfb90e03dfccc622903c63480b402d1e40b5741 | |
parent | 0ac99457811eb766e9bdd3903857b5c0fdef7694 (diff) |
gallium: Fix typo, PPC_FEATURE_HAS_ALTIVEC not PPC_FEATURES_...
-rw-r--r-- | src/mesa/ppc/common_ppc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/ppc/common_ppc.c b/src/mesa/ppc/common_ppc.c index 786e1817ac..c7cec96e5d 100644 --- a/src/mesa/ppc/common_ppc.c +++ b/src/mesa/ppc/common_ppc.c @@ -85,7 +85,7 @@ void _mesa_init_all_ppc_transform_asm( void ) } # ifndef USE_VMX_ASM - _mesa_ppc_cpu_features &= ~PPC_FEATURES_HAS_ALTIVEC; + _mesa_ppc_cpu_features &= ~PPC_FEATURE_HAS_ALTIVEC; # endif #endif } |