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

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: review fixes 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 class GraphicsContext;
14 class LayoutObject;
15 class LayoutSVGResourceMasker;
16
17 class SVGMaskPainter {
18 public:
19 SVGMaskPainter(LayoutSVGResourceMasker& mask) : m_mask(mask) { }
20
21 bool prepareEffect(LayoutObject*, GraphicsContext*);
22 void finishEffect(LayoutObject*, GraphicsContext*);
23
24 private:
25 void drawMaskForRenderer(GraphicsContext*, DisplayItemClient, const FloatRec t& targetBoundingBox);
26
27 LayoutSVGResourceMasker& m_mask;
28 };
29
30 } // namespace blink
31
32 #endif // SVGShapePainter_h
OLDNEW
« no previous file with comments | « Source/core/layout/svg/LayoutSVGResourceMasker.cpp ('k') | Source/core/paint/SVGMaskPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698