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

/frameworks/base/core/jni/android/graphics/
H A DBitmap.cpp498 int x, int y, int width, int height, const SkBitmap& dstBitmap) {
499 SkAutoLockPixels alp(dstBitmap);
500 void* dst = dstBitmap.getPixels();
501 FromColorProc proc = ChooseFromColorProc(dstBitmap);
511 dst = dstBitmap.getAddr(x, y);
516 dst = (char*)dst + dstBitmap.rowBytes();
519 dstBitmap.notifyPixelsChanged();
497 SetPixels(JNIEnv* env, jintArray srcColors, int srcOffset, int srcStride, int x, int y, int width, int height, const SkBitmap& dstBitmap) argument

Completed in 312 milliseconds