Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(513)

Unified Diff: third_party/WebKit/Source/core/html/HTMLVideoElement.cpp

Issue 2767063002: 16-bit video upload to float: intermediate R16_EXT and copy to float. (Closed)
Patch Set: Nit. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 {

Powered by Google App Engine
This is Rietveld 408576698