Lines Matching refs:Pixmap
1 #Topic Pixmap
10 Pixmap provides a utility to pair SkImageInfo with pixels and row bytes.
11 Pixmap is a low level class which provides convenience functions to access
12 raster destinations. Canvas can not draw Pixmap, nor does Pixmap provide
15 Use Bitmap to draw pixels referenced by Pixmap; use Surface to draw into
16 pixels referenced by Pixmap.
18 Pixmap does not try to manage the lifetime of the pixel memory. Use Pixel_Ref
92 #Line # reuses existing Pixmap with replacement values ##
1268 exceed Pixmap (width(), height()).
1275 Pixels are copied only if pixel conversion is possible. If Pixmap colorType is
1277 If Pixmap colorType is kGray_8_SkColorType, dstInfo.colorSpace() must match.
1278 If Pixmap alphaType is kOpaque_SkAlphaType, dstInfo.alphaType() must
1279 match. If Pixmap colorSpace is nullptr, dstInfo.colorSpace() must match. Returns
1283 false if Pixmap width() or height() is zero or negative. Returns false if:
1285 #Formula # abs(srcX) >= Pixmap width() ##, or if #Formula # abs(srcY) >= Pixmap height() ##.
1326 exceed Pixmap (width(), height()). dst specifies width, height, Color_Type,
1331 Pixels are copied only if pixel conversion is possible. If Pixmap colorType is
1333 If Pixmap colorType is kGray_8_SkColorType, dst.info().colorSpace() must match.
1334 If Pixmap alphaType is kOpaque_SkAlphaType, dst.info().alphaType() must
1335 match. If Pixmap colorSpace is nullptr, dst.info().colorSpace() must match. Returns
1339 false Pixmap width() or height() is zero or negative. Returns false if:
1341 #Formula # abs(srcX) >= Pixmap width() ##, or if #Formula # abs(srcY) >= Pixmap height() ##.
1514 #Topic Pixmap ##