/external/chromium_org/third_party/skia/src/core/ |
H A D | SkConfig8888.h | 16 void SkConvertConfig8888Pixels(uint32_t* dstPixels, 44 static inline void SkCopyBitmapToConfig8888(uint32_t* dstPixels, argument 55 SkConvertConfig8888Pixels(dstPixels, dstRowBytes, dstConfig8888, srcPixels, srcRowBytes, SkCanvas::kNative_Premul_Config8888, w, h); 71 uint32_t* dstPixels = reinterpret_cast<uint32_t*>(dstBmp.getPixels()); local 73 SkConvertConfig8888Pixels(dstPixels, dstRowBytes, SkCanvas::kNative_Premul_Config8888, srcPixels, srcRowBytes, srcConfig8888, w, h);
|
H A D | SkConfig8888.cpp | 149 inline void convert_config8888(uint32_t* dstPixels, argument 155 intptr_t dstPix = reinterpret_cast<intptr_t>(dstPixels); 160 dstPixels = reinterpret_cast<uint32_t*>(dstPix); 162 dstPixels[x] = convert_pixel<DST_CFG, SRC_CFG>(srcPixels[x]); 170 inline void convert_config8888(uint32_t* dstPixels, argument 179 convert_config8888<SkCanvas::kNative_Premul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height); 182 convert_config8888<SkCanvas::kNative_Unpremul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height); 185 convert_config8888<SkCanvas::kBGRA_Premul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height); 188 convert_config8888<SkCanvas::kBGRA_Unpremul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height); 191 convert_config8888<SkCanvas::kRGBA_Premul_Config8888, SRC_CFG>(dstPixels, dstRowByte 204 SkConvertConfig8888Pixels(uint32_t* dstPixels, size_t dstRowBytes, SkCanvas::Config8888 dstConfig, const uint32_t* srcPixels, size_t srcRowBytes, SkCanvas::Config8888 srcConfig, int width, int height) argument [all...] |
/external/skia/src/core/ |
H A D | SkConfig8888.h | 16 void SkConvertConfig8888Pixels(uint32_t* dstPixels, 44 static inline void SkCopyBitmapToConfig8888(uint32_t* dstPixels, argument 55 SkConvertConfig8888Pixels(dstPixels, dstRowBytes, dstConfig8888, srcPixels, srcRowBytes, SkCanvas::kNative_Premul_Config8888, w, h); 71 uint32_t* dstPixels = reinterpret_cast<uint32_t*>(dstBmp.getPixels()); local 73 SkConvertConfig8888Pixels(dstPixels, dstRowBytes, SkCanvas::kNative_Premul_Config8888, srcPixels, srcRowBytes, srcConfig8888, w, h);
|
H A D | SkConfig8888.cpp | 149 inline void convert_config8888(uint32_t* dstPixels, argument 155 intptr_t dstPix = reinterpret_cast<intptr_t>(dstPixels); 160 dstPixels = reinterpret_cast<uint32_t*>(dstPix); 162 dstPixels[x] = convert_pixel<DST_CFG, SRC_CFG>(srcPixels[x]); 170 inline void convert_config8888(uint32_t* dstPixels, argument 179 convert_config8888<SkCanvas::kNative_Premul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height); 182 convert_config8888<SkCanvas::kNative_Unpremul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height); 185 convert_config8888<SkCanvas::kBGRA_Premul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height); 188 convert_config8888<SkCanvas::kBGRA_Unpremul_Config8888, SRC_CFG>(dstPixels, dstRowBytes, srcPixels, srcRowBytes, width, height); 191 convert_config8888<SkCanvas::kRGBA_Premul_Config8888, SRC_CFG>(dstPixels, dstRowByte 204 SkConvertConfig8888Pixels(uint32_t* dstPixels, size_t dstRowBytes, SkCanvas::Config8888 dstConfig, const uint32_t* srcPixels, size_t srcRowBytes, SkCanvas::Config8888 srcConfig, int width, int height) argument [all...] |
/external/chromium_org/third_party/skia/src/effects/ |
H A D | SkBlurMask.cpp | 912 uint8_t* dstPixels = SkMask::AllocImage(dstSize); local 913 SkAutoTCallVProc<uint8_t, SkMask_FreeImage> autoCall(dstPixels); 967 uint8_t *outPixel = dstPixels + (x-pad)*dstWidth + y; // transposed output 973 dst->fImage = dstPixels; 985 dstPixels + pad*dst->fRowBytes + pad, 987 SkMask::FreeImage(dstPixels); 989 clamp_with_orig(dstPixels + pad*dst->fRowBytes + pad,
|
/external/skia/src/effects/ |
H A D | SkBlurMask.cpp | 912 uint8_t* dstPixels = SkMask::AllocImage(dstSize); local 913 SkAutoTCallVProc<uint8_t, SkMask_FreeImage> autoCall(dstPixels); 967 uint8_t *outPixel = dstPixels + (x-pad)*dstWidth + y; // transposed output 973 dst->fImage = dstPixels; 985 dstPixels + pad*dst->fRowBytes + pad, 987 SkMask::FreeImage(dstPixels); 989 clamp_with_orig(dstPixels + pad*dst->fRowBytes + pad,
|