diff options
author | Brian Paul <[email protected]> | 2018-01-18 14:22:29 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2018-01-24 10:12:49 -0700 |
commit | a7cfec3be0e610ae554ded55b6566acf72b95899 (patch) | |
tree | cad435e3f056343f14e610b7e95127ef4dc1d2e7 /src/mesa/vbo/vbo_exec_api.c | |
parent | d40fa42292e88fbaca2a838ff35a42db2d1de515 (diff) |
vbo: move VBO-private types, prototypes, etc. into new vbo_private.h header
Things which should not be used outside the VBO module.
More public/private clean-ups coming.
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/mesa/vbo/vbo_exec_api.c')
-rw-r--r-- | src/mesa/vbo/vbo_exec_api.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/vbo/vbo_exec_api.c b/src/mesa/vbo/vbo_exec_api.c index 6f1c550cb6f..3d972b2d3e1 100644 --- a/src/mesa/vbo/vbo_exec_api.c +++ b/src/mesa/vbo/vbo_exec_api.c @@ -46,6 +46,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. #include "vbo_context.h" #include "vbo_noop.h" +#include "vbo_private.h" /** ID/name for immediate-mode VBO */ |