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

Unified Diff: public/platform/WebExternalTextureMailbox.h

Issue 274833002: Enable WebGL rendering into ImageCHROMIUM, backed by a scanout buffer to enable overlay suppor… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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: public/platform/WebExternalTextureMailbox.h
diff --git a/public/platform/WebExternalTextureMailbox.h b/public/platform/WebExternalTextureMailbox.h
index 423e4179b0320b4cab87dcc75289cc102774a96c..c596d572162bfd767be220ad2af9d84e33820242 100644
--- a/public/platform/WebExternalTextureMailbox.h
+++ b/public/platform/WebExternalTextureMailbox.h
@@ -36,9 +36,11 @@ namespace blink {
struct WebExternalTextureMailbox {
signed char name[64];
unsigned syncPoint;
+ bool allowOverlay;
Ken Russell (switch to Gerrit) 2014/05/14 22:11:33 Should this be "useOverlay"? "allow" gives the imp
alexst (slow to review) 2014/05/14 22:29:55 "allow" is actually closer to reality because we a
WebExternalTextureMailbox()
: syncPoint(0)
+ , allowOverlay(false)
{
memset(name, 0, sizeof(name));
}

Powered by Google App Engine
This is Rietveld 408576698