Home
last modified time | relevance | path

Searched refs:arcSweep (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/core/
DSkPathBuilder.cpp438 SkPathDirection arcSweep, SkPoint endPt) { in arcTo() argument
489 …if ((arcSweep == SkPathDirection::kCCW) != SkToBool(arcLarge)) { // flipped from the original imp… in arcTo()
501 …if (thetaArc < 0 && (arcSweep == SkPathDirection::kCW)) { // arcSweep flipped from the original i… in arcTo()
503 …} else if (thetaArc > 0 && (arcSweep != SkPathDirection::kCW)) { // arcSweep flipped from the ori… in arcTo()
DSkPath.cpp1156 SkPathDirection arcSweep, SkScalar x, SkScalar y) { in arcTo() argument
1207 …if ((arcSweep == SkPathDirection::kCCW) != SkToBool(arcLarge)) { // flipped from the original imp… in arcTo()
1219 …if (thetaArc < 0 && (arcSweep == SkPathDirection::kCW)) { // arcSweep flipped from the original i… in arcTo()
1221 …} else if (thetaArc > 0 && (arcSweep != SkPathDirection::kCW)) { // arcSweep flipped from the ori… in arcTo()
/external/skqp/src/core/
DSkPath.cpp1407 SkPath::Direction arcSweep, SkScalar x, SkScalar y) { in arcTo() argument
1458 if (SkToBool(arcSweep) != SkToBool(arcLarge)) { // flipped from the original implementation in arcTo()
1470 if (thetaArc < 0 && !arcSweep) { // arcSweep flipped from the original implementation in arcTo()
1472 } else if (thetaArc > 0 && arcSweep) { // arcSweep flipped from the original implementation in arcTo()