Lines Matching defs:height
30 // A "fully" lazy proxy's width and height are not known until instantiation time.
31 // So fully lazy proxies are created with width and height < 0. Regular lazy proxies must be
32 // created with positive widths and heights. The width and height are set to 0 only after a
271 int height;
276 height = src->height();
280 height = srcRect.height();
291 GrImageInfo info(GrColorType::kUnknown, kUnknown_SkAlphaType, nullptr, {width, height});
312 {width, height},
388 // The kApprox but already instantiated case. Setting the proxy's width & height to
389 // the instantiated width & height could have side-effects going forward, since we're
440 // This was a fully lazy proxy. We need to fill in the width & height. For partially
441 // lazy proxies we must preserve the original width & height since that indicates
447 SkASSERT(fProxy->height() <= surface->height());