Lines Matching defs:width
269 SkISize dimensions = { backendTex.width(), backendTex.height() };
289 SkISize dimensions = { tex.width(), tex.height() };
307 SkISize dimensions = { rt.width(), rt.height() };
338 numMipLevels = SkMipmap::ComputeLevelCount(dimensions.width(), dimensions.height()) + 1;
341 desc.size.width = dimensions.width();
353 return GrBackendTexture(dimensions.width(), dimensions.height(), info);
361 uint32_t width = rect.width();
368 size_t trimRowBytes = width * SkColorTypeBytesPerPixel(colorType);
386 wgpu::Extent3D copySize = {width, height, 1};
390 width = std::max(1u, width / 2);
407 size_t baseLayerSize = bpp * backendTexture.width() * backendTexture.height();
410 GrClearImage(imageInfo, defaultStorage.get(), bpp * backendTexture.width(), color);
414 int w = backendTexture.width(), h = backendTexture.height();
486 if (dimensions.width() > this->caps()->maxTextureSize() ||
510 desc.size.width = dimensions.width();
522 return GrBackendRenderTarget(dimensions.width(), dimensions.height(), 1, 0, info);
603 uint32_t width = srcRect.width(), height = srcRect.height();
611 wgpu::Extent3D copySize = {width, height, 1};
652 wgpu::Extent3D copySize = {(uint32_t) rect.width(), (uint32_t) rect.height(), 1};
681 int srcWidth = tex->width();
685 uint32_t levelCount = SkMipmap::ComputeLevelCount(tex->width(), tex->height()) + 1;
693 texDesc.size.width = (tex->width() + 1) / 2;