Lines Matching refs:srcVkRect
1835 SkIRect srcVkRect = srcRect; in copySurfaceAsCopyImage() local
1840 srcVkRect.fTop = src->height() - srcRect.fBottom; in copySurfaceAsCopyImage()
1841 srcVkRect.fBottom = src->height() - srcRect.fTop; in copySurfaceAsCopyImage()
1842 dstY = dst->height() - dstPoint.fY - srcVkRect.height(); in copySurfaceAsCopyImage()
1848 copyRegion.srcOffset = { srcVkRect.fLeft, srcVkRect.fTop, 0 }; in copySurfaceAsCopyImage()
1851 copyRegion.extent = { (uint32_t)srcVkRect.width(), (uint32_t)srcVkRect.height(), 1 }; in copySurfaceAsCopyImage()
1892 SkIRect srcVkRect; in copySurfaceAsBlit() local
1893 srcVkRect.fLeft = srcRect.fLeft; in copySurfaceAsBlit()
1894 srcVkRect.fRight = srcRect.fRight; in copySurfaceAsBlit()
1900 srcVkRect.fTop = src->height() - srcRect.fBottom; in copySurfaceAsBlit()
1901 srcVkRect.fBottom = src->height() - srcRect.fTop; in copySurfaceAsBlit()
1903 srcVkRect.fTop = srcRect.fTop; in copySurfaceAsBlit()
1904 srcVkRect.fBottom = srcRect.fBottom; in copySurfaceAsBlit()
1908 dstRect.fTop = dst->height() - dstPoint.fY - srcVkRect.height(); in copySurfaceAsBlit()
1912 dstRect.fBottom = dstRect.fTop + srcVkRect.height(); in copySurfaceAsBlit()
1924 blitRegion.srcOffsets[0] = { srcVkRect.fLeft, srcVkRect.fTop, 0 }; in copySurfaceAsBlit()
1925 blitRegion.srcOffsets[1] = { srcVkRect.fRight, srcVkRect.fBottom, 1 }; in copySurfaceAsBlit()