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

Unified Diff: content/common/gpu/stream_texture_android.cc

Issue 536353002: gpu: Add CopyTexImage function to GLImage API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: keep support for binding images to multiple textures Created 6 years, 3 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: content/common/gpu/stream_texture_android.cc
diff --git a/content/common/gpu/stream_texture_android.cc b/content/common/gpu/stream_texture_android.cc
index 27dd0f7c08fb6cc06932634ecd0773a164d29944..d67d94ed69292aa33c5a4bdcf36bf1a61438ecc6 100644
--- a/content/common/gpu/stream_texture_android.cc
+++ b/content/common/gpu/stream_texture_android.cc
@@ -202,6 +202,11 @@ void StreamTexture::ReleaseTexImage(unsigned target) {
NOTREACHED();
}
+bool StreamTexture::CopyTexImage(unsigned target) {
+ NOTREACHED();
no sievers 2014/09/05 21:06:09 Don't we trigger this from WebMediaPlayerAndroid::
reveman 2014/09/06 04:02:57 Ah, maybe. I just assumed it would not based on Bi
+ return false;
+}
+
bool StreamTexture::ScheduleOverlayPlane(gfx::AcceleratedWidget widget,
int z_order,
gfx::OverlayTransform transform,

Powered by Google App Engine
This is Rietveld 408576698