aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/qssgrenderbasetypes.h
blob: 6276be638d0530719b9e6c5da3fc187db22f9099 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef QSSGRENDERBASETYPES_H
#define QSSGRENDERBASETYPES_H

//
//  W A R N I N G
//  -------------
//
// This file is part of the QtQuick3D API, with limited compatibility guarantees.
// Usage of this API may make your code source and binary incompatible with
// future versions of Qt.
//

#include <QtCore/qtypes.h>

QT_BEGIN_NAMESPACE

enum class QSSGNodeId : quint64 { Invalid = 0 };
enum class QSSGResourceId : quint64 { Invalid = 0 };
enum class QSSGCameraId : quint64 { Invalid = 0 };
enum class QSSGExtensionId : quint64 { Invalid = 0 };

QT_END_NAMESPACE

#endif // QSSGRENDERBASETYPES_H