Lines Matching defs:height

209         yoff->fY = bounds.height() - 1;
313 void addColumn(int x, int y, U8CPU alpha, int height) {
314 SkASSERT(fBounds.contains(x, y + height - 1));
320 fCurrRow->fY = y + height - 1;
323 void addRectRun(int x, int y, int width, int height) {
324 SkASSERT(fBounds.contains(x + width - 1, y + height - 1));
333 fCurrRow->fY = y + height - 1;
336 void addAntiRectRun(int x, int y, int width, int height,
342 y + height - 1));
373 fCurrRow->fY = y + height - 1;
717 void blitV(int x, int y, int height, SkAlpha alpha) override {
718 if (height == 1) {
719 // We're still in scan-line order if height is 1
726 fBuilder->addColumn(x, y, alpha, height);
727 fLastY = y + height - 1;
731 void blitRect(int x, int y, int width, int height) override {
734 fBuilder->addRectRun(x, y, width, height);
735 fLastY = y + height - 1;
738 void blitAntiRect(int x, int y, int width, int height,
742 fBuilder->addAntiRectRun(x, y, width, height, leftAlpha, rightAlpha);
743 fLastY = y + height - 1;
900 const int lastY = fBounds.height() - 1;
1218 SkASSERT(lastY.fY + 1 <= fBounds.height());
1220 SkASSERT(lastY.fY + 1 == fBounds.height());
1323 yArray.setReserve(std::min(bounds.height(), 1024));
1742 void SkAAClipBlitter::blitV(int x, int y, int height, SkAlpha alpha) {
1743 if (fAAClip->quickContains(x, y, x + 1, y + height)) {
1744 fBlitter->blitV(x, y, height, alpha);
1752 if (dy > height) {
1753 dy = height;
1755 height -= dy;
1762 SkASSERT(height >= 0);
1763 if (height <= 0) {
1770 void SkAAClipBlitter::blitRect(int x, int y, int width, int height) {
1771 if (fAAClip->quickContains(x, y, x + width, y + height)) {
1772 fBlitter->blitRect(x, y, width, height);
1776 while (--height >= 0) {
1867 const int height = srcMask.fBounds.height();
1877 for (int y = 0; y < height; ++y) {
1941 rowMask.fRowBytes = mask->fRowBytes; // doesn't matter, since our height==1
1945 const int stopY = y + clip.height();