diff options
Diffstat (limited to 'src/mesa/main/buffers.h')
-rw-r--r-- | src/mesa/main/buffers.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mesa/main/buffers.h b/src/mesa/main/buffers.h index dfa2131309d..7c992a98cad 100644 --- a/src/mesa/main/buffers.h +++ b/src/mesa/main/buffers.h @@ -1,3 +1,7 @@ +/** + * \file buffers.h + * Frame buffer management functions declarations. + */ /* * Mesa 3-D graphics library @@ -24,6 +28,7 @@ */ + #ifndef BUFFERS_H #define BUFFERS_H @@ -56,5 +61,10 @@ _mesa_Scissor( GLint x, GLint y, GLsizei width, GLsizei height ); extern void _mesa_SampleCoverageARB(GLclampf value, GLboolean invert); +extern void +_mesa_init_buffers( GLcontext * ctx ); + +extern void +_mesa_update_buffers( GLcontext *ctx ); #endif |