Home | History | Annotate | Download | only in core

Lines Matching full:tmpsrc

1032     SkBitmap tmpSrc;
1040 if (fPixelRef->readPixels(&tmpSrc, &subset)) {
1041 SkASSERT(tmpSrc.width() == this->width());
1042 SkASSERT(tmpSrc.height() == this->height());
1044 // did we get lucky and we can just return tmpSrc?
1045 if (tmpSrc.config() == dstConfig && NULL == alloc) {
1046 dst->swap(tmpSrc);
1054 src = &tmpSrc;