Index: gpu/command_buffer/client/gl_in_process_context.cc |
diff --git a/gpu/command_buffer/client/gl_in_process_context.cc b/gpu/command_buffer/client/gl_in_process_context.cc |
index 2405c0d455ada156600713110536a5841b234777..015a2a7824bf3a8e925e43fa5ec6e3d404689334 100644 |
--- a/gpu/command_buffer/client/gl_in_process_context.cc |
+++ b/gpu/command_buffer/client/gl_in_process_context.cc |
@@ -204,7 +204,8 @@ bool GLInProcessContextImpl::Initialize( |
// Check for consistency. |
DCHECK(!attribs.bind_generates_resource); |
- bool bind_generates_resource = false; |
+ const bool bind_generates_resource = false; |
+ const bool support_client_side_arrays = false; |
// Create the object exposing the OpenGL API. |
gles2_implementation_.reset( |
@@ -213,6 +214,7 @@ bool GLInProcessContextImpl::Initialize( |
transfer_buffer_.get(), |
bind_generates_resource, |
attribs.lose_context_when_out_of_memory, |
+ support_client_side_arrays, |
command_buffer_.get())); |
if (use_global_share_group) { |