HomeSort by relevance Sort by last modified time
    Searched defs:isCCW (Results 1 - 2 of 2) sorted by null

  /external/skia/src/core/
SkPathRef.cpp 59 static void transform_dir_and_start(const SkMatrix& matrix, bool isRRect, bool* isCCW,
104 *isCCW = !*isCCW;
180 bool isCCW = SkToBool(src.fRRectOrOvalIsCCW);
181 transform_dir_and_start(matrix, (*dst)->fIsRRect, &isCCW, &start);
182 (*dst)->fRRectOrOvalIsCCW = isCCW;
  /external/skia/include/core/
SkPath.h 188 bool isCCW = false;
189 bool result = fPathRef->isOval(rect, &isCCW, start);
191 *dir = isCCW ? kCCW_Direction : kCW_Direction;
210 bool isCCW = false;
211 bool result = fPathRef->isRRect(rrect, &isCCW, start);
213 *dir = isCCW ? kCCW_Direction : kCW_Direction;
    [all...]

Completed in 672 milliseconds