| 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..552eaebbc5e52e999681f5558d0581ab8373dc76 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
|
| @@ -4061,7 +4061,8 @@ error::Error GLES2DecoderPassthroughImpl::HandleBindTexImage2DCHROMIUM(
|
| cmd_data);
|
| GLenum target = static_cast<GLenum>(c.target);
|
| GLint imageId = static_cast<GLint>(c.imageId);
|
| - error::Error error = DoBindTexImage2DCHROMIUM(target, imageId);
|
| + GLint fenceId = static_cast<GLint>(c.fenceId);
|
| + error::Error error = DoBindTexImage2DCHROMIUM(target, imageId, fenceId);
|
| if (error != error::kNoError) {
|
| return error;
|
| }
|
|
|