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

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..640f4f8c810865753cf760bbc69d7062f1ff4a23 100644
--- a/Source/core/rendering/CompositingReasons.h
+++ b/Source/core/rendering/CompositingReasons.h
@@ -24,8 +24,6 @@ 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;
-const uint64_t CompositingReasonBlending = UINT64_C(1) << 11;
-
// Overlap reasons that require knowing what's behind you in paint-order before knowing the answer
const uint64_t CompositingReasonAssumedOverlap = UINT64_C(1) << 12;
const uint64_t CompositingReasonOverlap = UINT64_C(1) << 13;

Powered by Google App Engine
This is Rietveld 408576698