Searched defs:isCCW (Results 1 - 8 of 8) sorted by relevance

/external/skia/src/core/
H A DSkPathRef.cpp72 static void transform_dir_and_start(const SkMatrix& matrix, bool isRRect, bool* isCCW, argument
117 *isCCW = !*isCCW;
193 bool isCCW = SkToBool(src.fRRectOrOvalIsCCW); variable
194 transform_dir_and_start(matrix, (*dst)->fIsRRect, &isCCW, &start);
195 (*dst)->fRRectOrOvalIsCCW = isCCW;
H A DSkPathPriv.h185 bool isCCW = false; local
186 bool result = path.fPathRef->isOval(rect, &isCCW, start);
188 *dir = isCCW ? SkPath::kCCW_Direction : SkPath::kCW_Direction;
213 bool isCCW = false; local
214 bool result = path.fPathRef->isRRect(rrect, &isCCW, start);
216 *dir = isCCW ? SkPath::kCCW_Direction : SkPath::kCW_Direction;
H A DSkPath_serial.cpp56 bool isCCW; local
58 if (fPathRef->isOval(&oval, &isCCW, &start)) {
62 } else if (!fPathRef->isRRect(&rrect, &isCCW, &start)) {
72 int firstDir = isCCW ? SkPathPriv::kCCW_FirstDirection : SkPathPriv::kCW_FirstDirection;
/external/skqp/src/core/
H A DSkPathRef.cpp72 static void transform_dir_and_start(const SkMatrix& matrix, bool isRRect, bool* isCCW, argument
117 *isCCW = !*isCCW;
193 bool isCCW = SkToBool(src.fRRectOrOvalIsCCW); variable
194 transform_dir_and_start(matrix, (*dst)->fIsRRect, &isCCW, &start);
195 (*dst)->fRRectOrOvalIsCCW = isCCW;
H A DSkPath.cpp2075 bool isCCW; local
2077 if (fPathRef->isOval(&oval, &isCCW, &start)) {
2081 } else if (!fPathRef->isRRect(&rrect, &isCCW, &start)) {
2091 uint8_t firstDir = isCCW ? SkPathPriv::kCCW_FirstDirection : SkPathPriv::kCW_FirstDirection;
/external/skia/include/private/
H A DSkPathRef.h103 void setIsOval(bool isOval, bool isCCW, unsigned start) { argument
104 fPathRef->setIsOval(isOval, isCCW, start);
107 void setIsRRect(bool isRRect, bool isCCW, unsigned start) { argument
108 fPathRef->setIsRRect(isRRect, isCCW, start);
173 * @param isCCW is the oval CCW (or CW if false).
182 bool isOval(SkRect* rect, bool* isCCW, unsigned* start) const { argument
187 if (isCCW) {
188 *isCCW = SkToBool(fRRectOrOvalIsCCW);
198 bool isRRect(SkRRect* rrect, bool* isCCW, unsigned* start) const { argument
203 if (isCCW) {
495 setIsOval(bool isOval, bool isCCW, unsigned start) argument
501 setIsRRect(bool isRRect, bool isCCW, unsigned start) argument
[all...]
/external/skqp/include/private/
H A DSkPathRef.h103 void setIsOval(bool isOval, bool isCCW, unsigned start) { argument
104 fPathRef->setIsOval(isOval, isCCW, start);
107 void setIsRRect(bool isRRect, bool isCCW, unsigned start) { argument
108 fPathRef->setIsRRect(isRRect, isCCW, start);
173 * @param isCCW is the oval CCW (or CW if false).
182 bool isOval(SkRect* rect, bool* isCCW, unsigned* start) const { argument
187 if (isCCW) {
188 *isCCW = SkToBool(fRRectOrOvalIsCCW);
198 bool isRRect(SkRRect* rrect, bool* isCCW, unsigned* start) const { argument
203 if (isCCW) {
492 setIsOval(bool isOval, bool isCCW, unsigned start) argument
498 setIsRRect(bool isRRect, bool isCCW, unsigned start) argument
[all...]
/external/skqp/include/core/
H A DSkPath.h302 bool isCCW = false; local
303 bool result = fPathRef->isOval(rect, &isCCW, start);
305 *dir = isCCW ? kCCW_Direction : kCW_Direction;
330 bool isCCW = false; local
331 bool result = fPathRef->isRRect(rrect, &isCCW, start);
333 *dir = isCCW ? kCCW_Direction : kCW_Direction;

Completed in 291 milliseconds