| 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 49375b0942e8390506bb741c7e62c5883218759a..82c352c3ba563e46c9eb8c365d5c82f844dbc9e8 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| @@ -310,13 +310,15 @@ void HTMLVideoElement::paintCurrentFrame(PaintCanvas* canvas,
|
| bool HTMLVideoElement::copyVideoTextureToPlatformTexture(
|
| gpu::gles2::GLES2Interface* gl,
|
| GLuint texture,
|
| + GLenum internalFormat,
|
| + GLenum type,
|
| bool premultiplyAlpha,
|
| bool flipY) {
|
| if (!webMediaPlayer())
|
| return false;
|
|
|
| return webMediaPlayer()->copyVideoTextureToPlatformTexture(
|
| - gl, texture, premultiplyAlpha, flipY);
|
| + gl, texture, internalFormat, type, premultiplyAlpha, flipY);
|
| }
|
|
|
| bool HTMLVideoElement::texImageImpl(
|
|
|