| Index: mojo/gles2/command_buffer_client_impl.cc
|
| diff --git a/mojo/gles2/command_buffer_client_impl.cc b/mojo/gles2/command_buffer_client_impl.cc
|
| index f20c200a417624a1475fc45e1a343f03eb57034d..ab612352b4389430c96fc931bc712b353eb56bf1 100644
|
| --- a/mojo/gles2/command_buffer_client_impl.cc
|
| +++ b/mojo/gles2/command_buffer_client_impl.cc
|
| @@ -358,12 +358,20 @@ void CommandBufferClientImpl::SetSurfaceVisible(bool visible) {
|
| NOTIMPLEMENTED();
|
| }
|
|
|
| -uint32_t CommandBufferClientImpl::CreateStreamTexture(uint32_t texture_id) {
|
| +int32 CommandBufferClientImpl::CreateStreamTexture(uint32_t texture_id) {
|
| // TODO(piman)
|
| NOTIMPLEMENTED();
|
| return 0;
|
| }
|
|
|
| +void CommandBufferClientImpl::SetStreamTextureSize(uint32 texture_id,
|
| + int32 stream_id,
|
| + size_t width,
|
| + size_t height) {
|
| + // TODO(piman)
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| void CommandBufferClientImpl::DidLoseContext(int32_t lost_reason) {
|
| last_state_.error = gpu::error::kLostContext;
|
| last_state_.context_lost_reason =
|
|
|