Lines Matching defs:height

31     SkImageInfo, containing integer width and height, SkColorType and SkAlphaType
43 Declaring SkBitmap const prevents altering SkImageInfo: the SkBitmap height, width,
55 kUnknown_SkAlphaType, and with a width and height of zero. SkPixelRef origin is
58 Use setInfo() to associate SkColorType, SkAlphaType, width, and height
126 /** Returns width, height, SkAlphaType, SkColorType, and SkColorSpace.
144 Maybe be less than pixelRef().height(). Will not exceed pixelRef().height() less
147 @return pixel height in SkImageInfo
149 int height() const { return fPixmap.height(); }
194 /** Returns true if either width() or height() are zero.
197 height(), and SkPixelRef.
205 Does not check if width() or height() are zero; call drawsNothing() to check
206 width(), height(), and SkPixelRef.
212 /** Returns true if width() or height() are zero, or if SkPixelRef is nullptr.
269 Returns zero if height() or width() is 0.
270 Returns height() times rowBytes() if colorType() is kUnknown_SkColorType.
312 Sets width, height, row bytes to zero; pixel address to nullptr; SkColorType to
343 /** Returns SkRect { 0, 0, width(), height() }.
351 /** Returns SkIRect { 0, 0, width(), height() }.
359 /** Returns SkIRect { 0, 0, width(), height() }.
361 @return integral rectangle from origin to width() and height()
365 /** Returns SkISize { width(), height() }.
367 @return integral size of width() and height()
377 return SkIRect::MakeXYWH(origin.x(), origin.y(), this->width(), this->height());
380 /** Sets width, height, SkAlphaType, SkColorType, SkColorSpace, and optional
401 - imageInfo.height() is negative
404 @param imageInfo contains width, height, SkAlphaType, SkColorType, SkColorSpace
430 @param info contains width, height, SkAlphaType, SkColorType, SkColorSpace
449 @param info contains width, height, SkAlphaType, SkColorType, SkColorSpace
468 @param info contains width, height, SkAlphaType, SkColorType, SkColorSpace
487 @param info contains width, height, SkAlphaType, SkColorType, SkColorSpace
505 @param info contains width, height, SkAlphaType, SkColorType, SkColorSpace
524 @param info contains width, height, SkAlphaType, SkColorType, SkColorSpace
530 /** Sets SkImageInfo to width, height, and native color type; and allocates
535 or height is negative.
543 @param height pixel row count; must be zero or greater
547 bool SK_WARN_UNUSED_RESULT tryAllocN32Pixels(int width, int height, bool isOpaque = false);
549 /** Sets SkImageInfo to width, height, and the native color type; and allocates
553 Aborts if width exceeds 29 bits or is negative, or height is negative, or
561 @param height pixel row count; must be zero or greater
566 void allocN32Pixels(int width, int height, bool isOpaque = false);
583 @param info contains width, height, SkAlphaType, SkColorType, SkColorSpace
603 @param info contains width, height, SkAlphaType, SkColorType, SkColorSpace
649 The allocation size is determined by SkImageInfo width, height, and SkColorType.
660 The allocation size is determined by SkImageInfo width, height, and SkColorType.
671 The allocation size is determined by SkImageInfo width, height, and SkColorType.
682 The allocation size is determined by SkImageInfo width, height, and SkColorType.
821 @param y row index, zero or greater, and less than height()
833 @param y row index, zero or greater, and less than height()
850 @param y row index, zero or greater, and less than height()
863 - y is negative, or not less than height()
866 @param y row index, zero or greater, and less than height()
877 - y is negative, or not less than height()
880 @param y row index, zero or greater, and less than height()
891 - y is negative, or not less than height()
894 @param y row index, zero or greater, and less than height()
921 and does not exceed SkBitmap (width(), height()).
923 dstInfo specifies width, height, SkColorType, SkAlphaType, and SkColorSpace of
938 false if width() or height() is zero or negative.
939 Returns false if abs(srcX) >= Bitmap width(), or if abs(srcY) >= Bitmap height().
941 @param dstInfo destination width, height, SkColorType, SkAlphaType, SkColorSpace
945 @param srcY row index whose absolute value is less than height()
952 does not exceed SkBitmap (width(), height()).
954 dst specifies width, height, SkColorType, SkAlphaType, SkColorSpace, pixel storage,
969 false if width() or height() is zero or negative.
970 Returns false if abs(srcX) >= Bitmap width(), or if abs(srcY) >= Bitmap height().
974 @param srcY row index whose absolute value is less than height()
982 does not exceed SkBitmap (width(), height()).
984 dst specifies width, height, SkColorType, SkAlphaType, SkColorSpace, pixel storage,
1006 (src.width(), src.height()).
1008 src specifies width, height, SkColorType, SkAlphaType, SkColorSpace, pixel storage,
1023 false if width() or height() is zero or negative.
1024 Returns false if abs(dstX) >= Bitmap width(), or if abs(dstY) >= Bitmap height().
1028 @param dstY row index whose absolute value is less than height()
1036 (src.width(), src.height()).
1038 src specifies width, height, SkColorType, SkAlphaType, SkColorSpace, pixel storage,