Searched defs:srcPixels (Results 1 - 6 of 6) sorted by relevance
/external/chromium_org/third_party/skia/src/core/ |
H A D | SkConfig8888.cpp | 141 const SkImageInfo& srcInfo, const void* srcPixels, size_t srcRB, 161 srcPI.fPixels = srcPixels; 183 rect_memcpy(dstPixels, dstRB, srcPixels, srcRB, width * srcInfo.bytesPerPixel(), height); 212 const uint8_t* SK_RESTRICT srcRow = (const uint8_t*)srcPixels; 217 const SkPMColor* SK_RESTRICT srcRow = (const SkPMColor*)srcPixels; 223 srcPixels = (const char*)srcPixels + srcRB; 243 if (!bm.installPixels(srcInfo, const_cast<void*>(srcPixels), srcRB, ctable, NULL, NULL)) { 140 CopyPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, const SkImageInfo& srcInfo, const void* srcPixels, size_t srcRB, SkColorTable* ctable) argument
|
H A D | SkBitmapDevice.cpp | 150 bool SkBitmapDevice::onWritePixels(const SkImageInfo& srcInfo, const void* srcPixels, argument 162 if (SkPixelInfo::CopyPixels(dstInfo, dstPixels, dstRowBytes, srcInfo, srcPixels, srcRowBytes)) {
|
H A D | SkBitmap.cpp | 881 const void* srcPixels = this->getAddr(srcR.x(), srcR.y()); local 882 return SkPixelInfo::CopyPixels(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, this->rowBytes(),
|
/external/skia/src/core/ |
H A D | SkBitmapDevice.cpp | 172 const SkImageInfo& srcInfo, const void* srcPixels, size_t srcRowBytes) { 186 srcPI.fPixels = srcPixels; 204 rect_memcpy(dstPixels, dstRowBytes, srcPixels, srcRowBytes, 211 bool SkBitmapDevice::onWritePixels(const SkImageInfo& srcInfo, const void* srcPixels, argument 225 if (copy_pixels(dstInfo, dstPixels, dstRowBytes, srcInfo, srcPixels, srcRowBytes)) { 252 const void* srcPixels = fBitmap.getAddr(x, y); local 255 return copy_pixels(dstInfo, dstPixels, dstRowBytes, srcInfo, srcPixels, srcRowBytes); 171 copy_pixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, const SkImageInfo& srcInfo, const void* srcPixels, size_t srcRowBytes) argument
|
/external/chromium_org/third_party/skia/src/effects/ |
H A D | SkBlurMask.cpp | 906 const uint8_t* srcPixels = src.fImage; local 922 const uint8_t* srcptr = srcPixels + y * srcWidth; 979 srcPixels, src.fRowBytes, 985 dst->fRowBytes, srcPixels, src.fRowBytes, srcWidth, srcHeight, style);
|
/external/skia/src/effects/ |
H A D | SkBlurMask.cpp | 906 const uint8_t* srcPixels = src.fImage; local 922 const uint8_t* srcptr = srcPixels + y * srcWidth; 979 srcPixels, src.fRowBytes, 985 dst->fRowBytes, srcPixels, src.fRowBytes, srcWidth, srcHeight, style);
|
Completed in 203 milliseconds