Home | History | Annotate | Download | only in core

Lines Matching defs:rowBytes

119      *  Return the rowbytes expressed as a number of pixels (like width and height).
150 size_t rowBytes() const { return fRowBytes; }
167 /** Return the byte size of the pixels, based on the height and rowBytes.
189 * than computeSize64() if there is any rowbytes padding beyond the width.
233 /** Given a config and a width, this computes the optimal rowBytes value. This is called automatically
234 if you pass 0 for rowBytes to setConfig().
272 /** Set the bitmap's config and dimensions. If rowBytes is 0, then
276 bool setConfig(Config, int width, int height, size_t rowBytes, SkAlphaType);
278 bool setConfig(Config config, int width, int height, size_t rowBytes = 0) {
279 return this->setConfig(config, width, height, rowBytes,
284 bool setInfo(const SkImageInfo&, size_t rowBytes = 0);
287 bool setConfig(const SkImageInfo& info, size_t rowBytes = 0) {
288 return this->setInfo(info, rowBytes);
319 * Install a pixelref that wraps the specified pixels and rowBytes, and
325 bool installPixels(const SkImageInfo&, void* pixels, size_t rowBytes, SkColorTable*,
329 bool installPixels(const SkImageInfo& info, void* pixels, size_t rowBytes,
332 return this->installPixels(info, pixels, rowBytes, NULL, releaseProc, context);
341 bool installPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) {
342 return this->installPixels(info, pixels, rowBytes, NULL, NULL, NULL);
367 In the case when the dstRowBytes matches the bitmap's rowBytes, the copy