HomeSort by relevance Sort by last modified time
    Searched refs:tmpSrc (Results 1 - 6 of 6) sorted by null

  /external/skia/src/core/
SkDevice.cpp 394 SkRect bitmapBounds, tmpSrc, tmpDst;
401 tmpSrc = *src;
403 tmpSrc = bitmapBounds;
405 matrix.setRectToRect(tmpSrc, dst, SkMatrix::kFill_ScaleToFit);
410 // clip the tmpSrc to the bounds of the bitmap, and recompute dstRect if
414 if (!tmpSrc.intersect(bitmapBounds)) {
417 // recompute dst, based on the smaller tmpSrc
418 matrix.mapRect(&tmpDst, tmpSrc);
425 tmpSrc.roundOut(&srcIR);
445 if (extractedBitmapBounds == tmpSrc) {
    [all...]
SkBitmap.cpp 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;
    [all...]
SkPaint.cpp     [all...]
  /external/skia/legacy/src/core/
SkCanvas.cpp     [all...]
SkBitmap.cpp 881 SkBitmap tmpSrc;
884 if (fPixelRef && fPixelRef->readPixels(&tmpSrc)) {
885 SkASSERT(tmpSrc.width() == this->width());
886 SkASSERT(tmpSrc.height() == this->height());
888 // did we get lucky and we can just return tmpSrc?
889 if (tmpSrc.config() == dstConfig && NULL == alloc) {
890 dst->swap(tmpSrc);
895 src = &tmpSrc;
    [all...]
  /external/skia/src/gpu/
SkGpuDevice.cpp     [all...]

Completed in 151 milliseconds