diff options
author | Brian Paul <[email protected]> | 2009-10-22 18:16:10 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-10-22 18:16:10 -0600 |
commit | 4837e01bcd3d011a38d75cc9f1eff629c3de6fd6 (patch) | |
tree | a377f11390e83b3b89dc010b7d8a20fc01556b04 /src/mesa/main/context.h | |
parent | 61a96a2ac72b3f071151de436a48c6ec985e3653 (diff) |
mesa: code refactoring- new _mesa_finish(), _mesa_flush()
Diffstat (limited to 'src/mesa/main/context.h')
-rw-r--r-- | src/mesa/main/context.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/main/context.h b/src/mesa/main/context.h index 5587695fa0b..c3be1063f86 100644 --- a/src/mesa/main/context.h +++ b/src/mesa/main/context.h @@ -170,6 +170,14 @@ _mesa_valid_to_render(GLcontext *ctx, const char *where); extern void _mesa_record_error( GLcontext *ctx, GLenum error ); + +extern void +_mesa_finish(GLcontext *ctx); + +extern void +_mesa_flush(GLcontext *ctx); + + extern void GLAPIENTRY _mesa_Finish( void ); |