| Index: gpu/command_buffer/client/gles2_implementation_impl_autogen.h
|
| diff --git a/gpu/command_buffer/client/gles2_implementation_impl_autogen.h b/gpu/command_buffer/client/gles2_implementation_impl_autogen.h
|
| index 679822032ddf8c633dc779aafb744ac5eeb897b8..e10aa498039a6d4e168cffcb1bf7146efb361b7e 100644
|
| --- a/gpu/command_buffer/client/gles2_implementation_impl_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_implementation_impl_autogen.h
|
| @@ -3197,12 +3197,14 @@ void GLES2Implementation::CompressedCopyTextureCHROMIUM(GLenum source_id,
|
| CheckGLError();
|
| }
|
|
|
| -void GLES2Implementation::BindTexImage2DCHROMIUM(GLenum target, GLint imageId) {
|
| +void GLES2Implementation::BindTexImage2DCHROMIUM(GLenum target,
|
| + GLint imageId,
|
| + GLint fenceId) {
|
| GPU_CLIENT_SINGLE_THREAD_CHECK();
|
| GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glBindTexImage2DCHROMIUM("
|
| << GLES2Util::GetStringTextureBindTarget(target) << ", "
|
| - << imageId << ")");
|
| - helper_->BindTexImage2DCHROMIUM(target, imageId);
|
| + << imageId << ", " << fenceId << ")");
|
| + helper_->BindTexImage2DCHROMIUM(target, imageId, fenceId);
|
| CheckGLError();
|
| }
|
|
|
|
|