Lines Matching refs:mCrop
1593 mCrop(C2Rect(std::min(width - std::min(crop.left, width), crop.width), in _C2PlanarSectionAspect()
1602 inline constexpr C2Rect crop() const { return mCrop; } in crop()
1609 mCrop.width, mCrop.height, in childSection()
1611 C2Rect(c2_min(mCrop.right() - c2_clamp(mCrop.left, crop.left, mCrop.right()), in childSection()
1613 c2_min(mCrop.bottom() - c2_clamp(mCrop.top, crop.top, mCrop.bottom()), in childSection()
1615 .at(c2_clamp(mCrop.left, crop.left, mCrop.right()) - mCrop.left, in childSection()
1616 c2_clamp(mCrop.top, crop.top, mCrop.bottom()) - mCrop.top)); in childSection()
1621 : _C2PlanarCapacityAspect(parent), mCrop(width(), height()) {} in _C2PlanarSectionAspect()
1625 mCrop(parent == nullptr ? C2Rect() : ((C2Rect)*parent).intersect(crop).normalize()) { } in _C2PlanarSectionAspect()
1629 mCrop(parent == nullptr ? C2Rect() : parent->crop().intersect(crop).normalize()) { } in _C2PlanarSectionAspect()
1633 C2Rect mCrop; variable
1650 inline constexpr C2Rect crop() const { return mCrop; } in crop()
1656 mCrop.left = std::min(width(), crop.left); in setCrop_be()
1657 mCrop.top = std::min(height(), crop.top); in setCrop_be()
1659 mCrop.width = std::min(width() - mCrop.left, crop.width); in setCrop_be()
1660 mCrop.height = std::min(height() - mCrop.top, crop.height); in setCrop_be()
1673 mCrop = crop; in setCrop()