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

/frameworks/base/core/jni/android/graphics/
H A DBitmap.cpp810 const SkBitmap* bm1 = reinterpret_cast<SkBitmap*>(bm1Handle); local
811 if (bm0->width() != bm1->width() ||
812 bm0->height() != bm1->height() ||
813 bm0->colorType() != bm1->colorType()) {
818 SkAutoLockPixels alp1(*bm1);
821 if (NULL == bm0->getPixels() || NULL == bm1->getPixels()) {
827 SkColorTable* ct1 = bm1->getColorTable();
851 // and bm1 both have pixel data() (have passed NULL == getPixels() check),
855 void *bm1Addr = bm1->getAddr(0, y);

Completed in 49 milliseconds