Lines Matching defs:height
34 kUnknown_SkAlphaType, and with a width and height of zero. Use
35 reset() to associate pixels, SkColorType, SkAlphaType, width, and height
44 /** Creates SkPixmap from info width, height, SkAlphaType, and SkColorType.
57 @param info width, height, SkAlphaType, SkColorType of SkImageInfo
66 /** Sets width, height, row bytes to zero; pixel address to nullptr; SkColorType to
76 /** Sets width, height, SkAlphaType, and SkColorType from info.
87 @param info width, height, SkAlphaType, SkColorType of SkImageInfo
95 /** Changes SkColorSpace in SkImageInfo; preserves width, height, SkAlphaType, and
109 /** Sets subset width, height, pixel address to intersection of SkPixmap with area,
115 @param subset storage for width, height, pixel address of intersection
121 /** Returns width, height, SkAlphaType, SkColorType, and SkColorSpace.
154 @return pixel height in SkImageInfo
156 int height() const { return fInfo.height(); }
193 /** Returns SkIRect { 0, 0, width(), height() }.
195 @return integral rectangle from origin to width() and height()
197 SkIRect bounds() const { return SkIRect::MakeWH(this->width(), this->height()); }
216 Returns zero if height() or width() is 0.
217 Returns height() times rowBytes() if colorType() is kUnknown_SkColorType.
256 @param y row index, zero or greater, and less than height()
268 @param y row index, zero or greater, and less than height()
282 @param y row index, zero or greater, and less than height()
366 @param y row index, zero or greater, and less than height()
371 SkASSERT((unsigned)y < (unsigned)fInfo.height());
384 @param y row index, zero or greater, and less than height()
389 SkASSERT((unsigned)y < (unsigned)fInfo.height());
402 @param y row index, zero or greater, and less than height()
407 SkASSERT((unsigned)y < (unsigned)fInfo.height());
420 @param y row index, zero or greater, and less than height()
425 SkASSERT((unsigned)y < (unsigned)fInfo.height());
441 @param y row index, zero or greater, and less than height()
462 @param y row index, zero or greater, and less than height()
476 @param y row index, zero or greater, and less than height()
490 @param y row index, zero or greater, and less than height()
505 @param y row index, zero or greater, and less than height()
519 @param y row index, zero or greater, and less than height()
534 @param y row index, zero or greater, and less than height()
542 exceed SkPixmap (width(), height()).
544 dstInfo specifies width, height, SkColorType, SkAlphaType, and
556 Returns false if SkPixmap width() or height() is zero or negative.
558 @param dstInfo destination width, height, SkColorType, SkAlphaType, SkColorSpace
568 exceed SkPixmap (width(), height()).
570 dstInfo specifies width, height, SkColorType, SkAlphaType, and
583 false if SkPixmap width() or height() is zero or negative. Returns false if:
584 abs(srcX) >= Pixmap width(), or if abs(srcY) >= Pixmap height().
586 @param dstInfo destination width, height, SkColorType, SkAlphaType, SkColorSpace
590 @param srcY row index whose absolute value is less than height()
597 exceed SkPixmap (width(), height()). dst specifies width, height, SkColorType,
610 false SkPixmap width() or height() is zero or negative. Returns false if:
611 abs(srcX) >= Pixmap width(), or if abs(srcY) >= Pixmap height().
615 @param srcY row index whose absolute value is less than height()
622 /** Copies pixels inside bounds() to dst. dst specifies width, height, SkColorType,
634 Returns false if SkPixmap width() or height() is zero or negative.
643 /** Copies SkBitmap to dst, scaling pixels to fit dst.width() and dst.height(), and
655 Returns false if SkBitmap width() or height() is zero or negative.