|
bool | filterPath (SkPath *dst, const SkPath &src, SkStrokeRec *, const SkRect *cullR) const |
| Given a src path (input) and a stroke-rec (input and output), apply this effect to the src path, returning the new path in dst, and return true. More...
|
|
void | computeFastBounds (SkRect *dst, const SkRect &src) const |
| Compute a conservative bounds for its effect, given the src bounds. More...
|
|
bool | asPoints (PointData *results, const SkPath &src, const SkStrokeRec &, const SkMatrix &, const SkRect *cullR) const |
| Does applying this path effect to 'src' yield a set of points? If so, optionally return the points in 'results'. More...
|
|
DashType | asADash (DashInfo *info) const |
|
SkFlattenable::Type | getFlattenableType () const override |
|
virtual Factory | getFactory () const =0 |
| Implement this to return a factory function pointer that can be called to recreate your class given a buffer (previously written to by your override of flatten(). More...
|
|
virtual const char * | getTypeName () const =0 |
| Returns the name of the object's class. More...
|
|
virtual void | flatten (SkWriteBuffer &) const |
| Override this if your subclass needs to record data that it will need to recreate itself from its CreateProc (returned by getFactory()). More...
|
|
sk_sp< SkData > | serialize (const SkSerialProcs *=nullptr) const |
|
size_t | serialize (void *memory, size_t memory_size, const SkSerialProcs *=nullptr) const |
|
bool | unique () const |
| May return true if the caller is the only owner. More...
|
|
void | ref () const |
| Increment the reference count. More...
|
|
void | unref () const |
| Decrement the reference count. More...
|
|
|
static sk_sp< SkPathEffect > | MakeSum (sk_sp< SkPathEffect > first, sk_sp< SkPathEffect > second) |
| Returns a patheffect that apples each effect (first and second) to the original path, and returns a path with the sum of these. More...
|
|
static sk_sp< SkPathEffect > | MakeCompose (sk_sp< SkPathEffect > outer, sk_sp< SkPathEffect > inner) |
| Returns a patheffect that applies the inner effect to the path, and then applies the outer effect to the result of the inner's. More...
|
|
static void | RegisterFlattenables () |
|
static SkFlattenable::Type | GetFlattenableType () |
|
static sk_sp< SkPathEffect > | Deserialize (const void *data, size_t size, const SkDeserialProcs *procs=nullptr) |
|
static Factory | NameToFactory (const char name[]) |
|
static const char * | FactoryToName (Factory) |
|
static void | Register (const char name[], Factory) |
|
static sk_sp< SkFlattenable > | Deserialize (Type, const void *data, size_t length, const SkDeserialProcs *procs=nullptr) |
|
SkPathEffect is the base class for objects in the SkPaint that affect the geometry of a drawing primitive before it is transformed by the canvas' matrix and drawn.
Dashing is implemented as a subclass of SkPathEffect.
If the PathEffect can be represented as a dash pattern, asADash will return kDash_DashType and None otherwise.
If a non NULL info is passed in, the various DashInfo will be filled in if the PathEffect can be a dash pattern. If passed in info has an fCount equal or greater to that of the effect, it will memcpy the values of the dash intervals into the info. Thus the general approach will be call asADash once with default info to get DashType and fCount. If effect can be represented as a dash pattern, allocate space for the intervals in info, then call asADash again with the same info and the intervals will get copied in.
Enumerator |
---|
kNone_DashType | ignores the info parameter
|
kDash_DashType | fills in all of the info parameter
|
Given a src path (input) and a stroke-rec (input and output), apply this effect to the src path, returning the new path in dst, and return true.
If this effect cannot be applied, return false and ignore dst and stroke-rec.
The stroke-rec specifies the initial request for stroking (if any). The effect can treat this as input only, or it can choose to change the rec as well. For example, the effect can decide to change the stroke's width or join, or the effect can change the rec from stroke to fill (or fill to stroke) in addition to returning a new (dst) path.
If this method returns true, the caller will apply (as needed) the resulting stroke-rec to dst and then draw.