Lines Matching refs:SkVertices
11 #include "include/core/SkVertices.h"
18 /** Class that adds methods to SkVertices that are only intended for use internal to Skia.
19 This class is purely a privileged window into SkVertices. It should never have additional
23 SkVertices::VertexMode mode() const { return fVertices->fMode; }
41 static sk_sp<SkVertices> Decode(SkReadBuffer&);
44 explicit SkVerticesPriv(SkVertices* vertices) : fVertices(vertices) {}
51 SkVertices* fVertices;
53 friend class SkVertices; // to construct this type
56 inline SkVerticesPriv SkVertices::priv() { return SkVerticesPriv(this); }
58 inline const SkVerticesPriv SkVertices::priv() const { // NOLINT(readability-const-return-type)
59 return SkVerticesPriv(const_cast<SkVertices*>(this));