Home | History | Annotate | Download | only in gm

Lines Matching refs:cropRect

66     void drawClippedBitmap(SkCanvas* canvas, const SkBitmap& bitmap, const SkPaint& paint, SkScalar scale, const SkIRect& cropRect) {
83 scaleMatrix.mapRect(&cropRectFloat, SkRect::Make(cropRect));
99 SkIRect cropRect = SkIRect::MakeXYWH(i * 12,
103 SkImageFilter::CropRect rect(SkRect::Make(cropRect));
110 drawClippedBitmap(canvas, *bitmap, paint, SK_Scalar1, cropRect);
114 SkIRect cropRect = SkIRect::MakeXYWH(0, 0, 100, 100);
115 SkImageFilter::CropRect rect(SkRect::Make(cropRect));
119 drawClippedBitmap(canvas, fBitmap, paint, SkIntToScalar(2), cropRect);