diff options
author | Brian Paul <[email protected]> | 2018-01-18 14:32:38 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2018-01-24 10:12:49 -0700 |
commit | aafb56a148d3f75a2d5989f92bf3bba9b3fbfd24 (patch) | |
tree | 5b4fdf577ab6105dabe0c073eb45ff7e37697718 /src/mesa/vbo/vbo.h | |
parent | a7cfec3be0e610ae554ded55b6566acf72b95899 (diff) |
vbo: move remaining items from vbo_context.h to vbo.h
Non-VBO sources files sometimes included vbo.h while others included
vbo_context.h. We're moving all public types, functions to the former.
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/mesa/vbo/vbo.h')
-rw-r--r-- | src/mesa/vbo/vbo.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/vbo/vbo.h b/src/mesa/vbo/vbo.h index 146d4cd3116..d85b3ed0a56 100644 --- a/src/mesa/vbo/vbo.h +++ b/src/mesa/vbo/vbo.h @@ -81,6 +81,12 @@ void _vbo_DestroyContext( struct gl_context *ctx ); void +vbo_exec_invalidate_state(struct gl_context *ctx); + +void +_vbo_install_exec_vtxfmt(struct gl_context *ctx); + +void vbo_initialize_exec_dispatch(const struct gl_context *ctx, struct _glapi_table *exec); |