Home | History | Annotate | Download | only in effects

Lines Matching defs:paint

17 sk_sp<SkImageFilter> SkPaintImageFilter::Make(const SkPaint& paint,
19 return sk_sp<SkImageFilter>(new SkPaintImageFilter(paint, cropRect));
22 SkPaintImageFilter::SkPaintImageFilter(const SkPaint& paint, const CropRect* cropRect)
24 , fPaint(paint) {
29 SkPaint paint;
30 buffer.readPaint(&paint);
31 return SkPaintImageFilter::Make(paint, &common.cropRect());
74 SkPaint paint = xformer->apply(fPaint);
75 if (paint != fPaint) {
76 return SkPaintImageFilter::Make(paint, this->getCropRectIfSet());