Lines Matching refs:start
37 * In order to have lossless simplification of the geometry, it also tracks winding direction, start
57 // The direction and start index used when a shape does not have a representable winding,
93 // Report the shape type, winding direction, start index, and invertedness as a value suitable
105 // Returns the start index extracted from the path during simplification, if the shape's
109 // Override the direction and start parameters for the simplified contour. These are only
111 void setPathWindingParams(SkPathDirection dir, unsigned start) {
112 SkASSERT((this->isRect() && start < 4) || (this->isRRect() && start < 8) ||
113 (dir == kDefaultDir && start == kDefaultStart));
115 fStart = static_cast<uint8_t>(start);
152 // These also reset any extracted direction, start, and inverted state from a prior simplified
198 // be taken (e.g. dir and start are not required, arcs can be converted to ovals).
263 void simplifyRRect(const SkRRect& rrect, SkPathDirection dir, unsigned start, unsigned flags);
264 void simplifyRect(const SkRect& rect, SkPathDirection dir, unsigned start, unsigned flags);