Searched refs:tmpPath (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFDeviceFlattener.cpp81 SkPath tmpPath; local
84 tmpPath = origPath;
85 pathPtr = &tmpPath;
95 bool fill = paintFlatten.getFillPath(*pathPtr, &tmpPath);
106 tmpPath.transform(*d.fMatrix);
112 INHERITED::drawPath(draw, tmpPath, paintFlatten, NULL, true);
/external/skia/src/pdf/
H A DSkPDFDeviceFlattener.cpp81 SkPath tmpPath; local
84 tmpPath = origPath;
85 pathPtr = &tmpPath;
95 bool fill = paintFlatten.getFillPath(*pathPtr, &tmpPath);
106 tmpPath.transform(*d.fMatrix);
112 INHERITED::drawPath(draw, tmpPath, paintFlatten, NULL, true);
/external/chromium_org/third_party/skia/src/gpu/
H A DGrAAConvexPathRenderer.cpp646 SkPath tmpPath; local
648 origPath.transform(viewMatrix, &tmpPath);
649 path = &tmpPath;
H A DGrContext.cpp1269 SkTLazy<SkPath> tmpPath; local
1278 if (stroke->applyToPath(tmpPath.init(), *pathPtr)) {
1279 pathPtr = tmpPath.get();
H A DSkGpuDevice.cpp746 SkTLazy<SkPath> tmpPath; local
753 result = tmpPath.init();
778 SkPath* strokedPath = pathIsMutable ? pathPtr : tmpPath.init();
787 SkPath* devPathPtr = pathIsMutable ? pathPtr : tmpPath.init();
/external/skia/src/gpu/
H A DGrAAConvexPathRenderer.cpp646 SkPath tmpPath; local
648 origPath.transform(viewMatrix, &tmpPath);
649 path = &tmpPath;
H A DGrContext.cpp1269 SkTLazy<SkPath> tmpPath; local
1278 if (stroke->applyToPath(tmpPath.init(), *pathPtr)) {
1279 pathPtr = tmpPath.get();
H A DSkGpuDevice.cpp746 SkTLazy<SkPath> tmpPath; local
753 result = tmpPath.init();
778 SkPath* strokedPath = pathIsMutable ? pathPtr : tmpPath.init();
787 SkPath* devPathPtr = pathIsMutable ? pathPtr : tmpPath.init();
/external/chromium_org/third_party/skia/src/core/
H A DSkDraw.cpp1005 SkPath tmpPath; local
1015 result = &tmpPath;
1060 doFill = paint->getFillPath(*pathPtr, &tmpPath, cullRectPtr);
1061 pathPtr = &tmpPath;
1076 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
H A DSkPaint.cpp2313 SkPath tmpPath; local
2315 if (fPathEffect && fPathEffect->filterPath(&tmpPath, src, &rec, cullRect)) {
2316 srcPtr = &tmpPath;
2320 if (srcPtr == &tmpPath) {
2322 // As it is, we want to save making a deep-copy from tmpPath -> dst
2323 // since we know we're just going to delete tmpPath when we return,
2325 dst->swap(tmpPath);
/external/skia/src/core/
H A DSkDraw.cpp1005 SkPath tmpPath; local
1015 result = &tmpPath;
1060 doFill = paint->getFillPath(*pathPtr, &tmpPath, cullRectPtr);
1061 pathPtr = &tmpPath;
1076 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
H A DSkPaint.cpp2324 SkPath tmpPath; local
2326 if (fPathEffect && fPathEffect->filterPath(&tmpPath, src, &rec, cullRect)) {
2327 srcPtr = &tmpPath;
2331 if (srcPtr == &tmpPath) {
2333 // As it is, we want to save making a deep-copy from tmpPath -> dst
2334 // since we know we're just going to delete tmpPath when we return,
2336 dst->swap(tmpPath);

Completed in 218 milliseconds