Lines Matching defs:height
122 int height;
129 return SkImageInfo::Make(sii.width, sii.height, sii.colorType, sii.alphaType, sii.colorSpace);
160 sk_sp<SkSurface> MakeOnScreenGLSurface(sk_sp<GrDirectContext> dContext, int width, int height,
182 GrBackendRenderTarget target(width, height, sampleCnt, stencil, info);
188 sk_sp<SkSurface> MakeRenderTarget(sk_sp<GrDirectContext> dContext, int width, int height) {
189 SkImageInfo info = SkImageInfo::MakeN32(width, height, SkAlphaType::kPremul_SkAlphaType);
755 GrBackendTexture backendTexture(info.width(), info.height(), kMipmapped, glInfo);
900 .function("height", optional_override([](SkAnimatedImage& self)->int32_t {
901 // getBounds returns an SkRect, but internally, the width and height are ints.
902 return SkScalarFloorToInt(self.getBounds().height());
1363 result.set("height", ii.height());
1367 .function("height", &SkImage::height)
1857 return {ii.width(), ii.height(), ii.colorType(), ii.alphaType(), ii.refColorSpace()};
1859 .function("height", &SkSurface::height)
1867 GrBackendTexture gbt(ii.width, ii.height, GrMipmapped::kNo, gti);
2126 .field("height", &SimpleImageInfo::height)