CubeMapTextureSpecifics.qml 364 B

123456789101112131415
  1. // Copyright (C) 2022 The Qt Company Ltd.
  2. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
  3. import QtQuick 2.15
  4. import QtQuick.Layouts 1.15
  5. import HelperWidgets 2.0
  6. Column {
  7. width: parent.width
  8. // CubeMapTexture inherits Texture but doesn't provide any extra properties itself
  9. TextureSection {
  10. width: parent.width
  11. }
  12. }