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

Unified Diff: content/browser/renderer_host/image_transport_factory_android.h

Issue 11194042: Implement TextureImageTransportSurface using texture mailbox (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win_aura DCHECK() Created 8 years 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/browser/renderer_host/image_transport_factory_android.h
diff --git a/content/browser/renderer_host/image_transport_factory_android.h b/content/browser/renderer_host/image_transport_factory_android.h
index 669d516bd5c0b1f2f4a479314a5dc022fc1814d4..57fc5f6cda04a45ab299960c086d850ac514a010 100644
--- a/content/browser/renderer_host/image_transport_factory_android.h
+++ b/content/browser/renderer_host/image_transport_factory_android.h
@@ -30,6 +30,12 @@ class ImageTransportFactoryAndroid {
const gfx::GLSurfaceHandle& handle) = 0;
virtual uint32_t InsertSyncPoint() = 0;
+ virtual uint32_t CreateTexture() = 0;
+ virtual void DeleteTexture(uint32_t id) = 0;
+ virtual void AcquireTexture(
+ uint32 texture_id, const signed char* mailbox_name) = 0;
+ virtual void ReleaseTexture(
+ uint32 texture_id, const signed char* mailbox_name) = 0;
virtual WebKit::WebGraphicsContext3D* GetContext3D() = 0;
virtual GLHelper* GetGLHelper() = 0;

Powered by Google App Engine
This is Rietveld 408576698