Home | History | Annotate | Download | only in core

Lines Matching refs:fMask

380         fRealBlitter->blitMask(fMask, fClipRect);
409 SkMask fMask;
421 fMask.fImage = (uint8_t*)fStorage;
422 fMask.fBounds = ir;
423 fMask.fRowBytes = ir.width();
424 fMask.fFormat = SkMask::kA8_Format;
431 memset(fStorage, 0, fMask.fBounds.height() * fMask.fRowBytes + 1);
506 SkASSERT(iy >= fMask.fBounds.fTop && iy < fMask.fBounds.fBottom);
507 iy -= fMask.fBounds.fTop; // make it relative to 0
519 SkASSERT(ix >= fMask.fBounds.fLeft && ix < fMask.fBounds.fRight);
523 x -= (fMask.fBounds.fLeft << SHIFT);
531 uint8_t* row = fMask.fImage + iy * fMask.fRowBytes + (x >> SHIFT);
543 SkASSERT(row >= fMask.fImage);
544 SkASSERT(row < fMask.fImage + kMAX_STORAGE + 1);
548 SkASSERT(row >= fMask.fImage);
549 SkASSERT(row + n + 1 < fMask.fImage + kMAX_STORAGE + 1);