/third_party/skia/docs/examples/ |
H A D | Paint_getPathEffect.cpp | 8 SkDebugf("nullptr %c= path effect\n", paint.getPathEffect() ? '!' : '='); in REG_FIDDLE() 10 SkDebugf("nullptr %c= path effect\n", paint.getPathEffect() ? '!' : '='); in REG_FIDDLE()
|
H A D | Paint_refPathEffect.cpp | 10 SkDebugf("path effect unique: %s\n", paint1.getPathEffect()->unique() ? "true" : "false"); in REG_FIDDLE() 12 SkDebugf("path effect unique: %s\n", paint1.getPathEffect()->unique() ? "true" : "false"); in REG_FIDDLE()
|
H A D | Paint_move_SkPaint.cpp | 11 SkDebugf("path effect unique: %s\n", dashed.getPathEffect()->unique() ? "true" : "false"); in REG_FIDDLE()
|
H A D | PaintDump.cpp | 64 if (p.getPathEffect()) { in REG_FIDDLE()
|
/third_party/skia/src/core/ |
H A D | SkPaint.cpp | 297 if (paint.getPathEffect() || in Flatten() 313 buffer.writeFlattenable(paint.getPathEffect()); in Flatten() 421 if (this->getPathEffect() && in canComputeFastBounds() 422 !as_PEB(this->getPathEffect())->computeFastBounds(nullptr)) { in canComputeFastBounds() 436 if (this->getPathEffect()) { in doComputeFastBounds() 438 SkAssertResult(as_PEB(this->getPathEffect())->computeFastBounds(&tmpSrc)); in doComputeFastBounds()
|
H A D | SkPictureCommon.h | 29 if (paint && paint->getPathEffect()) { in checkPaint() 37 const SkPathEffect* effect = op.paint.getPathEffect(); in operator ()()
|
H A D | SkDraw.cpp | 249 if (paint.getPathEffect() || paint.getMaskFilter()) { in init() 437 if (2 == count && paint.getPathEffect()) { in drawPoints() 447 if (as_PEB(paint.getPathEffect())->asPoints(&pointData, path, stroke, ctm, in drawPoints() 575 if (paint.getPathEffect() || paint.getMaskFilter() || in ComputeRectType() 785 if (paint.getPathEffect() || paint.getStyle() != SkPaint::kFill_Style) { in drawRRect() 893 if (origPaint.getPathEffect() || origPaint.getStyle() != SkPaint::kFill_Style) { in drawPath() 934 if (paint->getPathEffect() || paint->getStyle() != SkPaint::kFill_Style) { in drawPath()
|
H A D | SkDevice.cpp | 124 paint.getPathEffect(); in drawRegion() 144 bool isFillNoPathEffect = SkPaint::kFill_Style == paint.getStyle() && !paint.getPathEffect(); in drawArc() 266 SkASSERT(!paint.getPathEffect()); in drawEdgeAAImageSet()
|
H A D | SkTextBlobTrace.cpp | 51 || p.getPathEffect() != nullptr; in DumpTrace()
|
H A D | SkRecordOpts.cpp | 130 if (layerPaint->getPathEffect() || in fold_opacity_layer_color_to_paint()
|
H A D | SkScalerContext.h | 226 : fPathEffect(paint.getPathEffect()) in SkScalerContextEffects()
|
/third_party/skia/include/core/ |
H A D | SkPaint.h | 526 SkPathEffect* getPathEffect() const { return fPathEffect.get(); } in getPathEffect() function in SkPaint 660 effects |= reinterpret_cast<uintptr_t>(this->getPathEffect()); in computeFastBounds()
|
/third_party/skia/experimental/graphite/src/ |
H A D | Device.cpp | 231 if (!(flags & DrawFlags::kIgnorePathEffect) && paint.getPathEffect()) { in drawShape() 238 if (paint.getPathEffect()->filterPath(&dst, shape.asPath(), &newStyle, in drawShape() 262 SkASSERT(!SkToBool(paint.getPathEffect()) || (flags & DrawFlags::kIgnorePathEffect)); in drawShape()
|
/third_party/skia/tools/ |
H A D | blob_cache_sim.cpp | 33 && paint.getPathEffect() == nullptr in main()
|
/third_party/skia/src/gpu/v1/ |
H A D | Device.cpp | 347 if (paint.getPathEffect() && 2 == count && SkCanvas::kLines_PointMode == mode) { in drawPoints() 370 paint.getPathEffect() || in drawPoints() 418 if (paint.getMaskFilter() || paint.getPathEffect()) { in drawRect() 516 if (stroke.isFillStyle() && !paint.getMaskFilter() && !paint.getPathEffect()) { in drawDRRect()
|
/third_party/skia/src/pdf/ |
H A D | SkPDFDevice.cpp | 415 if (paint->getPathEffect() || this->localToDevice().hasPerspective()) { in drawPoints() 576 if (paint->getPathEffect()) { in internalDrawPath() 821 if (runPaint.getPathEffect() in internalDrawGlyphRun() 1150 NOT_IMPLEMENTED(paint.getPathEffect() != nullptr, false); in populate_graphic_state_entry_from_paint()
|
/third_party/skia/samplecode/ |
H A D | SampleSlides.cpp | 31 SkPathEffect* pe = paint->getPathEffect(); in compose_pe()
|
/third_party/skia/gm/ |
H A D | circulararcs.cpp | 25 SkASSERT(paint->getPathEffect() == nullptr); in set_strokeandfill()
|
H A D | patheffects.cpp | 33 SkPathEffect* pe = paint->getPathEffect(); in compose_pe()
|
H A D | strokefill.cpp | 26 SkASSERT(paint->getPathEffect() == nullptr); in set_strokeandfill()
|
H A D | dashing.cpp | 588 SkASSERT(dashPaint.getPathEffect()); in DEF_SIMPLE_GM()
|
/third_party/skia/modules/skparagraph/src/ |
H A D | Decorations.cpp | 16 SkASSERT(decorStyle.skPaint().getPathEffect() == nullptr); in draw_line_as_rect()
|
/third_party/skia/src/svg/ |
H A D | SkSVGDevice.cpp | 328 if (paint.getPathEffect() != nullptr) { 900 if (path_paint->getPathEffect()) { 1077 paint.getPathEffect();
|
/third_party/skia/src/xps/ |
H A D | SkXPSDevice.cpp | 1079 return paint.getPathEffect() || in rect_must_be_pathed() 1509 const bool paintHasPathEffect = paint->getPathEffect() in drawPath()
|
/third_party/skia/tools/fonts/ |
H A D | TestSVGTypeface.cpp | 1269 bool fillNoPathEffect = SkPaint::kFill_Style == paint.getStyle() && !paint.getPathEffect(); 1286 if (paint.getPathEffect() || paint.getStyle() != SkPaint::kFill_Style) {
|