Searched defs:devPath (Results 1 - 23 of 23) sorted by relevance

/external/skia/src/core/
H A DSkRasterClip.cpp261 // region that results from scan converting devPath.
264 SkPath devPath; local
266 devPath = path;
268 path.transform(matrix, &devPath);
269 devPath.setIsVolatile(true);
279 return this->setPath(devPath, this->bwRgn(), doAA);
283 clip.setPath(devPath, base, doAA);
290 return this->setPath(devPath, base, doAA);
293 clip.setPath(devPath, base, doAA);
H A DSkScalerContext.cpp128 SkPath devPath, fillPath; local
131 this->internalGetPath(glyph->getPackedID(), &fillPath, &devPath, &fillToDevMatrix);
135 // just use devPath
136 const SkIRect ir = devPath.getBounds().roundOut();
464 SkPath devPath, fillPath; local
468 this->internalGetPath(glyph->getPackedID(), &fillPath, &devPath, &fillToDevMatrix);
476 generateMask(mask, devPath, fPreBlend);
552 SkPath* devPath, SkMatrix* fillToDevMatrix) {
574 // assume fillPath and devPath are already empty.
610 if (devPath) {
551 internalGetPath(SkPackedGlyphID glyphID, SkPath* fillPath, SkPath* devPath, SkMatrix* fillToDevMatrix) argument
[all...]
H A DSkMaskFilter.cpp237 bool SkMaskFilterBase::filterPath(const SkPath& devPath, const SkMatrix& matrix, argument
243 rectCount = countNestedRects(devPath, rects);
267 if (!SkDraw::DrawToMask(devPath, &clip.getBounds(), this, &matrix, &srcM,
H A DSkDraw.cpp958 void SkDraw::drawDevPath(const SkPath& devPath, const SkPaint& paint, bool drawCoverage, argument
978 if (as_MFB(paint.getMaskFilter())->filterPath(devPath, *fMatrix, *fRC, blitter, style)) {
1028 proc(devPath, *fRC, blitter); // proceed directly if we're not in threaded init-once
1036 iData->fElement->setDrawFn([proc, devPath, blitter](SkArenaAlloc* alloc,
1039 proc(devPath, *tileDraw.fRC, blitter);
1045 SkScan::AntiFillPath(devPath, *fRC, &nullBlitter, record);
1046 iData->fElement->setDrawFn([record, devPath, blitter](SkArenaAlloc* alloc,
1050 SkScan::AntiFillPath(devPath, *tileDraw.fRC, blitter, record);
1672 static bool compute_bounds(const SkPath& devPath, const SkIRect* clipBounds, argument
1675 if (devPath
1714 draw_into_mask(const SkMask& mask, const SkPath& devPath, SkStrokeRec::InitStyle style) argument
1745 DrawToMask(const SkPath& devPath, const SkIRect* clipBounds, const SkMaskFilter* filter, const SkMatrix* filterMatrix, SkMask* mask, SkMask::CreateMode mode, SkStrokeRec::InitStyle style) argument
[all...]
/external/skia/src/gpu/
H A DGrBlurUtils.cpp56 const SkPath& devPath,
62 if (!SkDraw::DrawToMask(devPath, &clipBounds, filter, &viewMatrix, &srcM,
104 // Create a mask of 'devPath' and place the result in 'mask'.
107 const SkPath& devPath,
136 rtContext->drawPath(clip, std::move(maskPaint), aa, translate, devPath,
52 sw_draw_with_mask_filter(GrContext* context, GrRenderTargetContext* renderTargetContext, const GrClip& clipData, const SkMatrix& viewMatrix, const SkPath& devPath, const SkMaskFilter* filter, const SkIRect& clipBounds, GrPaint&& paint, SkStrokeRec::InitStyle fillOrHairline) argument
105 create_mask_GPU(GrContext* context, const SkIRect& maskRect, const SkPath& devPath, SkStrokeRec::InitStyle fillOrHairline, GrAA aa, int sampleCnt) argument
/external/skia/tools/fonts/
H A DSkRandomScalerContext.cpp102 SkPath devPath, fillPath; local
105 this->internalGetPath(glyph->getPackedID(), &fillPath, &devPath, &fillToDevMatrix);
107 // just use devPath
108 const SkIRect ir = devPath.getBounds().roundOut();
/external/skqp/src/core/
H A DSkRasterClip.cpp261 // region that results from scan converting devPath.
264 SkPath devPath; local
266 devPath = path;
268 path.transform(matrix, &devPath);
269 devPath.setIsVolatile(true);
279 return this->setPath(devPath, this->bwRgn(), doAA);
283 clip.setPath(devPath, base, doAA);
290 return this->setPath(devPath, base, doAA);
293 clip.setPath(devPath, base, doAA);
H A DSkMaskFilter.cpp236 bool SkMaskFilterBase::filterPath(const SkPath& devPath, const SkMatrix& matrix, argument
242 rectCount = countNestedRects(devPath, rects);
266 if (!SkDraw::DrawToMask(devPath, &clip.getBounds(), this, &matrix, &srcM,
H A DSkScalerContext.cpp134 SkPath devPath, fillPath; local
137 this->internalGetPath(glyph->getPackedID(), &fillPath, &devPath, &fillToDevMatrix);
141 // just use devPath
142 const SkIRect ir = devPath.getBounds().roundOut();
470 SkPath devPath, fillPath; local
474 this->internalGetPath(glyph->getPackedID(), &fillPath, &devPath, &fillToDevMatrix);
482 generateMask(mask, devPath, fPreBlend);
558 SkPath* devPath, SkMatrix* fillToDevMatrix) {
580 // assume fillPath and devPath are already empty.
616 if (devPath) {
557 internalGetPath(SkPackedGlyphID glyphID, SkPath* fillPath, SkPath* devPath, SkMatrix* fillToDevMatrix) argument
[all...]
H A DSkDraw.cpp953 void SkDraw::drawDevPath(const SkPath& devPath, const SkPaint& paint, bool drawCoverage, argument
957 if (!devPath.isInverseFillType()) {
960 SkRect pathBounds = devPath.getBounds().makeOutset(1, 1);
988 if (as_MFB(paint.getMaskFilter())->filterPath(devPath, *fMatrix, *fRC, blitter, style)) {
1033 proc(devPath, *fRC, blitter);
1645 static bool compute_bounds(const SkPath& devPath, const SkIRect* clipBounds, argument
1648 if (devPath.isEmpty()) {
1653 *bounds = devPath.getBounds().makeOutset(SK_ScalarHalf, SK_ScalarHalf).roundOut();
1687 static void draw_into_mask(const SkMask& mask, const SkPath& devPath, argument
1715 draw.drawPath(devPath, pain
1718 DrawToMask(const SkPath& devPath, const SkIRect* clipBounds, const SkMaskFilter* filter, const SkMatrix* filterMatrix, SkMask* mask, SkMask::CreateMode mode, SkStrokeRec::InitStyle style) argument
[all...]
/external/skqp/src/gpu/
H A DGrBlurUtils.cpp56 const SkPath& devPath,
62 if (!SkDraw::DrawToMask(devPath, &clipBounds, filter, &viewMatrix, &srcM,
104 // Create a mask of 'devPath' and place the result in 'mask'.
107 const SkPath& devPath,
136 rtContext->drawPath(clip, std::move(maskPaint), aa, translate, devPath,
52 sw_draw_with_mask_filter(GrContext* context, GrRenderTargetContext* renderTargetContext, const GrClip& clipData, const SkMatrix& viewMatrix, const SkPath& devPath, const SkMaskFilter* filter, const SkIRect& clipBounds, GrPaint&& paint, SkStrokeRec::InitStyle fillOrHairline) argument
105 create_mask_GPU(GrContext* context, const SkIRect& maskRect, const SkPath& devPath, SkStrokeRec::InitStyle fillOrHairline, GrAA aa, int sampleCnt) argument
/external/skqp/tools/
H A DSkRandomScalerContext.cpp102 SkPath devPath, fillPath; local
105 this->internalGetPath(glyph->getPackedID(), &fillPath, &devPath, &fillToDevMatrix);
107 // just use devPath
108 const SkIRect ir = devPath.getBounds().roundOut();
/external/skia/src/utils/
H A DSkShadowUtils.cpp197 sk_sp<SkVertices> add(const SkPath& devPath, const AmbientVerticesFactory& ambient, argument
199 return fAmbientSet.add(devPath, ambient, matrix, translate);
207 sk_sp<SkVertices> add(const SkPath& devPath, const SpotVerticesFactory& spot, argument
209 return fSpotSet.add(devPath, spot, matrix, translate);
/external/skia/tools/debugger/
H A DSkDebugCanvas.cpp253 SkPath devPath; local
261 this->addClipStackData(devPath, operand, elementOp);
263 devPath = operand;
265 Op(devPath, operand, (SkPathOp) elementOp, &devPath);
268 this->lastClipStackData(devPath);
726 void SkDebugCanvas::addClipStackData(const SkPath& devPath, const SkPath& operand, argument
729 if (!lastClipStackData(devPath)) {
736 addPathData(fCalledAddStackData ? devPath : fSaveDevPath, "path");
745 bool SkDebugCanvas::lastClipStackData(const SkPath& devPath) { argument
[all...]
/external/skqp/src/utils/
H A DSkShadowUtils.cpp196 sk_sp<SkVertices> add(const SkPath& devPath, const AmbientVerticesFactory& ambient, argument
198 return fAmbientSet.add(devPath, ambient, matrix, translate);
206 sk_sp<SkVertices> add(const SkPath& devPath, const SpotVerticesFactory& spot, argument
208 return fSpotSet.add(devPath, spot, matrix, translate);
/external/skqp/tools/debugger/
H A DSkDebugCanvas.cpp253 SkPath devPath; local
261 this->addClipStackData(devPath, operand, elementOp);
263 devPath = operand;
265 Op(devPath, operand, (SkPathOp) elementOp, &devPath);
268 this->lastClipStackData(devPath);
726 void SkDebugCanvas::addClipStackData(const SkPath& devPath, const SkPath& operand, argument
729 if (!lastClipStackData(devPath)) {
736 addPathData(fCalledAddStackData ? devPath : fSaveDevPath, "path");
745 bool SkDebugCanvas::lastClipStackData(const SkPath& devPath) { argument
[all...]
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.osgi_3.10.100.v20150529-1857.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 681 milliseconds