From 7943b349d696f8030f0d2f836ad42a762f4c6026 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 23 May 2001 14:27:03 +0000 Subject: SPARC assembly optimizations from David Miller. --- src/mesa/math/m_xform.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/mesa/math/m_xform.c') diff --git a/src/mesa/math/m_xform.c b/src/mesa/math/m_xform.c index 69430848be..c043b09069 100644 --- a/src/mesa/math/m_xform.c +++ b/src/mesa/math/m_xform.c @@ -1,4 +1,4 @@ -/* $Id: m_xform.c,v 1.13 2001/05/21 16:33:41 gareth Exp $ */ +/* $Id: m_xform.c,v 1.14 2001/05/23 14:27:03 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -56,6 +56,10 @@ #include "X86/common_x86_asm.h" #endif +#ifdef USE_SPARC_ASM +#include "SPARC/sparc.h" +#endif + clip_func _mesa_clip_tab[5]; clip_func _mesa_clip_np_tab[5]; dotprod_func _mesa_dotprod_tab[5]; @@ -206,6 +210,9 @@ _math_init_transformation( void ) #ifdef USE_X86_ASM _mesa_init_all_x86_transform_asm(); #endif +#ifdef USE_SPARC_ASM + _mesa_init_all_sparc_transform_asm(); +#endif } void -- cgit v1.2.3