Lines Matching refs:pixmap
44 bool SkWebpEncoder::Encode(SkWStream* stream, const SkPixmap& pixmap, const Options& opts) { in Encode() argument
45 if (!SkPixmapIsValid(pixmap)) { in Encode()
49 if (SkColorTypeIsAlphaOnly(pixmap.colorType())) { in Encode()
55 if (nullptr == pixmap.addr()) { in Encode()
67 pic.width = pixmap.width(); in Encode()
68 pic.height = pixmap.height(); in Encode()
90 sk_sp<SkData> icc = icc_from_color_space(pixmap.info()); in Encode()
95 const SkColorType ct = pixmap.colorType(); in Encode()
96 const bool premul = pixmap.alphaType() == kPremul_SkAlphaType; in Encode()
100 const SkPixmap* src = &pixmap; in Encode()
108 auto info = pixmap.info().makeColorType(kRGBA_8888_SkColorType) in Encode()
111 || !pixmap.readPixels(tmpBm.info(), tmpBm.getPixels(), tmpBm.rowBytes())) { in Encode()
114 src = &tmpBm.pixmap(); in Encode()