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

  /external/skia/include/effects/
SkArcToPathEffect.h 13 class SK_API SkArcToPathEffect : public SkPathEffect {
22 return new SkArcToPathEffect(radius);
28 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkArcToPathEffect)
31 explicit SkArcToPathEffect(SkScalar radius);
  /external/skia/src/effects/
SkArcToPathEffect.cpp 8 #include "SkArcToPathEffect.h"
14 SkArcToPathEffect::SkArcToPathEffect(SkScalar radius) : fRadius(radius) {}
16 bool SkArcToPathEffect::filterPath(SkPath* dst, const SkPath& src,
64 SkFlattenable* SkArcToPathEffect::CreateProc(SkReadBuffer& buffer) {
65 return SkArcToPathEffect::Create(buffer.readScalar());
68 void SkArcToPathEffect::flatten(SkWriteBuffer& buffer) const {
73 void SkArcToPathEffect::toString(SkString* str) const {
74 str->appendf("SkArcToPathEffect: (");

Completed in 206 milliseconds