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

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

Issue 23503046: [CSS Blending] Implement mix-blend-mode in software. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 3 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 47713ee962bdf0c407679259c5e055ea4f036b2f..af37e11c9698155e7abd0495192b6a285afbeb00 100644
--- a/Source/core/rendering/CompositingReasons.h
+++ b/Source/core/rendering/CompositingReasons.h
@@ -24,6 +24,8 @@ const uint64_t CompositingReasonFilters = UINT64_
const uint64_t CompositingReasonPositionFixed = UINT64_C(1) << 8;
const uint64_t CompositingReasonPositionSticky = UINT64_C(1) << 9;
const uint64_t CompositingReasonOverflowScrollingTouch = UINT64_C(1) << 10;
+
+// FIXME: remove the following compositing reason since it's no longer used.
shawnsingh 2013/09/10 21:23:40 I think it's best to address this FIXME in this pa
mitica 2013/09/11 16:04:14 The only problem with this would be that removing
const uint64_t CompositingReasonBlending = UINT64_C(1) << 11;
// Overlap reasons that require knowing what's behind you in paint-order before knowing the answer

Powered by Google App Engine
This is Rietveld 408576698