Searched defs:dstPixels (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/skia/src/core/
H A DSkConfig8888.h16 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 DSkConfig8888.cpp149 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 DSkConfig8888.h16 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 DSkConfig8888.cpp149 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 DSkBlurMask.cpp912 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 DSkBlurMask.cpp912 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,

Completed in 596 milliseconds