summaryrefslogtreecommitdiff
path: root/src/mesa/math/m_clip_tmp.h
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_clip_tmp.h
parent08836341788a9f9d638d9dc8328510ccd18ddeb5 (diff)
more namespace clean-ups
Diffstat (limited to 'src/mesa/math/m_clip_tmp.h')
-rw-r--r--src/mesa/math/m_clip_tmp.h14
1 files changed, 7 insertions, 7 deletions
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);
}