| Index: gpu/command_buffer/tests/gl_manager.cc
|
| diff --git a/gpu/command_buffer/tests/gl_manager.cc b/gpu/command_buffer/tests/gl_manager.cc
|
| index ffbc573fd8609f164da28c093a0f435e7011ec76..a8a7425b6d0e8fc6675e02fa0888add219eafc34 100644
|
| --- a/gpu/command_buffer/tests/gl_manager.cc
|
| +++ b/gpu/command_buffer/tests/gl_manager.cc
|
| @@ -255,12 +255,14 @@ void GLManager::Initialize(const GLManager::Options& options) {
|
| transfer_buffer_.reset(new TransferBuffer(gles2_helper_.get()));
|
|
|
| // Create the object exposing the OpenGL API.
|
| + const bool support_client_side_arrays = true;
|
| gles2_implementation_.reset(
|
| new gles2::GLES2Implementation(gles2_helper_.get(),
|
| client_share_group,
|
| transfer_buffer_.get(),
|
| options.bind_generates_resource,
|
| options.lose_context_when_out_of_memory,
|
| + support_client_side_arrays,
|
| this));
|
|
|
| ASSERT_TRUE(gles2_implementation_->Initialize(
|
|
|