Home | History | Annotate | Download | only in core

Lines Matching refs:height

31     and height, and a format (colortype), and a pointer to the actual pixels.
43 * Default construct creates a bitmap with zero width and height, and no pixels.
85 int height() const { return fInfo.height(); }
97 * Return the rowbytes expressed as a number of pixels (like width and height).
145 /** Return the byte size of the pixels, based on the height and rowBytes.
149 size_t getSize() const { return fInfo.height() * fRowBytes; }
161 return sk_64_mul(fInfo.height(), fRowBytes);
222 * Return the bitmap's bounds [0, 0, width, height] as an SkRect
232 fInfo.width(), fInfo.height());
275 bool SK_WARN_UNUSED_RESULT tryAllocN32Pixels(int width, int height, bool isOpaque = false) {
276 SkImageInfo info = SkImageInfo::MakeN32(width, height,
281 void allocN32Pixels(int width, int height, bool isOpaque = false) {
282 SkImageInfo info = SkImageInfo::MakeN32(width, height,
412 * bitmap's width/height can be <= the dimensions of the pixelref. The
618 * srcR.setXYWH(srcX, srcY, dstInfo.width(), dstInfo.height());
724 RLEPixels(int width, int height);
808 SkASSERT((unsigned)x < (unsigned)this->width() && (unsigned)y < (unsigned)this->height());
815 SkASSERT((unsigned)x < (unsigned)this->width() && (unsigned)y < (unsigned)this->height());
822 SkASSERT((unsigned)x < (unsigned)this->width() && (unsigned)y < (unsigned)this->height());
829 SkASSERT((unsigned)x < (unsigned)this->width() && (unsigned)y < (unsigned)this->height());