| Index: third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp b/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| index 8bb6dad5d80d2e7538a71592ca671a067332264c..0610ecaf66f5e4399cb61926d0825e6ee8ceb9f2 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| @@ -334,6 +334,7 @@ bool HTMLVideoElement::TexImageImpl(
|
| WebMediaPlayer::TexImageFunctionID function_id,
|
| GLenum target,
|
| gpu::gles2::GLES2Interface* gl,
|
| + GLuint texture,
|
| GLint level,
|
| GLint internalformat,
|
| GLenum format,
|
| @@ -346,8 +347,8 @@ bool HTMLVideoElement::TexImageImpl(
|
| if (!GetWebMediaPlayer())
|
| return false;
|
| return GetWebMediaPlayer()->TexImageImpl(
|
| - function_id, target, gl, level, internalformat, format, type, xoffset,
|
| - yoffset, zoffset, flip_y, premultiply_alpha);
|
| + function_id, target, gl, texture, level, internalformat, format, type,
|
| + xoffset, yoffset, zoffset, flip_y, premultiply_alpha);
|
| }
|
|
|
| bool HTMLVideoElement::HasAvailableVideoFrame() const {
|
|
|