Lines Matching defs:src
12 #include "src/core/SkConvertPixels.h"
13 #include "src/gpu/GrPixmap.h"
120 GrPixmap src = GrPixmap::Allocate(upmInfo);
121 uint32_t* srcPixels = (uint32_t*)src.addr();
129 GrConvertPixels(surf, src);
146 SkDebugf("Src : %08x\n", get_pixel(src, x, y));
176 SkBitmap src; src.allocPixels(upmInfo);
177 uint32_t* srcPixels = src.getAddr32(0, 0);
184 auto convert = [](const SkBitmap& dst, const SkBitmap& src){
186 src.info(), src.getAddr(0, 0), src.rowBytes()));
190 convert(surf, src);
203 SkDebugf("Src : %08x\n", *src.getAddr32(x, y));