Searched defs:tmpPath (Results 1 - 9 of 9) sorted by relevance

/external/skia/src/gpu/gl/
H A DGrGLPathRange.cpp72 SkTLazy<SkPath> tmpPath; local
82 if (!stroke->applyDashToPath(tmpPath.init(), &tmpStroke, *skPath)) {
85 skPath = tmpPath.get();
89 if (!tmpPath.isValid()) {
90 tmpPath.init();
92 if (!stroke->applyToPath(tmpPath.get(), *tmpPath.get())) {
H A DGrGLPath.cpp273 SkTLazy<SkPath> tmpPath; local
281 if (stroke->applyDashToPath(tmpPath.init(), &tmpStroke, *skPath)) {
282 skPath = tmpPath.get();
294 if (!tmpPath.isValid()) {
295 tmpPath.init();
297 SkAssertResult(stroke->applyToPath(tmpPath.get(), *skPath));
298 skPath = tmpPath.get();
/external/skia/src/gpu/
H A DGrBlurUtils.cpp163 SkTLazy<SkPath> tmpPath; local
171 SkPath* strokedPath = pathIsMutable ? pathPtr : tmpPath.init();
190 SkPath* devPathPtr = pathIsMutable ? pathPtr : tmpPath.init();
263 SkTLazy<SkPath> tmpPath; local
266 if (!strokeInfo.isDashed() && pathEffect && pathEffect->filterPath(tmpPath.init(), *pathPtr,
268 pathPtr = tmpPath.get();
298 SkTLazy<SkPath> tmpPath; local
314 result = tmpPath.init();
H A DGrDrawContext.cpp742 SkTLazy<SkPath> tmpPath; local
760 if (!strokeInfo.applyDashToPath(tmpPath.init(), &dashlessStrokeInfo, *pathPtr)) {
763 pathPtr = tmpPath.get();
779 if (!tmpPath.isValid()) {
780 tmpPath.init();
783 if (!dashlessStrokeInfo.applyToPath(tmpPath.get(), *pathPtr)) {
786 pathPtr = tmpPath.get();
/external/pdfium/core/src/fxge/skia/
H A Dfx_skia_device.cpp75 SkPath tmpPath; local
101 doFill = paint->getFillPath(*pathPtr, &tmpPath, &cullRect);
102 pathPtr = &tmpPath;
/external/skia/src/gpu/batches/
H A DGrAAConvexPathRenderer.cpp880 SkTLazy<SkPath> tmpPath; variable
882 SkPath* tmpPathPtr = tmpPath.init(*pathPtr);
H A DGrPLSPathRenderer.cpp858 SkTLazy<SkPath> tmpPath; local
860 SkPath* tmpPathPtr = tmpPath.init(*pathPtr);
/external/skia/src/core/
H A DSkDraw.cpp1031 SkPath tmpPath; local
1034 tmpPath.setIsVolatile(true);
1042 result = &tmpPath;
1087 doFill = paint->getFillPath(*pathPtr, &tmpPath, cullRectPtr,
1089 pathPtr = &tmpPath;
1104 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
H A DSkPaint.cpp2039 SkPath tmpPath; local
2041 if (fPathEffect && fPathEffect->filterPath(&tmpPath, src, &rec, cullRect)) {
2042 srcPtr = &tmpPath;
2046 if (srcPtr == &tmpPath) {
2048 // As it is, we want to save making a deep-copy from tmpPath -> dst
2049 // since we know we're just going to delete tmpPath when we return,
2051 dst->swap(tmpPath);

Completed in 1185 milliseconds