• Home
  • Raw
  • Download

Lines Matching refs:SkPixmap

4 #Class SkPixmap
27 #Method SkPixmap()
38 SkPixmap pixmap;
53 #SeeAlso SkPixmap(const SkImageInfo& info, const void* addr, size_t rowBytes) reset() SkAlphaType S…
59 #Method SkPixmap(const SkImageInfo& info, const void* addr, size_t rowBytes)
68 SkImage::MakeRasterCopy takes const SkPixmap& as an argument. The example
69 constructs a SkPixmap from the brace-delimited parameters.
83 #SeeAlso SkPixmap() reset() SkAlphaType SkColorType
100 SkPixmap pixmap(SkImageInfo::Make(25, 35, kRGBA_8888_SkColorType, kOpaque_SkAlphaType),
115 #SeeAlso SkPixmap() SkAlphaType SkColorType
132 SkPixmap pixmap(SkImageInfo::Make(image->width(), image->height(), kN32_SkColorType,
147 #SeeAlso SkPixmap(const SkImageInfo& info, const void* addr, size_t rowBytes) reset() SkAlphaType S…
161 SkPixmap pixmap;
180 #Method bool extractSubset(SkPixmap* subset, const SkIRect& area) const
192 SkPixmap pixmap(SkImageInfo::Make(image->width(), image->height(), kN32_SkColorType,
195 SkPixmap inset;
225 SkPixmap pixmap(SkImageInfo::Make(image->width(), image->height(), kN32_SkColorType,
228 SkPixmap inset;
261 SkPixmap badPixmap = {SkImageInfo::MakeA8(4, 4), nullptr, 2};
262 SkPixmap okPixmap = {SkImageInfo::MakeA8(4, 4), nullptr, 8};
289 SkPixmap pixmap(SkImageInfo::Make(image->width(), image->height(), kN32_SkColorType,
293 SkPixmap inset;
322 SkPixmap pixmap(info, nullptr, 64);
342 SkPixmap pixmap(SkImageInfo::MakeA8(16, 32), nullptr, 64);
366 SkPixmap pixmap(SkImageInfo::MakeA8(16, 32), nullptr, 64);
389 SkPixmap pixmap(SkImageInfo::MakeA8(16, 32), nullptr, 64);
413 SkPixmap pixmap(SkImageInfo::MakeN32(16, 32, kPremul_SkAlphaType,
445 SkPixmap pixmap(SkImageInfo::Make(width, height, kN32_SkColorType,
478 SkPixmap pixmap(SkImageInfo::MakeA8(width, height), nullptr, width);
505 SkPixmap pixmap(SkImageInfo::MakeN32(1, 1, kPremul_SkAlphaType), nullptr, rowBytes);
537 SkPixmap pixmap(info.makeColorType(colorType), nullptr, 4);
567 SkPixmap pixmap;
611 SkPixmap pixmap(SkImageInfo::Make(width, height, kN32_SkColorType,
655 SkPixmap pixmap(SkImageInfo::MakeN32(w, h, kPremul_SkAlphaType), &storage.front(), w * 4);
718 SkPixmap pixmap(SkImageInfo::MakeN32(w, h, kPremul_SkAlphaType), &storage.front(), w * 4);
742 SkPixmap pixmap(SkImageInfo::Make(w, h, kGray_8_SkColorType, kPremul_SkAlphaType),
767 SkPixmap pixmap(SkImageInfo::Make(w, h, kARGB_4444_SkColorType, kPremul_SkAlphaType),
792 SkPixmap pixmap(SkImageInfo::MakeN32(w, h, kPremul_SkAlphaType),
817 SkPixmap pixmap(SkImageInfo::Make(w, h, kRGBA_F16_SkColorType, kPremul_SkAlphaType),
842 SkPixmap pixmap(SkImageInfo::Make(w, h, kRGBA_F16_SkColorType, kPremul_SkAlphaType),
866 SkPixmap pixmap(SkImageInfo::Make(w, h, kGray_8_SkColorType, kPremul_SkAlphaType),
890 SkPixmap pixmap(SkImageInfo::Make(w, h, kARGB_4444_SkColorType, kPremul_SkAlphaType),
914 SkPixmap pixmap(SkImageInfo::Make(w, h, kRGBA_8888_SkColorType, kPremul_SkAlphaType),
938 SkPixmap pixmap(SkImageInfo::Make(w, h, kRGBA_F16_SkColorType, kPremul_SkAlphaType),
964 SkPixmap pixmap(SkImageInfo::Make(w, h, kRGBA_F16_SkColorType, kPremul_SkAlphaType),
994 SkPixmap pixmap(SkImageInfo::MakeN32(w, h, kPremul_SkAlphaType), storage, w * 4);
1025 SkPixmap pixmap(SkImageInfo::MakeN32(w, h, kPremul_SkAlphaType), storage, w * 4);
1067 SkPixmap pixmap(imageInfo, storage[0], 5);
1102 SkPixmap pixmap(imageInfo, storage[0], sizeof(storage) / 5);
1129 SkPixmap pixmap(SkImageInfo::Make(image->width(), image->height(), kN32_SkColorType,
1161 SkPixmap pixmap(info, storage, 3 * sizeof(uint64_t));
1193 SkPixmap pixmap(info, storage[0], sizeof(uint64_t));
1238 SkPixmap srcPixmap(srcInfo, (const void*) &pixels.front(), width * 4);
1253 SkPixmap dstPixmap(dstInfo, &dstPixels.front(), width * 2);
1302 SkPixmap pixmap(info, (const void*) &srcPixels.front(), rowBytes);
1309 SkPixmap dstmap(info, &dstPixels.front(), rowBytes);
1323 #Method bool readPixels(const SkPixmap& dst, int srcX, int srcY) const
1356 SkPixmap pixmap(info, (const void*) &srcPixels.front(), rowBytes);
1361 SkPixmap dstmap(info, &dstPixels.front(), rowBytes);
1377 #Method bool readPixels(const SkPixmap& dst) const
1387 SkPixmap pixmap(info, (const void*) &srcPixels.front(), rowBytes);
1392 SkPixmap dstmap(info, &dstPixels.front(), rowBytes);
1408 #Method bool scalePixels(const SkPixmap& dst, SkFilterQuality filterQuality) const
1421 SkPixmap pixmap(info, (const void*) &srcPixels.front(), rowBytes);
1428 SkPixmap dstmap(info, &dstPixels.front(), rowBytes);
1454 SkPixmap pixmap(info, storage, info.minRowBytes());
1476 SkPixmap pixmap(info, storage, info.minRowBytes());
1497 SkPixmap pixmap(info, storage, info.minRowBytes());
1512 #Class SkPixmap ##