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

Side by Side Diff: Source/platform/graphics/paint/DisplayItem.h

Issue 946423002: Separate Transform3D display item types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/platform/graphics/paint/DisplayItem.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef DisplayItem_h 5 #ifndef DisplayItem_h
6 #define DisplayItem_h 6 #define DisplayItem_h
7 7
8 #include "platform/PlatformExport.h" 8 #include "platform/PlatformExport.h"
9 #include "platform/graphics/paint/DisplayItemClient.h" 9 #include "platform/graphics/paint/DisplayItemClient.h"
10 #include "wtf/Assertions.h" 10 #include "wtf/Assertions.h"
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 ScrollLast = ScrollPaintPhaseLast, 119 ScrollLast = ScrollPaintPhaseLast,
120 EndScrollFirst, 120 EndScrollFirst,
121 EndScrollLast = EndScrollFirst + ScrollLast - ScrollFirst, 121 EndScrollLast = EndScrollFirst + ScrollLast - ScrollFirst,
122 122
123 BeginFilter, 123 BeginFilter,
124 EndFilter, 124 EndFilter,
125 BeginCompositing, 125 BeginCompositing,
126 EndCompositing, 126 EndCompositing,
127 BeginTransform, 127 BeginTransform,
128 EndTransform, 128 EndTransform,
129 BeginTransform3D,
130 EndTransform3D,
129 BeginClipPath, 131 BeginClipPath,
130 EndClipPath, 132 EndClipPath,
131 133
132 SubtreeCachedFirst, 134 SubtreeCachedFirst,
133 SubtreeCachedPaintPhaseFirst = SubtreeCachedFirst, 135 SubtreeCachedPaintPhaseFirst = SubtreeCachedFirst,
134 SubtreeCachedPaintPhaseLast = SubtreeCachedPaintPhaseFirst + PaintPhaseM ax, 136 SubtreeCachedPaintPhaseLast = SubtreeCachedPaintPhaseFirst + PaintPhaseM ax,
135 SubtreeCachedLast = SubtreeCachedPaintPhaseLast, 137 SubtreeCachedLast = SubtreeCachedPaintPhaseLast,
136 138
137 BeginSubtreeFirst, 139 BeginSubtreeFirst,
138 BeginSubtreePaintPhaseFirst = BeginSubtreeFirst, 140 BeginSubtreePaintPhaseFirst = BeginSubtreeFirst,
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 virtual bool isEndAndPairedWith(const DisplayItem& other) const override = 0 ; 286 virtual bool isEndAndPairedWith(const DisplayItem& other) const override = 0 ;
285 #endif 287 #endif
286 288
287 private: 289 private:
288 virtual bool isEnd() const override final { return true; } 290 virtual bool isEnd() const override final { return true; }
289 }; 291 };
290 292
291 } // namespace blink 293 } // namespace blink
292 294
293 #endif // DisplayItem_h 295 #endif // DisplayItem_h
OLDNEW
« no previous file with comments | « no previous file | Source/platform/graphics/paint/DisplayItem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698