summaryrefslogtreecommitdiff
path: root/src/mesa/math/m_debug_norm.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-03-03 20:56:59 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-03-03 20:56:59 +0000
commit188f2949eaf181f4aab041a6dad26fa76e746eee (patch)
tree19e97d88e855a8dc7de5f52b310aecf2d17d0ad0 /src/mesa/math/m_debug_norm.c
parent08836341788a9f9d638d9dc8328510ccd18ddeb5 (diff)
more namespace clean-ups
Diffstat (limited to 'src/mesa/math/m_debug_norm.c')
-rw-r--r--src/mesa/math/m_debug_norm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/math/m_debug_norm.c b/src/mesa/math/m_debug_norm.c
index 3c37760032..55179ff01e 100644
--- a/src/mesa/math/m_debug_norm.c
+++ b/src/mesa/math/m_debug_norm.c
@@ -1,4 +1,4 @@
-/* $Id: m_debug_norm.c,v 1.2 2001/03/03 20:33:30 brianp Exp $ */
+/* $Id: m_debug_norm.c,v 1.3 2001/03/03 20:57:00 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -377,12 +377,12 @@ void _math_test_all_normal_transform_functions( char *description )
#endif
for ( mtype = 0 ; mtype < 8 ; mtype++ ) {
- normal_func func = gl_normal_tab[norm_types[mtype]][cma];
+ normal_func func = _mesa_normal_tab[norm_types[mtype]][cma];
long *cycles = &(benchmark_tab[mtype][cma]);
if ( test_norm_function( func, mtype, masked, cycles ) == 0 ) {
char buf[100];
- sprintf( buf, "gl_normal_tab[%s][%s] failed test (%s)",
+ sprintf( buf, "_mesa_normal_tab[%s][%s] failed test (%s)",
cmastring, norm_strings[mtype], description );
_mesa_problem( NULL, buf );
}