Module: Mesa Branch: master Commit: 1850256172587240b7a19ebf28b582ba0624dd29 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=1850256172587240b7a19ebf28b582ba0624dd29
Author: Brian Paul <[email protected]> Date: Fri Aug 18 21:17:14 2017 -0600 vbo: make vbo_bind_arrays() static Reviewed-by: Samuel Pitoiset <[email protected]> Reviewed-by: Marek Olšák <[email protected]> --- src/mesa/vbo/vbo.h | 2 -- src/mesa/vbo/vbo_exec_array.c | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/mesa/vbo/vbo.h b/src/mesa/vbo/vbo.h index c8e87d32a5..ffbb2018b1 100644 --- a/src/mesa/vbo/vbo.h +++ b/src/mesa/vbo/vbo.h @@ -196,8 +196,6 @@ void vbo_set_draw_func(struct gl_context *ctx, vbo_draw_func func); void vbo_set_indirect_draw_func(struct gl_context *ctx, vbo_indirect_draw_func func); -void vbo_bind_arrays(struct gl_context *ctx); - size_t vbo_count_tessellated_primitives(GLenum mode, GLuint count, GLuint num_instances); diff --git a/src/mesa/vbo/vbo_exec_array.c b/src/mesa/vbo/vbo_exec_array.c index 0617d65935..edd55ce69e 100644 --- a/src/mesa/vbo/vbo_exec_array.c +++ b/src/mesa/vbo/vbo_exec_array.c @@ -421,7 +421,7 @@ recalculate_input_bindings(struct gl_context *ctx) * Note that this might set the _NEW_VARYING_VP_INPUTS dirty flag so state * validation must be done after this call. */ -void +static void vbo_bind_arrays(struct gl_context *ctx) { struct vbo_context *vbo = vbo_context(ctx); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
