Fix build when DEBUG is defined but DEBUG_MATH is not.

A couple places attempted to call _math_test_all_*_functions when
DEBUG was defined.  These routines only exist when DEBUG_MATH is
defined.
This commit is contained in:
Ian Romanick 2006-10-16 20:57:09 +00:00
parent 28081ae6c0
commit 8c5ae80916
2 changed files with 3 additions and 3 deletions

View file

@ -133,7 +133,7 @@ void _mesa_init_all_sparc_transform_asm(void)
_mesa_sparc_rescale_normals;
#endif
#ifdef DEBUG
#ifdef DEBUG_MATH
_math_test_all_transform_functions("sparc");
_math_test_all_cliptest_functions("sparc");
_math_test_all_normal_transform_functions("sparc");

View file

@ -1,4 +1,4 @@
/* $Id: x86-64.c,v 1.2 2005/09/19 20:12:33 brianp Exp $ */
/* $Id: x86-64.c,v 1.3 2006/10/16 20:57:09 idr Exp $ */
/*
* Mesa 3-D graphics library
@ -105,7 +105,7 @@ void _mesa_init_all_x86_64_transform_asm(void)
_mesa_x86_64_transform_points4_2d;
*/
#ifdef DEBUG
#ifdef DEBUG_MATH
_math_test_all_transform_functions("x86_64");
_math_test_all_cliptest_functions("x86_64");
_math_test_all_normal_transform_functions("x86_64");