Lines Matching refs:rect
182 SkIRect rect,
192 this->uploadTextureData(srcColorType, texels, mipLevelCount, rect, texture->texture());
200 SkIRect rect,
211 SkIRect rect,
357 int mipLevelCount, const SkIRect& rect,
359 uint32_t x = rect.x();
360 uint32_t y = rect.y();
361 uint32_t width = rect.width();
362 uint32_t height = rect.height();
621 SkIRect rect,
632 int origSizeInBytes = origRowBytes*rect.height();
634 int sizeInBytes = rowBytes*rect.height();
644 srcTexture.origin = {(uint32_t) rect.left(), (uint32_t) rect.top(), 0};
650 dstBuffer.layout.rowsPerImage = rect.height();
652 wgpu::Extent3D copySize = {(uint32_t) rect.width(), (uint32_t) rect.height(), 1};
668 for (int row = 0; row < rect.height(); row++) {