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

/frameworks/base/core/jni/android/graphics/
H A DBitmap.cpp116 const SkBitmap& dstBitmap, bool isPremultiplied) {
117 SkAutoLockPixels alp(dstBitmap);
118 void* dst = dstBitmap.getPixels();
119 FromColorProc proc = ChooseFromColorProc(dstBitmap.config(), isPremultiplied);
129 dst = dstBitmap.getAddr(x, y);
134 dst = (char*)dst + dstBitmap.rowBytes();
137 dstBitmap.notifyPixelsChanged();
114 SetPixels(JNIEnv* env, jintArray srcColors, int srcOffset, int srcStride, int x, int y, int width, int height, const SkBitmap& dstBitmap, bool isPremultiplied) argument

Completed in 70 milliseconds