| Index: ppapi/shared_impl/ppb_graphics_3d_shared.cc
|
| diff --git a/ppapi/shared_impl/ppb_graphics_3d_shared.cc b/ppapi/shared_impl/ppb_graphics_3d_shared.cc
|
| index 4d3a4b0672df1a6585e7964196ddd7398d626d57..577e75b0bbf4b8f829b5be2c5ba4d4fc04eba9f5 100644
|
| --- a/ppapi/shared_impl/ppb_graphics_3d_shared.cc
|
| +++ b/ppapi/shared_impl/ppb_graphics_3d_shared.cc
|
| @@ -138,13 +138,10 @@ bool PPB_Graphics3D_Shared::CreateGLES2Impl(
|
|
|
| // Create the object exposing the OpenGL API.
|
| gles2_impl_.reset(new gpu::gles2::GLES2Implementation(
|
| - gles2_helper_.get(),
|
| - share_gles2 ? share_gles2->share_group() : NULL,
|
| - transfer_buffer_.get(),
|
| - bind_creates_resources,
|
| - lose_context_when_out_of_memory,
|
| - support_client_side_arrays,
|
| - GetGpuControl()));
|
| + gles2_helper_.get(), share_gles2 ? share_gles2->share_group() : NULL,
|
| + transfer_buffer_.get(), bind_creates_resources,
|
| + lose_context_when_out_of_memory, support_client_side_arrays,
|
| + GetGpuControl(), nullptr));
|
|
|
| if (!gles2_impl_->Initialize(
|
| transfer_buffer_size, kMinTransferBufferSize,
|
|
|