| 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 6f3935fa187b1465cba240030dd98a714faa14a9..c5e9f18cea4795aed06192dcc458d49edbba7e5e 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
|
| @@ -3841,7 +3841,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;
|
| }
|
|
|