Home
last modified time | relevance | path

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

/external/skia/src/core/
DSkRRect.cpp490 const bool isClockwise = matrix.getSkewX() < 0; in transform() local
493 xScale = matrix.getSkewY() * (isClockwise ? 1 : -1); in transform()
494 yScale = matrix.getSkewX() * (isClockwise ? -1 : 1); in transform()
496 const int dir = isClockwise ? 3 : 1; in transform()
/external/skia/tools/viewer/
DSimpleStrokerSlide.cpp29 static bool isClockwise(const SkPoint& a, const SkPoint& b) { return a.cross(b) > 0; } in isClockwise() function
227 if (!isClockwise(before, after)) { in join()
DVariableWidthStrokerSlide.cpp26 inline bool isClockwise(const SkPoint& a, const SkPoint& b) { return a.cross(b) > 0; } in isClockwise() function
795 outerJoin = isClockwise(before, after); in join()
799 outerJoin = !isClockwise(before, after); in join()