Searched defs:SkCornerPathEffect (Results 1 - 2 of 2) sorted by relevance

/external/skia/include/effects/
H A DSkCornerPathEffect.h13 /** \class SkCornerPathEffect
15 SkCornerPathEffect is a subclass of SkPathEffect that can turn sharp corners
18 class SK_API SkCornerPathEffect : public SkPathEffect { class in inherits:SkPathEffect
23 static SkCornerPathEffect* Create(SkScalar radius) {
24 return SkNEW_ARGS(SkCornerPathEffect, (radius));
26 virtual ~SkCornerPathEffect();
32 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkCornerPathEffect)
39 explicit SkCornerPathEffect(SkScalar radius);
/external/skia/src/effects/
H A DSkCornerPathEffect.cpp10 #include "SkCornerPathEffect.h"
16 SkCornerPathEffect::SkCornerPathEffect(SkScalar radius) : fRadius(radius) {} function in class:SkCornerPathEffect
17 SkCornerPathEffect::~SkCornerPathEffect() {}
33 bool SkCornerPathEffect::filterPath(SkPath* dst, const SkPath& src,
142 SkFlattenable* SkCornerPathEffect::CreateProc(SkReadBuffer& buffer) {
143 return SkCornerPathEffect::Create(buffer.readScalar());
146 void SkCornerPathEffect::flatten(SkWriteBuffer& buffer) const {
151 void SkCornerPathEffect
[all...]

Completed in 803 milliseconds