diff options
author | Keith Whitwell <[email protected]> | 2001-11-19 13:50:35 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2001-11-19 13:50:35 +0000 |
commit | 917e942fe24841dd680319cef9a05232667624a0 (patch) | |
tree | eb43c34aaec14ccfd8460a521b3f57b313ddaaba /src/mesa/x86/3dnow.c | |
parent | f427427ca856121ffbbc9108adc8f8c20d377160 (diff) |
3dnow normalize_normals function isn't working - disable it.
Diffstat (limited to 'src/mesa/x86/3dnow.c')
-rw-r--r-- | src/mesa/x86/3dnow.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesa/x86/3dnow.c b/src/mesa/x86/3dnow.c index 37346a8b7b3..27e2af1bc92 100644 --- a/src/mesa/x86/3dnow.c +++ b/src/mesa/x86/3dnow.c @@ -1,4 +1,4 @@ -/* $Id: 3dnow.c,v 1.19 2001/03/30 14:44:43 gareth Exp $ */ +/* $Id: 3dnow.c,v 1.19.2.1 2001/11/19 13:50:35 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -80,7 +80,9 @@ void _mesa_init_3dnow_transform_asm( void ) ASSIGN_XFORM_GROUP( 3dnow, 3 ); ASSIGN_XFORM_GROUP( 3dnow, 4 ); - ASSIGN_NORM_GROUP( 3dnow ); +/* Normalize function is broken - see demos/morph3d for example. + */ +/* ASSIGN_NORM_GROUP( 3dnow ); */ #ifdef DEBUG _math_test_all_transform_functions( "3DNow!" ); |