Lines Matching defs:dst
41 const SkRect dst = SkRect::MakeWH(177, 15);
44 str.printf("scale %g %g", dst.width() / img->width(), dst.height() / img->height());
56 canvas->drawImageRect(img.get(), dst, samplings[i], nullptr);
85 SkIRect dst = SkIRect::MakeWH(img->width(), img->height());
86 while (dst.width() > 5) {
87 canvas->drawImageRect(img, SkRect::Make(dst), sampling, nullptr);
88 dst.offset(dst.width() + 10, 0);
89 dst.fRight = dst.fLeft + dst.width()/2;
90 dst.fBottom = dst.fTop + dst.height()/2;
134 SkIRect dst = SkIRect::MakeWH(img->width() / 2, img->height() / 2);
135 while (dst.width() > 5) {
136 canvas->drawImageRect(img, SkRect::Make(dst), sampling, nullptr);
137 dst.offset(dst.width() + 10, 0);
138 dst.fRight = dst.fLeft + dst.width() / 2;
139 dst.fBottom = dst.fTop + dst.height() / 2;