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

Unified Diff: public/platform/WebExternalTextureLayerClient.h

Issue 17859003: Allow DrawingBuffer to present to a bitmap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 6 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
« no previous file with comments | « public/platform/WebExternalBitmap.h ('k') | public/platform/WebGraphicsContext3D.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebExternalTextureLayerClient.h
diff --git a/public/platform/WebExternalTextureLayerClient.h b/public/platform/WebExternalTextureLayerClient.h
index 4829600c21f94fd14262fd417331b98c55995be2..7a7830a6d0cf6484d3bcefdff150b682daad7552 100644
--- a/public/platform/WebExternalTextureLayerClient.h
+++ b/public/platform/WebExternalTextureLayerClient.h
@@ -32,6 +32,7 @@
namespace WebKit {
class WebGraphicsContext3D;
+class WebExternalBitmap;
struct WebExternalTextureMailbox;
class WebTextureUpdater {
@@ -47,9 +48,10 @@ public:
virtual unsigned prepareTexture(WebTextureUpdater&) = 0;
virtual WebGraphicsContext3D* context() = 0;
- // Returns true and provides a mailbox if a new frame is available.
- // Returns false if no new data is available and the old mailbox is to be reused.
- virtual bool prepareMailbox(WebExternalTextureMailbox*) = 0;
+ // Returns true and provides a mailbox if a new frame is available. If the WebExternalBitmap
+ // isn't 0, then it should also be filled in with the contents of this frame.
+ // Returns false if no new data is available and the old mailbox and bitmap are to be reused.
+ virtual bool prepareMailbox(WebExternalTextureMailbox*, WebExternalBitmap* = 0) = 0;
// Notifies the client when a mailbox is no longer in use by the compositor and provides
// a sync point to wait on before the mailbox could be consumes again by the client.
« no previous file with comments | « public/platform/WebExternalBitmap.h ('k') | public/platform/WebGraphicsContext3D.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698