Lines Matching defs:path
236 // TODO: Currently this only works with tessellation because the tessellation path renderer owns and
237 // manages the atlas. The high-level concept could be generalized to support any path renderer going
248 SkPath path;
249 e.fShape.asPath(&path);
250 SkASSERT(!path.isInverseFillType());
252 // Toggling fill type does not affect the path's "generationID" key.
253 path.toggleInverseFillType();
256 scissorBounds, e.fLocalToDevice, path);
294 // Must invert the path
297 // better perhaps to just call a drawPath() since we know it'll use path rendering w/
496 // path for small paths means they contain each other).
502 return fShape.path().getGenerationID() == e.fShape.path().getGenerationID() ||
503 (fShape.path().getPoints(nullptr, 0) <= kMaxPathComparePoints &&
504 fShape.path() == e.fShape.path());
1550 // Reduce the path to anything simpler, will apply the transform if it's a scale+translate