C

Qt Cluster: Rendering and Recovery from Main UI Failure

// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

// This file is part of the Qt Safe Renderer module

import QtQuick
import ".."
import ClusterDemo

Loader {
    id: camera

    opacity: 0.0
    visible: false
    asynchronous: true
    source: "../VideoView.qml"
    onLoaded: item.imageSource = "image://etc/RearCameraOverlaySport.png"
}