Lines Matching refs:paint
15 SkPaint paint;
16 paint.setAntiAlias(true);
17 paint.setColor(SK_ColorBLUE);
18 paint.setStyle(SkPaint::kStroke_Style);
19 paint.setStrokeWidth(20);
20 offscreen.drawCircle(50, 50, 39, paint);
22 paint.setMaskFilter(SkMaskFilter::MakeBlur(kNormal_SkBlurStyle, radiusToSigma(25)));
24 bitmap.extractAlpha(&alpha, &paint, &offset);
25 paint.setColor(SK_ColorRED);
26 canvas->drawImage(bitmap.asImage(), 0, -offset.fY, SkSamplingOptions(), &paint);
27 canvas->drawImage(alpha.asImage(), 100 + offset.fX, 0, SkSamplingOptions(), &paint);