Home
last modified time | relevance | path

Searched refs:bm0 (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/jni/android/graphics/
DBitmap.cpp1299 SkBitmap bm0; in Bitmap_sameAs() local
1301 reinterpret_cast<Bitmap*>(bm0Handle)->getSkBitmap(&bm0); in Bitmap_sameAs()
1303 if (bm0.width() != bm1.width() || in Bitmap_sameAs()
1304 bm0.height() != bm1.height() || in Bitmap_sameAs()
1305 bm0.colorType() != bm1.colorType()) { in Bitmap_sameAs()
1309 SkAutoLockPixels alp0(bm0); in Bitmap_sameAs()
1313 if (NULL == bm0.getPixels() || NULL == bm1.getPixels()) { in Bitmap_sameAs()
1317 if (bm0.colorType() == kIndex_8_SkColorType) { in Bitmap_sameAs()
1318 SkColorTable* ct0 = bm0.getColorTable(); in Bitmap_sameAs()
1336 const int h = bm0.height(); in Bitmap_sameAs()
[all …]