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

/frameworks/base/core/jni/android/graphics/
H A DBitmap.cpp607 const SkBitmap* bm1) {
608 if (bm0->width() != bm1->width() ||
609 bm0->height() != bm1->height() ||
610 bm0->config() != bm1->config()) {
615 SkAutoLockPixels alp1(*bm1);
618 if (NULL == bm0->getPixels() || NULL == bm1->getPixels()) {
624 SkColorTable* ct1 = bm1->getColorTable();
646 if (memcmp(bm0->getAddr(0, y), bm1->getAddr(0, y), size) != 0) {
606 Bitmap_sameAs(JNIEnv* env, jobject, const SkBitmap* bm0, const SkBitmap* bm1) argument

Completed in 6 milliseconds