| Index: gpu/command_buffer/service/gles2_cmd_decoder_passthrough_handlers_autogen.cc
|
| diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_handlers_autogen.cc b/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_handlers_autogen.cc
|
| index 0ad07821cc5a97c0e160ea22eb96378fd03f1f32..f2d6371cb960ceaaa33b511179f62a200c604779 100644
|
| --- a/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_handlers_autogen.cc
|
| +++ b/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_handlers_autogen.cc
|
| @@ -4350,5 +4350,19 @@ error::Error GLES2DecoderPassthroughImpl::
|
| return error::kNoError;
|
| }
|
|
|
| +error::Error GLES2DecoderPassthroughImpl::HandleSetSurfaceHandleCHROMIUM(
|
| + uint32_t immediate_data_size,
|
| + const volatile void* cmd_data) {
|
| + const volatile gles2::cmds::SetSurfaceHandleCHROMIUM& c =
|
| + *static_cast<const volatile gles2::cmds::SetSurfaceHandleCHROMIUM*>(
|
| + cmd_data);
|
| + GLint surfaceHandle = static_cast<GLint>(c.surfaceHandle);
|
| + error::Error error = DoSetSurfaceHandleCHROMIUM(surfaceHandle);
|
| + if (error != error::kNoError) {
|
| + return error;
|
| + }
|
| + return error::kNoError;
|
| +}
|
| +
|
| } // namespace gles2
|
| } // namespace gpu
|
|
|