diff options
Diffstat (limited to 'src/mesa/main/eval.h')
-rw-r--r-- | src/mesa/main/eval.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mesa/main/eval.h b/src/mesa/main/eval.h index 096623752e1..8db01370a67 100644 --- a/src/mesa/main/eval.h +++ b/src/mesa/main/eval.h @@ -1,4 +1,4 @@ -/* $Id: eval.h,v 1.4 2000/11/22 07:32:16 joukj Exp $ */ +/* $Id: eval.h,v 1.5 2001/03/03 20:33:27 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -32,7 +32,7 @@ #include "mtypes.h" -extern void gl_init_eval( void ); +extern void _mesa_init_eval( void ); extern GLuint _mesa_evaluator_components( GLenum target ); @@ -42,20 +42,20 @@ extern void gl_free_control_points( GLcontext *ctx, GLenum target, GLfloat *data ); -extern GLfloat *gl_copy_map_points1f( GLenum target, +extern GLfloat *_mesa_copy_map_points1f( GLenum target, GLint ustride, GLint uorder, const GLfloat *points ); -extern GLfloat *gl_copy_map_points1d( GLenum target, +extern GLfloat *_mesa_copy_map_points1d( GLenum target, GLint ustride, GLint uorder, const GLdouble *points ); -extern GLfloat *gl_copy_map_points2f( GLenum target, +extern GLfloat *_mesa_copy_map_points2f( GLenum target, GLint ustride, GLint uorder, GLint vstride, GLint vorder, const GLfloat *points ); -extern GLfloat *gl_copy_map_points2d(GLenum target, +extern GLfloat *_mesa_copy_map_points2d(GLenum target, GLint ustride, GLint uorder, GLint vstride, GLint vorder, const GLdouble *points ); |