diff options
author | Brian Paul <[email protected]> | 2018-01-18 16:10:49 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2018-01-24 10:12:49 -0700 |
commit | b9280031a8f970ebec03edc9954d7d3ade54ba42 (patch) | |
tree | 543138c646aa76de1d40e17bfdbb86c4bfc49843 /src/mesa/vbo | |
parent | a83f7e119cac2020100035d426927629ab666257 (diff) |
vbo/i965: move vbo_all_varyings_in_vbos() to brw_draw.c
It's only used in brw_draw_prims().
s/GLboolean/bool/, etc.
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/mesa/vbo')
-rw-r--r-- | src/mesa/vbo/vbo.h | 2 | ||||
-rw-r--r-- | src/mesa/vbo/vbo_rebase.c | 11 |
2 files changed, 0 insertions, 13 deletions
diff --git a/src/mesa/vbo/vbo.h b/src/mesa/vbo/vbo.h index 0007029996c..30c83fc1a26 100644 --- a/src/mesa/vbo/vbo.h +++ b/src/mesa/vbo/vbo.h @@ -153,8 +153,6 @@ void vbo_split_prims( struct gl_context *ctx, const struct split_limits *limits ); -GLboolean vbo_all_varyings_in_vbos( const struct gl_vertex_array *arrays[] ); - void vbo_rebase_prims( struct gl_context *ctx, const struct gl_vertex_array *arrays[], const struct _mesa_prim *prim, diff --git a/src/mesa/vbo/vbo_rebase.c b/src/mesa/vbo/vbo_rebase.c index a9d8ff93e93..02dbc68dcb5 100644 --- a/src/mesa/vbo/vbo_rebase.c +++ b/src/mesa/vbo/vbo_rebase.c @@ -79,17 +79,6 @@ REBASE(GLuint) REBASE(GLushort) REBASE(GLubyte) -GLboolean vbo_all_varyings_in_vbos( const struct gl_vertex_array *arrays[] ) -{ - GLuint i; - - for (i = 0; i < VERT_ATTRIB_MAX; i++) - if (arrays[i]->StrideB && - arrays[i]->BufferObj->Name == 0) - return GL_FALSE; - - return GL_TRUE; -} /* Adjust primitives, indices and vertex definitions so that min_index |