Lines Matching refs:srcVkRect
1874 SkIRect srcVkRect = srcRect; in copySurfaceAsCopyImage() local
1879 srcVkRect.fTop = src->height() - srcRect.fBottom; in copySurfaceAsCopyImage()
1880 srcVkRect.fBottom = src->height() - srcRect.fTop; in copySurfaceAsCopyImage()
1881 dstY = dst->height() - dstPoint.fY - srcVkRect.height(); in copySurfaceAsCopyImage()
1887 copyRegion.srcOffset = { srcVkRect.fLeft, srcVkRect.fTop, 0 }; in copySurfaceAsCopyImage()
1890 copyRegion.extent = { (uint32_t)srcVkRect.width(), (uint32_t)srcVkRect.height(), 1 }; in copySurfaceAsCopyImage()
1934 SkIRect srcVkRect; in copySurfaceAsBlit() local
1935 srcVkRect.fLeft = srcRect.fLeft; in copySurfaceAsBlit()
1936 srcVkRect.fRight = srcRect.fRight; in copySurfaceAsBlit()
1942 srcVkRect.fTop = src->height() - srcRect.fBottom; in copySurfaceAsBlit()
1943 srcVkRect.fBottom = src->height() - srcRect.fTop; in copySurfaceAsBlit()
1945 srcVkRect.fTop = srcRect.fTop; in copySurfaceAsBlit()
1946 srcVkRect.fBottom = srcRect.fBottom; in copySurfaceAsBlit()
1950 dstRect.fTop = dst->height() - dstPoint.fY - srcVkRect.height(); in copySurfaceAsBlit()
1954 dstRect.fBottom = dstRect.fTop + srcVkRect.height(); in copySurfaceAsBlit()
1966 blitRegion.srcOffsets[0] = { srcVkRect.fLeft, srcVkRect.fTop, 0 }; in copySurfaceAsBlit()
1967 blitRegion.srcOffsets[1] = { srcVkRect.fRight, srcVkRect.fBottom, 1 }; in copySurfaceAsBlit()