Lines Matching refs:dst
61 SkMask dst;
62 dst.fImage = nullptr;
63 dst.fFormat = SkMask::kA8_Format;
73 dst.fBounds.setEmpty();
74 dst.fRowBytes = 0;
75 return dst;
78 dst.fBounds.setWH(SkTo<int>(dstW), SkTo<int>(dstH));
79 dst.fBounds.offset(src.fBounds.x(), src.fBounds.y());
80 dst.fBounds.offset(-radiusX, -radiusY);
81 dst.fRowBytes = SkTo<uint32_t>(dstW);
84 dst.fImage = SkMask::AllocImage(toAlloc);
87 return dst;