| Index: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_graphics_3d.cc
|
| diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_graphics_3d.cc b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_graphics_3d.cc
|
| index 6d06126b1f19c0ee4b20984b9a69fa3ef158cf1a..e00e9f9239f2207c16e65b76991d66a4cd440122 100644
|
| --- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_graphics_3d.cc
|
| +++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_graphics_3d.cc
|
| @@ -211,12 +211,9 @@ bool PluginGraphics3D::InitFromBrowserResource(PP_Resource res) {
|
|
|
| // Create and initialize the objects required to issue GLES2 calls.
|
| command_buffer_.reset(new CommandBufferNacl(res, PluginCore::GetInterface()));
|
| - if (command_buffer_->Initialize(kRingBufferSize)) {
|
| + if (command_buffer_->Initialize()) {
|
| gles2_helper_.reset(new gpu::gles2::GLES2CmdHelper(command_buffer_.get()));
|
| - gpu::Buffer buffer = command_buffer_->GetRingBuffer();
|
| - DebugPrintf("PluginGraphics3D::InitFromBrowserResource: buffer size: %d\n",
|
| - buffer.size);
|
| - if (gles2_helper_->Initialize(buffer.size)) {
|
| + if (gles2_helper_->Initialize(kRingBufferSize)) {
|
| // Request id -1 to signify 'don't care'
|
| int32 transfer_buffer_id =
|
| command_buffer_->CreateTransferBuffer(kTransferBufferSize, -1);
|
|
|