Lines Matching defs:width

59         rowBytes is large enough to contain info width pixels of SkColorType.
65 @param imageInfo width, height, SkColorType, SkAlphaType, SkColorSpace,
66 of raster surface; width and height must be greater than zero
90 rowBytes is large enough to contain info width pixels of SkColorType.
96 @param imageInfo width, height, SkColorType, SkAlphaType, SkColorSpace,
97 of raster surface; width and height must be greater than zero
120 rowBytes is large enough to contain info width pixels of SkColorType, or is zero.
124 @param imageInfo width, height, SkColorType, SkAlphaType, SkColorSpace,
125 of raster surface; width and height must be greater than zero
144 @param imageInfo width, height, SkColorType, SkAlphaType, SkColorSpace,
145 of raster surface; width and height must be greater than zero
156 Allocates and zeroes pixel memory. Pixel memory size is height times width times
159 Internally, sets SkImageInfo to width, height, native color type, and
162 SkSurface is returned if width and height are greater than zero.
167 @param width pixel column count; must be greater than zero
173 static sk_sp<SkSurface> MakeRasterN32Premul(int width, int height,
192 and colorSpace must be present. Further, backendTexture width and height must
227 and colorSpace must be present. Further, backendRenderTarget width and height must
256 pixels, based on the width, height, and SkColorType in SkImageInfo. budgeted
273 @param imageInfo width, height, SkColorType, SkAlphaType, SkColorSpace;
274 width, or height, or both, may be zero
288 pixels, based on the width, height, and SkColorType in SkImageInfo. budgeted
301 @param imageInfo width, height, SkColorType, SkAlphaType, SkColorSpace,
302 of raster surface; width, or height, or both, may be zero
321 pixels, based on the width, height, and SkColorType in SkImageInfo. budgeted
329 @param imageInfo width, height, SkColorType, SkAlphaType, SkColorSpace,
330 of raster surface; width, or height, or both, may be zero
336 if (!imageInfo.width() || !imageInfo.height()) {
457 @param width one or greater
459 @return SkSurface if width and height are positive; otherwise, nullptr
463 static sk_sp<SkSurface> MakeNull(int width, int height);
469 int width() const { return fWidth; }
593 Returns nullptr if imageInfo width or height are zero, or if imageInfo
596 @param imageInfo width, height, SkColorType, SkAlphaType, SkColorSpace,
597 of SkSurface; width and height must be greater than zero
605 * specified width and height.
607 sk_sp<SkSurface> makeSurface(int width, int height);
667 Source SkRect corners are (srcX, srcY) and SkSurface (width(), height()).
668 Destination SkRect corners are (0, 0) and (dst.width(), dst.height()).
698 Source SkRect corners are (srcX, srcY) and SkSurface (width(), height()).
699 Destination SkRect corners are (0, 0) and (dstInfo.width(), dstInfo.height()).
718 @param dstInfo width, height, SkColorType, and SkAlphaType of dstPixels
720 @param dstRowBytes size of one destination row; dstInfo.width() times pixel size, or larger
730 Source SkRect corners are (srcX, srcY) and SkSurface (width(), height()).
731 Destination SkRect corners are (0, 0) and (bitmap.width(), bitmap.height()).
816 planes ordered y, u, v. The u and v planes are half the width and height of the resized
818 width and height are not even. A 'srcRect' that is not contained by the bounds of the
853 Source SkRect corners are (0, 0) and (src.width(), src.height()).
855 (dstX + Surface width(), dstY + Surface height()).
870 Source SkRect corners are (0, 0) and (src.width(), src.height()).
872 (dstX + Surface width(), dstY + Surface height()).
1062 SkSurface(int width, int height, const SkSurfaceProps* surfaceProps);