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

/frameworks/base/core/jni/android/graphics/
H A DBitmap.cpp531 const SkBitmap* bm1) {
532 if (bm0->width() != bm1->width() ||
533 bm0->height() != bm1->height() ||
534 bm0->config() != bm1->config()) {
539 SkAutoLockPixels alp1(*bm1);
542 if (NULL == bm0->getPixels() || NULL == bm1->getPixels()) {
548 SkColorTable* ct1 = bm1->getColorTable();
570 if (memcmp(bm0->getAddr(0, y), bm1->getAddr(0, y), size) != 0) {
530 Bitmap_sameAs(JNIEnv* env, jobject, const SkBitmap* bm0, const SkBitmap* bm1) argument

Completed in 39 milliseconds