diff options
author | Brian Paul <[email protected]> | 2000-02-02 21:52:26 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-02-02 21:52:26 +0000 |
commit | 8427d93449b69a3f6918ad43b4d7dc3083b29b3d (patch) | |
tree | 04248e6d176708535bf5a34232b3632fa97269cb /src/mesa/main/accum.c | |
parent | 8460cc9bf9e3e6f237add35c1a635f137e57c184 (diff) |
changed prefix to _mesa_ for a few accum functions
Diffstat (limited to 'src/mesa/main/accum.c')
-rw-r--r-- | src/mesa/main/accum.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/mesa/main/accum.c b/src/mesa/main/accum.c index e6b556b0fce..b052c74d0f5 100644 --- a/src/mesa/main/accum.c +++ b/src/mesa/main/accum.c @@ -1,4 +1,4 @@ -/* $Id: accum.c,v 1.14 2000/02/02 19:17:57 brianp Exp $ */ +/* $Id: accum.c,v 1.15 2000/02/02 21:52:26 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -67,7 +67,8 @@ -void gl_alloc_accum_buffer( GLcontext *ctx ) +void +_mesa_alloc_accum_buffer( GLcontext *ctx ) { GLint n; @@ -420,7 +421,8 @@ _mesa_Accum( GLenum op, GLfloat value ) /* * Clear the accumulation Buffer. */ -void gl_clear_accum_buffer( GLcontext *ctx ) +void +_mesa_clear_accum_buffer( GLcontext *ctx ) { GLuint buffersize; GLfloat acc_scale; |