diff options
author | Brian Paul <[email protected]> | 2015-10-12 14:16:37 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-10-13 08:28:23 -0600 |
commit | a7b6e6192a2cb36a36aaf12153de2e4b2c6e1cef (patch) | |
tree | 5891d2a9217910a7c6c12f23470b981d068ff101 /src/mesa/vbo/vbo_exec.h | |
parent | 84719ad9df5a48ef8c92461956abda1b20cdbefc (diff) |
vbo: make void vbo_exec_BeginVertices() static
Not called from any other file. Rename and move before use.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa/vbo/vbo_exec.h')
-rw-r--r-- | src/mesa/vbo/vbo_exec.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/vbo/vbo_exec.h b/src/mesa/vbo/vbo_exec.h index 0f894aab740..00378eb7984 100644 --- a/src/mesa/vbo/vbo_exec.h +++ b/src/mesa/vbo/vbo_exec.h @@ -132,7 +132,7 @@ struct vbo_exec_context GLboolean recalculate_inputs; } array; - /* Which flags to set in vbo_exec_BeginVertices() */ + /* Which flags to set in vbo_exec_begin_vertices() */ GLbitfield begin_vertices_flags; #ifdef DEBUG @@ -148,8 +148,6 @@ void vbo_exec_init( struct gl_context *ctx ); void vbo_exec_destroy( struct gl_context *ctx ); void vbo_exec_invalidate_state( struct gl_context *ctx, GLuint new_state ); -void vbo_exec_BeginVertices( struct gl_context *ctx ); - /* Internal functions: */ |