Searched defs:SkPath (Results 1 - 7 of 7) sorted by relevance
/external/skia/src/gpu/ |
H A D | GrSoftwarePathRenderer.cpp | 18 const SkPath&, 33 const SkPath&, 46 const SkPath& path, 124 const SkPath& path, 15 canDrawPath(const GrDrawTarget*, const GrPipelineBuilder*, const SkMatrix& viewMatrix, const SkPath&, const GrStrokeInfo& stroke, bool antiAlias) const argument 31 onGetStencilSupport(const GrDrawTarget*, const GrPipelineBuilder*, const SkPath&, const GrStrokeInfo&) const argument
|
H A D | GrPathRenderer.h | 20 class SkPath; 86 const SkPath& path, 109 const SkPath& path, 127 const SkPath& path, 149 const SkPath& path, 179 const SkPath&, 191 const SkPath&, 202 const SkPath& path, 218 static void GetPathDevBounds(const SkPath& path, 225 static void GetPathDevBounds(const SkPath 177 onGetStencilSupport(const GrDrawTarget*, const GrPipelineBuilder*, const SkPath&, const GrStrokeInfo&) const argument [all...] |
H A D | GrStencilAndCoverPathRenderer.cpp | 23 static GrPathRendering::FillType convert_skpath_filltype(SkPath::FillType fill) { 27 case SkPath::kWinding_FillType: 28 case SkPath::kInverseWinding_FillType: 30 case SkPath::kEvenOdd_FillType: 31 case SkPath::kInverseEvenOdd_FillType: 59 const SkPath& path, 71 const SkPath&, 76 static GrPath* get_gr_path(GrGpu* gpu, const SkPath& skPath, const SkStrokeRec& stroke) { 92 const SkPath& path, 104 const SkPath 69 onGetStencilSupport(const GrDrawTarget*, const GrPipelineBuilder*, const SkPath&, const GrStrokeInfo&) const argument [all...] |
H A D | GrAADistanceFieldPathRenderer.cpp | 90 const SkPath& path, 118 const SkPath&, 136 SkPath fPath; 317 const SkPath& path, 460 const SkPath& path, 582 const SkPath& path, 116 onGetStencilSupport(const GrDrawTarget*, const GrPipelineBuilder*, const SkPath&, const GrStrokeInfo&) const argument
|
H A D | GrTessellatingPathRenderer.cpp | 540 void path_to_contours(const SkPath& path, SkScalar tolerance, const SkRect& clipBounds, 547 SkPath::Iter iter(path, false); 563 SkPath::Verb verb = iter.next(pts); 565 case SkPath::kConic_Verb: { 576 case SkPath::kMove_Verb: 585 case SkPath::kLine_Verb: { 589 case SkPath::kQuad_Verb: { 595 case SkPath::kCubic_Verb: { 601 case SkPath::kClose_Verb: 609 case SkPath 1337 onGetStencilSupport( const GrDrawTarget*, const GrPipelineBuilder*, const SkPath&, const GrStrokeInfo&) const argument [all...] |
/external/skia/include/core/ |
H A D | SkPath.h | 24 /** \class SkPath 26 The SkPath class encapsulates compound (multiple contour) geometric paths 29 class SK_API SkPath { class 31 SK_DECLARE_INST_COUNT(SkPath); 33 SkPath(); 34 SkPath(const SkPath&); 35 ~SkPath(); 37 SkPath& operator=(const SkPath [all...] |
/external/skia/src/core/ |
H A D | SkPath.cpp | 12 #include "SkPath.h" 31 static bool is_degenerate(const SkPath& path) { 32 SkPath::Iter iter(path, false); 34 return SkPath::kDone_Verb == iter.next(pts); 39 SkAutoDisableDirectionCheck(SkPath* path) : fPath(path) { 40 fSaved = static_cast<SkPath::Direction>(fPath->fDirection); 48 SkPath* fPath; 49 SkPath::Direction fSaved; 67 SkAutoPathBoundsUpdate(SkPath* path, const SkRect& r) : fRect(r) { 71 SkAutoPathBoundsUpdate(SkPath* pat 127 SkPath::SkPath() function in class:SkPath 144 SkPath::SkPath(const SkPath& that) function in class:SkPath [all...] |
Completed in 709 milliseconds