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

/frameworks/base/core/jni/android/graphics/
H A DBitmap.cpp606 static bool Bitmap_sameAs(JNIEnv* env, jobject, const SkBitmap* bm0, argument
608 if (bm0->width() != bm1->width() ||
609 bm0->height() != bm1->height() ||
610 bm0->config() != bm1->config()) {
614 SkAutoLockPixels alp0(*bm0);
618 if (NULL == bm0->getPixels() || NULL == bm1->getPixels()) {
622 if (bm0->config() == SkBitmap::kIndex8_Config) {
623 SkColorTable* ct0 = bm0->getColorTable();
643 const int h = bm0->height();
644 const size_t size = bm0
[all...]

Completed in 7 milliseconds