Home | History | Annotate | Download | only in core

Lines Matching refs:dstPixels

151 inline void convert_config8888(uint32_t* dstPixels,
157 intptr_t dstPix = reinterpret_cast<intptr_t>(dstPixels);
162 dstPixels = reinterpret_cast<uint32_t*>(dstPix);
164 dstPixels[x] = convert_pixel<DST_CFG, SRC_CFG>(srcPixels[x]);
172 inline void convert_config8888(uint32_t* dstPixels,
181 convert_config8888<SkCanvas::kNative_Premul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
184 convert_config8888<SkCanvas::kNative_Unpremul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
187 convert_config8888<SkCanvas::kBGRA_Premul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
190 convert_config8888<SkCanvas::kBGRA_Unpremul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
193 convert_config8888<SkCanvas::kRGBA_Premul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
196 convert_config8888<SkCanvas::kRGBA_Unpremul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height);
206 void SkConvertConfig8888Pixels(uint32_t* dstPixels,
215 if (srcPixels == dstPixels) {
220 memcpy(dstPixels, srcPixels, srcRowBytes * height);
224 intptr_t dstPix = reinterpret_cast<intptr_t>(dstPixels);
227 dstPixels = reinterpret_cast<uint32_t*>(dstPix);
228 memcpy(dstPixels, srcPixels, 4 * width);
237 convert_config8888<SkCanvas::kNative_Premul_Config8888>(dstPixels, dstRowBytes, dstConfig, srcPixels, srcRowBytes, width, height);
240 convert_config8888<SkCanvas::kNative_Unpremul_Config8888>(dstPixels, dstRowBytes, dstConfig, srcPixels, srcRowBytes, width, height);
243 convert_config8888<SkCanvas::kBGRA_Premul_Config8888>(dstPixels, dstRowBytes, dstConfig, srcPixels, srcRowBytes, width, height);
246 convert_config8888<SkCanvas::kBGRA_Unpremul_Config8888>(dstPixels, dstRowBytes, dstConfig, srcPixels, srcRowBytes, width, height);
249 convert_config8888<SkCanvas::kRGBA_Premul_Config8888>(dstPixels, dstRowBytes, dstConfig, srcPixels, srcRowBytes, width, height);
252 convert_config8888<SkCanvas::kRGBA_Unpremul_Config8888>(dstPixels, dstRowBytes, dstConfig, srcPixels, srcRowBytes, width, height);