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

Unified Diff: Source/core/rendering/CompositingReasons.h

Issue 23511004: mix-blend-mode implementation for accelerated layers - blink part (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: adding the rendering part Created 7 years, 4 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: Source/core/rendering/CompositingReasons.h
diff --git a/Source/core/rendering/CompositingReasons.h b/Source/core/rendering/CompositingReasons.h
index 792f3ed7654e056ac93ef4f27bce2e9b02d3c0a5..3e5d5a7e7635d4eac995334d46a6ea76b3cc2159 100644
--- a/Source/core/rendering/CompositingReasons.h
+++ b/Source/core/rendering/CompositingReasons.h
@@ -60,6 +60,7 @@ const uint64_t CompositingReasonOverflowScrollingParent = UINT64_
const uint64_t CompositingReasonOutOfFlowClipping = UINT64_C(1) << 33;
const uint64_t CompositingReasonLayerForVideoOverlay = UINT64_C(1) << 34;
+const uint64_t CompositingReasonIsolateCompositedDescendants = UINT64_C(1) << 35;
// Note: if you add more reasons here, you will need to update WebCompositingReasons as well.
typedef uint64_t CompositingReasons;

Powered by Google App Engine
This is Rietveld 408576698