HomeSort by relevance Sort by last modified time
    Searched defs:SkCornerPathEffect (Results 1 - 4 of 4) sorted by null

  /external/skia/include/effects/
SkCornerPathEffect.h 13 /** \class SkCornerPathEffect
15 SkCornerPathEffect is a subclass of SkPathEffect that can turn sharp corners
18 class SK_API SkCornerPathEffect : public SkPathEffect {
24 return sk_sp<SkPathEffect>(new SkCornerPathEffect(radius));
31 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkCornerPathEffect)
38 ~SkCornerPathEffect() override;
40 explicit SkCornerPathEffect(SkScalar radius);
  /external/skqp/include/effects/
SkCornerPathEffect.h 13 /** \class SkCornerPathEffect
15 SkCornerPathEffect is a subclass of SkPathEffect that can turn sharp corners
18 class SK_API SkCornerPathEffect : public SkPathEffect {
24 return sk_sp<SkPathEffect>(new SkCornerPathEffect(radius));
31 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkCornerPathEffect)
38 ~SkCornerPathEffect() override;
40 explicit SkCornerPathEffect(SkScalar radius);
  /external/skia/src/effects/
SkCornerPathEffect.cpp 9 #include "SkCornerPathEffect.h"
15 SkCornerPathEffect::SkCornerPathEffect(SkScalar radius) {
22 SkCornerPathEffect::~SkCornerPathEffect() {}
38 bool SkCornerPathEffect::filterPath(SkPath* dst, const SkPath& src,
147 sk_sp<SkFlattenable> SkCornerPathEffect::CreateProc(SkReadBuffer& buffer) {
148 return SkCornerPathEffect::Make(buffer.readScalar());
151 void SkCornerPathEffect::flatten(SkWriteBuffer& buffer) const {
156 void SkCornerPathEffect::toString(SkString* str) const
    [all...]
  /external/skqp/src/effects/
SkCornerPathEffect.cpp 9 #include "SkCornerPathEffect.h"
15 SkCornerPathEffect::SkCornerPathEffect(SkScalar radius) : fRadius(radius) {}
16 SkCornerPathEffect::~SkCornerPathEffect() {}
32 bool SkCornerPathEffect::filterPath(SkPath* dst, const SkPath& src,
141 sk_sp<SkFlattenable> SkCornerPathEffect::CreateProc(SkReadBuffer& buffer) {
142 return SkCornerPathEffect::Make(buffer.readScalar());
145 void SkCornerPathEffect::flatten(SkWriteBuffer& buffer) const {
150 void SkCornerPathEffect::toString(SkString* str) const
    [all...]

Completed in 155 milliseconds