HomeSort by relevance Sort by last modified time
    Searched refs:srcPixels (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/skia/src/core/
SkConfig8888.h 19 const SkImageInfo& srcInfo, const void* srcPixels, size_t srcRowBytes,
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)) {
SkBitmapDevice.cpp 160 bool SkBitmapDevice::onWritePixels(const SkImageInfo& srcInfo, const void* srcPixels,
174 if (SkPixelInfo::CopyPixels(dstInfo, dstPixels, dstRowBytes, srcInfo, srcPixels, srcRowBytes)) {
SkBitmap.cpp 949 const void* srcPixels = this->getAddr(srcR.x(), srcR.y());
950 return SkPixelInfo::CopyPixels(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, this->rowBytes(),
    [all...]
  /external/skia/src/core/
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,
225 if (copy_pixels(dstInfo, dstPixels, dstRowBytes, srcInfo, srcPixels, srcRowBytes)) {
252 const void* srcPixels = fBitmap.getAddr(x, y);
255 return copy_pixels(dstInfo, dstPixels, dstRowBytes, srcInfo, srcPixels, srcRowBytes);
  /external/chromium_org/third_party/skia/tests/
BitmapCopyTest.cpp 584 SkPMColor srcPixels[16];
585 fill_4x4_pixels(srcPixels);
587 srcBM.installPixels(srcInfo, srcPixels, rowBytes);
  /external/chromium_org/third_party/skia/src/effects/
SkBlurMask.cpp 906 const uint8_t* srcPixels = src.fImage;
922 const uint8_t* srcptr = srcPixels + y * srcWidth;
    [all...]
  /external/skia/src/effects/
SkBlurMask.cpp 906 const uint8_t* srcPixels = src.fImage;
922 const uint8_t* srcptr = srcPixels + y * srcWidth;
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
BlendComposite.java 201 int[] srcPixels = new int[width];
207 src.getDataElements(0, y, width, 1, srcPixels);
211 int pixel = srcPixels[x];
    [all...]

Completed in 136 milliseconds