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

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: Fix release 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
« no previous file with comments | « Source/web/WebRuntimeFeatures.cpp ('k') | public/web/WebRuntimeFeatures.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
WebExternalTextureMailbox()
: syncPoint(0)
+ , allowOverlay(false)
{
memset(name, 0, sizeof(name));
}
« no previous file with comments | « Source/web/WebRuntimeFeatures.cpp ('k') | public/web/WebRuntimeFeatures.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698