Home
last modified time | relevance | path

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

/third_party/flutter/skia/src/core/
DSkRRect.cpp437 const bool isClockwise = matrix.getSkewX() < 0; in transform() local
440 xScale = matrix.getSkewY() * (isClockwise ? 1 : -1); in transform()
441 yScale = matrix.getSkewX() * (isClockwise ? -1 : 1); in transform()
443 const int dir = isClockwise ? 3 : 1; in transform()
/third_party/skia/samplecode/
DSampleSimpleStroker.cpp28 static bool isClockwise(const SkPoint& a, const SkPoint& b) { return a.cross(b) > 0; } in isClockwise() function
226 if (!isClockwise(before, after)) { in join()
DSampleVariableWidthStroker.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()
/third_party/skia/src/core/
DSkRRect.cpp481 const bool isClockwise = matrix.getSkewX() < 0; in transform() local
484 xScale = matrix.getSkewY() * (isClockwise ? 1 : -1); in transform()
485 yScale = matrix.getSkewX() * (isClockwise ? -1 : 1); in transform()
487 const int dir = isClockwise ? 3 : 1; in transform()