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

  /external/chromium_org/third_party/skia/src/core/
SkConfig8888.h 18 static bool CopyPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
SkConfig8888.cpp 140 bool SkPixelInfo::CopyPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB,
155 dstPI.fPixels = dstPixels;
183 rect_memcpy(dstPixels, dstRB, srcPixels, srcRB, width * srcInfo.bytesPerPixel(), height);
210 SkPMColor16* SK_RESTRICT dstRow = (SkPMColor16*)dstPixels;
222 dstPixels = (char*)dstPixels + dstRB;
246 SkAutoTUnref<SkCanvas> canvas(SkCanvas::NewRasterDirect(dstInfo, dstPixels, dstRB));
SkBitmapDevice.cpp 159 void* dstPixels = fBitmap.getAddr(x, y);
162 if (SkPixelInfo::CopyPixels(dstInfo, dstPixels, dstRowBytes, srcInfo, srcPixels, srcRowBytes)) {
169 bool SkBitmapDevice::onReadPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
171 return fBitmap.readPixels(dstInfo, dstPixels, dstRowBytes, x, y);
SkBitmap.cpp 840 bool SkBitmap::readPixels(const SkImageInfo& requestedDstInfo, void* dstPixels, size_t dstRB,
845 if (NULL == dstPixels || dstRB < requestedDstInfo.minRowBytes()) {
868 dstPixels = ((char*)dstPixels - y * dstRB - x * dstInfo.bytesPerPixel());
882 return SkPixelInfo::CopyPixels(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, this->rowBytes(),
    [all...]
  /external/chromium_org/third_party/skia/platform_tools/android/examples/hello_skia_app/jni/
helloskia.cpp 25 void* dstPixels;
27 AndroidBitmap_lockPixels(env, dstBitmap, &dstPixels);
32 SkAutoTUnref<SkSurface> surface(SkSurface::NewRasterDirect(info, dstPixels, dstInfo.stride));
  /external/skia/platform_tools/android/examples/hello_skia_app/jni/
helloskia.cpp 25 void* dstPixels;
27 AndroidBitmap_lockPixels(env, dstBitmap, &dstPixels);
32 SkAutoTUnref<SkSurface> surface(SkSurface::NewRasterDirect(info, dstPixels, dstInfo.stride));
  /external/chromium_org/third_party/skia/include/utils/mac/
SkCGUtils.h 36 * Copy the pixels from src into the memory specified by info/rowBytes/dstPixels. On failure,
39 SK_API bool SkCopyPixelsFromCGImage(const SkImageInfo& info, size_t rowBytes, void* dstPixels,
  /external/skia/include/utils/mac/
SkCGUtils.h 36 * Copy the pixels from src into the memory specified by info/rowBytes/dstPixels. On failure,
39 SK_API bool SkCopyPixelsFromCGImage(const SkImageInfo& info, size_t rowBytes, void* dstPixels,
  /external/skia/src/core/
SkBitmapDevice.cpp 171 static bool copy_pixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
180 dstPI.fPixels = dstPixels;
204 rect_memcpy(dstPixels, dstRowBytes, srcPixels, srcRowBytes,
222 void* dstPixels = fBitmap.getAddr(x, y);
225 if (copy_pixels(dstInfo, dstPixels, dstRowBytes, srcInfo, srcPixels, srcRowBytes)) {
232 bool SkBitmapDevice::onReadPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
255 return copy_pixels(dstInfo, dstPixels, dstRowBytes, srcInfo, srcPixels, srcRowBytes);
  /external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
GifDecoder.java 432 private void decodeBitmapData(GifFrame frame, byte[] dstPixels) {
442 if (dstPixels == null || dstPixels.length < npix) {
443 dstPixels = new byte[npix]; // allocate new pixel array
536 dstPixels[pi++] = pixelStack[top];
541 dstPixels[i] = 0; // clear missing pixels
  /external/chromium_org/third_party/skia/src/effects/
SkBlurMask.cpp 907 uint8_t* dstPixels = SkMask::AllocImage(dstSize);
908 SkAutoTCallVProc<uint8_t, SkMask_FreeImage> autoCall(dstPixels);
    [all...]
  /external/skia/src/effects/
SkBlurMask.cpp 907 uint8_t* dstPixels = SkMask::AllocImage(dstSize);
908 SkAutoTCallVProc<uint8_t, SkMask_FreeImage> autoCall(dstPixels);
    [all...]
  /external/chromium_org/third_party/skia/tests/
BitmapCopyTest.cpp 592 SkPMColor dstPixels[16];
610 clear_4x4_pixels(dstPixels);
614 bool success = srcBM.readPixels(dstInfo, dstPixels, rowBytes,
625 SkPMColor dstC = dstPixels[y*4+x];
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
BlendComposite.java 202 int[] dstPixels = new int[width];
205 dstIn.getDataElements(0, y, width, 1, dstPixels);
217 pixel = dstPixels[x];
227 dstPixels[x] = (result[3] & 0xFF) << 24 |
232 dstPixels[x] =
241 dstOut.setDataElements(0, y, width, 1, dstPixels);
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkBitmap.h 627 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
    [all...]
SkCanvas.h 266 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
SkGpuDevice.cpp 226 bool SkGpuDevice::onReadPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
241 config, dstPixels, dstRowBytes, flags);
    [all...]
  /external/skia/src/gpu/
SkGpuDevice.cpp 262 bool SkGpuDevice::onReadPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
277 config, dstPixels, dstRowBytes, flags);
    [all...]

Completed in 293 milliseconds