Пример #1
0
bool VideoOutput::onSetRegionOfInterest(const QRectF& roi)
{
    if (!isAvailable())
        return false;
    DPTR_D(VideoOutput);
    d.impl->setRegionOfInterest(roi);
    emit regionOfInterestChanged(roi);
    return true;
}
Пример #2
0
bool QQuickItemRenderer::onSetRegionOfInterest(const QRectF &roi)
{
    Q_UNUSED(roi);
    emit regionOfInterestChanged();
    return true;
}