diff options
Diffstat (limited to 'gpu/command_buffer/client/vertex_array_object_manager.h')
-rw-r--r-- | gpu/command_buffer/client/vertex_array_object_manager.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gpu/command_buffer/client/vertex_array_object_manager.h b/gpu/command_buffer/client/vertex_array_object_manager.h index 34f630d..8638584 100644 --- a/gpu/command_buffer/client/vertex_array_object_manager.h +++ b/gpu/command_buffer/client/vertex_array_object_manager.h @@ -26,7 +26,8 @@ class GLES2_IMPL_EXPORT VertexArrayObjectManager { VertexArrayObjectManager( GLuint max_vertex_attribs, GLuint array_buffer_id, - GLuint element_array_buffer_id); + GLuint element_array_buffer_id, + bool support_client_side_arrays); ~VertexArrayObjectManager(); bool IsReservedId(GLuint id) const; @@ -116,6 +117,8 @@ class GLES2_IMPL_EXPORT VertexArrayObjectManager { VertexArrayObject* bound_vertex_array_object_; VertexArrayObjectMap vertex_array_objects_; + bool support_client_side_arrays_; + DISALLOW_COPY_AND_ASSIGN(VertexArrayObjectManager); }; |