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

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: Created 3 years, 9 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 af78208009f2180a735cba43faf18a7f9d1000df..9fb6e9c43fadb413ffd21f50f5d83ffa73c60397 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 functionID,
GLenum target,
gpu::gles2::GLES2Interface* gl,
+ GLuint texture,
GLint level,
GLint internalformat,
GLenum format,
@@ -335,8 +336,8 @@ bool HTMLVideoElement::texImageImpl(
if (!webMediaPlayer())
return false;
return webMediaPlayer()->texImageImpl(
- functionID, target, gl, level, internalformat, format, type, xoffset,
- yoffset, zoffset, flipY, premultiplyAlpha);
+ functionID, target, gl, texture, level, internalformat, format, type,
+ xoffset, yoffset, zoffset, flipY, premultiplyAlpha);
}
bool HTMLVideoElement::hasAvailableVideoFrame() const {

Powered by Google App Engine
This is Rietveld 408576698