Home
last modified time | relevance | path

Searched refs:dstPixmap (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/src/core/
DSkBlitBWMaskTemplate.h25 static void SK_BLITBWMASK_NAME(const SkPixmap& dstPixmap, const SkMask& srcMask, in SK_BLITBWMASK_NAME() argument
33 size_t bitmap_rowBytes = dstPixmap.rowBytes(); in SK_BLITBWMASK_NAME()
41 SK_BLITBWMASK_DEVTYPE* device = dstPixmap.SK_BLITBWMASK_GETADDR(cx, cy); in SK_BLITBWMASK_NAME()
/third_party/skia/docs/examples/
DImage_readPixels.cpp16 SkPixmap dstPixmap(info, &dstPixels.front(), width * 4); in draw() local
18 bitmap.installPixels(dstPixmap); in draw()
DBitmap_readPixels.cpp24 SkPixmap dstPixmap(dstInfo, &dstPixels.front(), width * 2); in draw() local
25 bitmap.installPixels(dstPixmap); in draw()
DPixmap_readPixels.cpp27 SkPixmap dstPixmap(dstInfo, &dstPixels.front(), width * 2); in draw() local
28 bitmap.installPixels(dstPixmap); in draw()
/third_party/skia/tests/
DReadPixelsTest.cpp446 SkPixmap dstPixmap(dstInfo, dstPixels, dstInfo.minRowBytes()); in test_conversion() local
447 bool success = src->readPixels(nullptr, dstPixmap, 0, 0); in test_conversion()