diff options
author | Brian Paul <[email protected]> | 2001-03-03 20:33:27 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-03-03 20:33:27 +0000 |
commit | 08836341788a9f9d638d9dc8328510ccd18ddeb5 (patch) | |
tree | 6bd480b7f5f595c63914b1d39727d70a0f954723 /src/mesa/main/feedback.h | |
parent | 19bbfc62638b60dd1a41e84686f24483adea5b03 (diff) |
lots of gl_*() to _mesa_*() namespace clean-up
Diffstat (limited to 'src/mesa/main/feedback.h')
-rw-r--r-- | src/mesa/main/feedback.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/feedback.h b/src/mesa/main/feedback.h index bc4c7ae207b..be2dd9a75f5 100644 --- a/src/mesa/main/feedback.h +++ b/src/mesa/main/feedback.h @@ -1,4 +1,4 @@ -/* $Id: feedback.h,v 1.5 2000/11/22 07:32:17 joukj Exp $ */ +/* $Id: feedback.h,v 1.6 2001/03/03 20:33:27 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -39,14 +39,14 @@ CTX->Feedback.Count++; -extern void gl_feedback_vertex( GLcontext *ctx, +extern void _mesa_feedback_vertex( GLcontext *ctx, const GLfloat win[4], const GLfloat color[4], GLuint index, const GLfloat texcoord[4] ); -extern void gl_update_hitflag( GLcontext *ctx, GLfloat z ); +extern void _mesa_update_hitflag( GLcontext *ctx, GLfloat z ); extern void |