Home | History | Annotate | Download | only in core

Lines Matching refs:tmpBitmap

1297     SkBitmap    tmpBitmap;
1317 tmpBitmap.setConfig(SkBitmap::kA8_Config, this->width(), this->height(),
1319 if (!tmpBitmap.allocPixels(allocator, NULL)) {
1322 tmpBitmap.width(), tmpBitmap.height());
1325 GetBitmapAlpha(*this, tmpBitmap.getAddr8(0, 0), srcM.fRowBytes);
1329 tmpBitmap.swap(*dst);
1341 tmpBitmap.setConfig(SkBitmap::kA8_Config, dstM.fBounds.width(),
1343 if (!tmpBitmap.allocPixels(allocator, NULL)) {
1346 tmpBitmap.width(), tmpBitmap.height());
1349 memcpy(tmpBitmap.getPixels(), dstM.fImage, dstM.computeImageSize());
1353 SkDEBUGCODE(tmpBitmap.validate();)
1355 tmpBitmap.swap(*dst);