| 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..774f7d238143c9c034651e190cfa1d6e49f39dd2 100644
|
| --- a/gpu/command_buffer/client/gl_in_process_context.cc
|
| +++ b/gpu/command_buffer/client/gl_in_process_context.cc
|
| @@ -72,6 +72,7 @@ class GLInProcessContextImpl
|
| #if defined(OS_ANDROID)
|
| scoped_refptr<gfx::SurfaceTexture> GetSurfaceTexture(
|
| uint32 stream_id) override;
|
| + uint32 CreateStreamTexture(uint32 texture_id) override;
|
| #endif
|
|
|
| private:
|
| @@ -266,6 +267,10 @@ scoped_refptr<gfx::SurfaceTexture>
|
| GLInProcessContextImpl::GetSurfaceTexture(uint32 stream_id) {
|
| return command_buffer_->GetSurfaceTexture(stream_id);
|
| }
|
| +
|
| +uint32 GLInProcessContextImpl::CreateStreamTexture(uint32 texture_id) {
|
| + return command_buffer_->CreateStreamTexture(texture_id);
|
| +}
|
| #endif
|
|
|
| } // anonymous namespace
|
|
|