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

Side by Side Diff: Source/core/paint/SVGMaskPainter.h

Issue 967543002: [S.P.] Move svg mask painting to SVGMaskPainter (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: expose clearInvalidationMask Created 5 years, 9 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
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef SVGMaskPainter_h
6 #define SVGMaskPainter_h
7
8 #include "platform/geometry/FloatRect.h"
9 #include "platform/graphics/paint/DisplayItem.h"
10
11 namespace blink {
12
13 struct PaintInfo;
14 class FloatPoint;
15 class GraphicsContext;
16 class Path;
17 class LayoutObject;
18 class LayoutSVGResourceMasker;
19 class LayoutSVGShape;
fs 2015/03/03 12:04:37 Looks like this list could be pruned a bit.
Erik Dahlström (inactive) 2015/03/03 13:08:58 Done.
20
21 class SVGMaskPainter {
22 public:
23 SVGMaskPainter(LayoutSVGResourceMasker& mask) : m_mask(mask) { }
24
25 bool prepareEffect(LayoutObject*, GraphicsContext*);
26 void finishEffect(LayoutObject*, GraphicsContext*);
27
28 private:
29 void drawMaskForRenderer(GraphicsContext*, DisplayItemClient, const FloatRec t& targetBoundingBox);
30
31 LayoutSVGResourceMasker& m_mask;
32 };
33
34 } // namespace blink
35
36 #endif // SVGShapePainter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698