Home
last modified time | relevance | path

Searched refs:fillType (Results 1 – 9 of 9) sorted by relevance

/external/skia/src/pathops/
DSkPathOpsSimplify.cpp157 SkPath::FillType fillType = path.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType in Simplify() local
163 result->setFillType(fillType); in Simplify()
183 result->setFillType(fillType); in Simplify()
201 result->setFillType(fillType); in Simplify()
207 temp.setFillType(fillType); in Simplify()
211 result->setFillType(fillType); in Simplify()
DSkPathOpsOp.cpp243 SkPath::FillType fillType = gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()] in OpDebug() local
273 result->setFillType(fillType); in OpDebug()
292 result->setFillType(fillType); in OpDebug()
297 temp.setFillType(fillType); in OpDebug()
301 result->setFillType(fillType); in OpDebug()
DSkPathOpsDebug.cpp654 SkPath::FillType fillType = path.getFillType(); in ShowOnePath() local
655 SkASSERT(fillType >= SkPath::kWinding_FillType && fillType <= SkPath::kInverseEvenOdd_FillType); in ShowOnePath()
659 SkDebugf(" %s.setFillType(SkPath::%s);\n", name, gFillTypeStr[fillType]); in ShowOnePath()
/external/skia/src/animator/
DSkDrawPath.cpp19 SK_PROPERTY(fillType),
27 SK_MEMBER_PROPERTY(fillType, FillType),
145 case SK_PROPERTY(fillType): in getProperty()
168 case SK_PROPERTY(fillType): in setProperty()
DSkAnimateSchema.xsd2046 <!-- @attribute fillType One of @pattern. -->
2047 <xs:attribute name="fillType" type="Sk:FillType"/>
/external/skia/src/gpu/
DGrTessellatingPathRenderer.cpp621 inline bool apply_fill_type(SkPath::FillType fillType, int winding) { in apply_fill_type() argument
622 switch (fillType) { in apply_fill_type()
1322 SkPoint* polys_to_triangles(Poly* polys, SkPath::FillType fillType, SkPoint* data) { in polys_to_triangles() argument
1325 if (apply_fill_type(fillType, poly->fWinding)) { in polys_to_triangles()
1407 SkPath::FillType fillType = fPath.getFillType(); in generateGeometry() local
1408 if (SkPath::IsInverseFillType(fillType)) { in generateGeometry()
1431 if (apply_fill_type(fillType, poly->fWinding) && poly->fCount >= 3) { in generateGeometry()
1451 SkPoint* end = polys_to_triangles(polys, fillType, verts); in generateGeometry()
/external/skia/tests/
DPathOpsExtendedTest.cpp416 SkPath::FillType fillType = useXor ? SkPath::kEvenOdd_FillType : SkPath::kWinding_FillType; in testSimplify() local
417 path.setFillType(fillType); in testSimplify()
435 if (fillType == SkPath::kEvenOdd_FillType) { in testSimplify()
/external/skia/src/core/
DSkScan_Path.cpp99 static void walk_edges(SkEdge* prevHead, SkPath::FillType fillType, in walk_edges() argument
106 int windingMask = (fillType & 1) ? 1 : -1; in walk_edges()
/external/skia/src/utils/debugger/
DSkDebugCanvas.cpp617 SkPath::FillType fillType = path.getFillType(); in addPathData() local
620 gFillTypeStrs[fillType]); in addPathData()