From 188f2949eaf181f4aab041a6dad26fa76e746eee Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Sat, 3 Mar 2001 20:56:59 +0000 Subject: more namespace clean-ups --- src/mesa/math/m_clip_tmp.h | 14 +++++++------- src/mesa/math/m_debug_norm.c | 6 +++--- src/mesa/math/m_dotprod_tmp.h | 8 ++++---- src/mesa/math/m_norm_tmp.h | 18 +++++++++--------- src/mesa/math/m_xform.c | 10 +++++----- src/mesa/math/m_xform.h | 10 +++++----- 6 files changed, 33 insertions(+), 33 deletions(-) (limited to 'src/mesa/math') diff --git a/src/mesa/math/m_clip_tmp.h b/src/mesa/math/m_clip_tmp.h index 62c7e37ae9..9c97f97de0 100644 --- a/src/mesa/math/m_clip_tmp.h +++ b/src/mesa/math/m_clip_tmp.h @@ -1,4 +1,4 @@ -/* $Id: m_clip_tmp.h,v 1.4 2001/03/03 20:33:30 brianp Exp $ */ +/* $Id: m_clip_tmp.h,v 1.5 2001/03/03 20:57:00 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -219,11 +219,11 @@ static GLvector4f * _XFORMAPI TAG(cliptest_points2)( GLvector4f *clip_vec, static void TAG(init_c_cliptest)( void ) { - gl_clip_tab[4] = TAG(cliptest_points4); - gl_clip_tab[3] = TAG(cliptest_points3); - gl_clip_tab[2] = TAG(cliptest_points2); + _mesa_clip_tab[4] = TAG(cliptest_points4); + _mesa_clip_tab[3] = TAG(cliptest_points3); + _mesa_clip_tab[2] = TAG(cliptest_points2); - gl_clip_np_tab[4] = TAG(cliptest_np_points4); - gl_clip_np_tab[3] = TAG(cliptest_points3); - gl_clip_np_tab[2] = TAG(cliptest_points2); + _mesa_clip_np_tab[4] = TAG(cliptest_np_points4); + _mesa_clip_np_tab[3] = TAG(cliptest_points3); + _mesa_clip_np_tab[2] = TAG(cliptest_points2); } 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 ); } diff --git a/src/mesa/math/m_dotprod_tmp.h b/src/mesa/math/m_dotprod_tmp.h index 4bd875c681..88a9b37fa5 100644 --- a/src/mesa/math/m_dotprod_tmp.h +++ b/src/mesa/math/m_dotprod_tmp.h @@ -1,4 +1,4 @@ -/* $Id: m_dotprod_tmp.h,v 1.2 2000/12/26 05:09:31 keithw Exp $ */ +/* $Id: m_dotprod_tmp.h,v 1.3 2001/03/03 20:57:00 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -112,7 +112,7 @@ static void TAG(dotprod_vec4)( GLfloat *out, static void TAG(init_dotprod)( void ) { - gl_dotprod_tab[IDX&1][2] = TAG(dotprod_vec2); - gl_dotprod_tab[IDX&1][3] = TAG(dotprod_vec3); - gl_dotprod_tab[IDX&1][4] = TAG(dotprod_vec4); + _mesa_dotprod_tab[IDX&1][2] = TAG(dotprod_vec2); + _mesa_dotprod_tab[IDX&1][3] = TAG(dotprod_vec3); + _mesa_dotprod_tab[IDX&1][4] = TAG(dotprod_vec4); } diff --git a/src/mesa/math/m_norm_tmp.h b/src/mesa/math/m_norm_tmp.h index 45111a4129..ccaa2247e8 100644 --- a/src/mesa/math/m_norm_tmp.h +++ b/src/mesa/math/m_norm_tmp.h @@ -1,4 +1,4 @@ -/* $Id: m_norm_tmp.h,v 1.3 2000/12/28 22:11:05 keithw Exp $ */ +/* $Id: m_norm_tmp.h,v 1.4 2001/03/03 20:57:00 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -387,27 +387,27 @@ TAG(rescale_normals)( const GLmatrix *mat, static void _XFORMAPI TAG(init_c_norm_transform)( void ) { - gl_normal_tab[NORM_TRANSFORM_NO_ROT][IDX] = + _mesa_normal_tab[NORM_TRANSFORM_NO_ROT][IDX] = TAG(transform_normals_no_rot); - gl_normal_tab[NORM_TRANSFORM_NO_ROT | NORM_RESCALE][IDX] = + _mesa_normal_tab[NORM_TRANSFORM_NO_ROT | NORM_RESCALE][IDX] = TAG(transform_rescale_normals_no_rot); - gl_normal_tab[NORM_TRANSFORM_NO_ROT | NORM_NORMALIZE][IDX] = + _mesa_normal_tab[NORM_TRANSFORM_NO_ROT | NORM_NORMALIZE][IDX] = TAG(transform_normalize_normals_no_rot); - gl_normal_tab[NORM_TRANSFORM][IDX] = + _mesa_normal_tab[NORM_TRANSFORM][IDX] = TAG(transform_normals); - gl_normal_tab[NORM_TRANSFORM | NORM_RESCALE][IDX] = + _mesa_normal_tab[NORM_TRANSFORM | NORM_RESCALE][IDX] = TAG(transform_rescale_normals); - gl_normal_tab[NORM_TRANSFORM | NORM_NORMALIZE][IDX] = + _mesa_normal_tab[NORM_TRANSFORM | NORM_NORMALIZE][IDX] = TAG(transform_normalize_normals); - gl_normal_tab[NORM_RESCALE][IDX] = + _mesa_normal_tab[NORM_RESCALE][IDX] = TAG(rescale_normals); - gl_normal_tab[NORM_NORMALIZE][IDX] = + _mesa_normal_tab[NORM_NORMALIZE][IDX] = TAG(normalize_normals); } diff --git a/src/mesa/math/m_xform.c b/src/mesa/math/m_xform.c index 3a677ddfe6..f896bb1e03 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.9 2001/03/03 20:33:30 brianp Exp $ */ +/* $Id: m_xform.c,v 1.10 2001/03/03 20:57:00 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -56,11 +56,11 @@ #include "X86/common_x86_asm.h" #endif -clip_func gl_clip_tab[5]; -clip_func gl_clip_np_tab[5]; -dotprod_func gl_dotprod_tab[2][5]; +clip_func _mesa_clip_tab[5]; +clip_func _mesa_clip_np_tab[5]; +dotprod_func _mesa_dotprod_tab[2][5]; vec_copy_func _mesa_copy_tab[2][0x10]; -normal_func gl_normal_tab[0xf][0x4]; +normal_func _mesa_normal_tab[0xf][0x4]; transform_func **(_mesa_transform_tab[2]); static transform_func *cull_transform_tab[5]; static transform_func *raw_transform_tab[5]; diff --git a/src/mesa/math/m_xform.h b/src/mesa/math/m_xform.h index 27496feb78..d8b019cc54 100644 --- a/src/mesa/math/m_xform.h +++ b/src/mesa/math/m_xform.h @@ -1,4 +1,4 @@ -/* $Id: m_xform.h,v 1.6 2001/03/03 20:33:30 brianp Exp $ */ +/* $Id: m_xform.h,v 1.7 2001/03/03 20:57:00 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -197,12 +197,12 @@ extern void _mesa_transform_bounds2( GLubyte *orMask, GLubyte *andMask, CONST GLfloat src[][3] ); -extern dotprod_func gl_dotprod_tab[2][5]; +extern dotprod_func _mesa_dotprod_tab[2][5]; extern vec_copy_func _mesa_copy_tab[2][0x10]; extern vec_copy_func _mesa_copy_clean_tab[2][5]; -extern clip_func gl_clip_tab[5]; -extern clip_func gl_clip_np_tab[5]; -extern normal_func gl_normal_tab[0xf][0x4]; +extern clip_func _mesa_clip_tab[5]; +extern clip_func _mesa_clip_np_tab[5]; +extern normal_func _mesa_normal_tab[0xf][0x4]; /* Use of 3 layers of linked 1-dimensional arrays to reduce * cost of lookup. -- cgit v1.2.3