aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2016-04-21 10:54:11 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-04-21 10:54:11 -0700
commit177f2f69a14281cfc149eb45b633699231a547b3 (patch)
tree8975201b6f07068348410e8e07c2a0d8324c5cf0 /include
parent6a6f3c58b4289544f9aab58036579f7caa0b7cd5 (diff)
SkPathEffect.h: add SK_API where needed
motivation: .so fiddle TBR=reed@google.com no api chages, only visibility GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1908893004 Review URL: https://codereview.chromium.org/1908893004
Diffstat (limited to 'include')
-rw-r--r--include/core/SkPathEffect.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/core/SkPathEffect.h b/include/core/SkPathEffect.h
index fd5957378a..6d3ed85637 100644
--- a/include/core/SkPathEffect.h
+++ b/include/core/SkPathEffect.h
@@ -153,7 +153,7 @@ private:
including flattening them. It does nothing in filterPath, and is only useful
for managing the lifetimes of its two arguments.
*/
-class SkPairPathEffect : public SkPathEffect {
+class SK_API SkPairPathEffect : public SkPathEffect {
protected:
SkPairPathEffect(sk_sp<SkPathEffect> pe0, sk_sp<SkPathEffect> pe1);
@@ -174,7 +174,7 @@ private:
This subclass of SkPathEffect composes its two arguments, to create
a compound pathEffect.
*/
-class SkComposePathEffect : public SkPairPathEffect {
+class SK_API SkComposePathEffect : public SkPairPathEffect {
public:
/** Construct a pathEffect whose effect is to apply first the inner pathEffect
and the the outer pathEffect (e.g. outer(inner(path)))
@@ -224,7 +224,7 @@ private:
This subclass of SkPathEffect applies two pathEffects, one after the other.
Its filterPath() returns true if either of the effects succeeded.
*/
-class SkSumPathEffect : public SkPairPathEffect {
+class SK_API SkSumPathEffect : public SkPairPathEffect {
public:
/** Construct a pathEffect whose effect is to apply two effects, in sequence.
(e.g. first(path) + second(path))