| 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 3bf2a9d4f7c1d68896882ad758f7047a794e1fac..8faea756762c969aa7e486d53b944f3ad895274a 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| @@ -323,6 +323,7 @@ bool HTMLVideoElement::TexImageImpl(
|
| WebMediaPlayer::TexImageFunctionID function_id,
|
| GLenum target,
|
| gpu::gles2::GLES2Interface* gl,
|
| + GLuint texture,
|
| GLint level,
|
| GLint internalformat,
|
| GLenum format,
|
| @@ -335,8 +336,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 {
|
|
|