diff options
author | Keith Whitwell <[email protected]> | 2009-03-03 10:41:57 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-03-03 10:41:57 +0000 |
commit | c64a2b708944ec671b1104067245500fcfc6ed94 (patch) | |
tree | 6c7a0d642264502993c1be2bc9d3da7e288615fc /src/mesa/vbo/vbo_exec.h | |
parent | 050ce17799cbe652962f898942ae6551d31f21a2 (diff) |
mesa: Add BeginVertices driver call
Provides notification to the VBO modules prior to the first immediate call.
Pairs with FlushVertices()
Diffstat (limited to 'src/mesa/vbo/vbo_exec.h')
-rw-r--r-- | src/mesa/vbo/vbo_exec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/vbo/vbo_exec.h b/src/mesa/vbo/vbo_exec.h index ddbcbe11814..3ce36657bd4 100644 --- a/src/mesa/vbo/vbo_exec.h +++ b/src/mesa/vbo/vbo_exec.h @@ -140,6 +140,8 @@ struct vbo_exec_context void vbo_exec_init( GLcontext *ctx ); void vbo_exec_destroy( GLcontext *ctx ); void vbo_exec_invalidate_state( GLcontext *ctx, GLuint new_state ); + +void vbo_exec_BeginVertices( GLcontext *ctx ); void vbo_exec_FlushVertices( GLcontext *ctx, GLuint flags ); |