Lines Matching refs:srcVkRect
497 SkIRect srcVkRect = srcRect; in resolveImage() local
502 srcVkRect.fTop = src->height() - srcRect.fBottom; in resolveImage()
503 srcVkRect.fBottom = src->height() - srcRect.fTop; in resolveImage()
504 dstY = dst->height() - dstPoint.fY - srcVkRect.height(); in resolveImage()
509 resolveInfo.srcOffset = { srcVkRect.fLeft, srcVkRect.fTop, 0 }; in resolveImage()
512 resolveInfo.extent = { (uint32_t)srcVkRect.width(), (uint32_t)srcVkRect.height(), 1 }; in resolveImage()
1541 SkIRect srcVkRect = srcRect; in copySurfaceAsCopyImage() local
1546 srcVkRect.fTop = src->height() - srcRect.fBottom; in copySurfaceAsCopyImage()
1547 srcVkRect.fBottom = src->height() - srcRect.fTop; in copySurfaceAsCopyImage()
1548 dstY = dst->height() - dstPoint.fY - srcVkRect.height(); in copySurfaceAsCopyImage()
1554 copyRegion.srcOffset = { srcVkRect.fLeft, srcVkRect.fTop, 0 }; in copySurfaceAsCopyImage()
1557 copyRegion.extent = { (uint32_t)srcVkRect.width(), (uint32_t)srcVkRect.height(), 1 }; in copySurfaceAsCopyImage()
1616 SkIRect srcVkRect; in copySurfaceAsBlit() local
1617 srcVkRect.fLeft = srcRect.fLeft; in copySurfaceAsBlit()
1618 srcVkRect.fRight = srcRect.fRight; in copySurfaceAsBlit()
1624 srcVkRect.fTop = src->height() - srcRect.fBottom; in copySurfaceAsBlit()
1625 srcVkRect.fBottom = src->height() - srcRect.fTop; in copySurfaceAsBlit()
1627 srcVkRect.fTop = srcRect.fTop; in copySurfaceAsBlit()
1628 srcVkRect.fBottom = srcRect.fBottom; in copySurfaceAsBlit()
1632 dstRect.fTop = dst->height() - dstPoint.fY - srcVkRect.height(); in copySurfaceAsBlit()
1636 dstRect.fBottom = dstRect.fTop + srcVkRect.height(); in copySurfaceAsBlit()
1647 blitRegion.srcOffsets[0] = { srcVkRect.fLeft, srcVkRect.fTop, 0 }; in copySurfaceAsBlit()
1648 blitRegion.srcOffsets[1] = { srcVkRect.fRight, srcVkRect.fBottom, 1 }; in copySurfaceAsBlit()