| 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 3b32c4815eca63a30a1a753116f50f73ca4234a5..ef8d0f90e1bd9dc3fa32882993f5045bc8aa81dd 100644
|
| --- a/gpu/command_buffer/client/gl_in_process_context.cc
|
| +++ b/gpu/command_buffer/client/gl_in_process_context.cc
|
| @@ -73,6 +73,7 @@ class GLInProcessContextImpl
|
| scoped_refptr<gfx::SurfaceTexture> GetSurfaceTexture(
|
| uint32 stream_id) override;
|
| #endif
|
| + uint32 CreateStreamTexture(uint32 texture_id) override;
|
|
|
| private:
|
| void Destroy();
|
| @@ -268,6 +269,10 @@ GLInProcessContextImpl::GetSurfaceTexture(uint32 stream_id) {
|
| }
|
| #endif
|
|
|
| +uint32 GLInProcessContextImpl::CreateStreamTexture(uint32 texture_id) {
|
| + return command_buffer_->CreateStreamTexture(texture_id);
|
| +}
|
| +
|
| } // anonymous namespace
|
|
|
| GLInProcessContextSharedMemoryLimits::GLInProcessContextSharedMemoryLimits()
|
|
|