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

Unified Diff: public/platform/WebExternalTextureLayerClient.h

Issue 369043003: Let canvas decide how to handle the case of resource lost reported by client: 2D part (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: split out webgl part as another CL Created 6 years, 5 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 | « Source/platform/graphics/gpu/DrawingBuffer.cpp ('k') | no next file » | 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 148e63ffb9dd171d3f7c8ff6e83958e7d9a8a268..923eea7189948ccaf8562616e60de15eaeb6bfb8 100644
--- a/public/platform/WebExternalTextureLayerClient.h
+++ b/public/platform/WebExternalTextureLayerClient.h
@@ -43,8 +43,9 @@ public:
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.
- virtual void mailboxReleased(const WebExternalTextureMailbox&) = 0;
+ // a sync point to wait on before the mailbox could be consumes again by the client. The
+ // boolean flag indicates if the mailbox resource is treated as lost by client.
+ virtual void mailboxReleased(const WebExternalTextureMailbox&, bool lostResource = false) = 0;
jamesr 2014/07/16 06:08:58 are you planning to remove the defaultness of this
Hongbo Min 2014/07/16 06:25:23 Sure. FIXME is added in the new PS.
protected:
virtual ~WebExternalTextureLayerClient() { }
« no previous file with comments | « Source/platform/graphics/gpu/DrawingBuffer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698