summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-02-08 15:43:27 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-02-08 15:43:27 +0000
commit764b1d545536d857a663936bdd83a84605003f98 (patch)
tree82ba04d377a6d93157eb6aabbb669f3d65580e56
parentb87a9089dabaed445b88c9586fda1834f5108c7f (diff)
disable normal xform code - see bug 673938
-rw-r--r--src/mesa/sparc/sparc.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mesa/sparc/sparc.c b/src/mesa/sparc/sparc.c
index 3db0ae62b79..9285da5e322 100644
--- a/src/mesa/sparc/sparc.c
+++ b/src/mesa/sparc/sparc.c
@@ -1,10 +1,10 @@
-/* $Id: sparc.c,v 1.8 2002/07/12 16:00:57 brianp Exp $ */
+/* $Id: sparc.c,v 1.8.4.1 2003/02/08 15:43:27 brianp Exp $ */
/*
* Mesa 3-D graphics library
- * Version: 4.0.3
+ * Version: 5.0.1
*
- * Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2003 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"),
@@ -118,6 +118,8 @@ void _mesa_init_all_sparc_transform_asm(void)
_mesa_clip_tab[4] = _mesa_sparc_cliptest_points4;
_mesa_clip_np_tab[4] = _mesa_sparc_cliptest_points4_np;
#endif
+#if 0
+ /* disable these too. See bug 673938 */
_mesa_normal_tab[NORM_TRANSFORM | NORM_NORMALIZE] =
_mesa_sparc_transform_normalize_normals;
_mesa_normal_tab[NORM_TRANSFORM_NO_ROT | NORM_NORMALIZE] =
@@ -134,6 +136,7 @@ void _mesa_init_all_sparc_transform_asm(void)
_mesa_sparc_normalize_normals;
_mesa_normal_tab[NORM_RESCALE] =
_mesa_sparc_rescale_normals;
+#endif
#ifdef DEBUG
_math_test_all_transform_functions("sparc");