diff options
author | Brian Paul <[email protected]> | 2001-03-03 20:56:59 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-03-03 20:56:59 +0000 |
commit | 188f2949eaf181f4aab041a6dad26fa76e746eee (patch) | |
tree | 19e97d88e855a8dc7de5f52b310aecf2d17d0ad0 /src/mesa/math/m_dotprod_tmp.h | |
parent | 08836341788a9f9d638d9dc8328510ccd18ddeb5 (diff) |
more namespace clean-ups
Diffstat (limited to 'src/mesa/math/m_dotprod_tmp.h')
-rw-r--r-- | src/mesa/math/m_dotprod_tmp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/math/m_dotprod_tmp.h b/src/mesa/math/m_dotprod_tmp.h index 4bd875c6813..88a9b37fa55 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); } |