1 | /**************************************************************************** |
---|---|
2 | ** |
3 | ** Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB). |
4 | ** Contact: https://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the Qt3D module of the Qt Toolkit. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:LGPL$ |
9 | ** Commercial License Usage |
10 | ** Licensees holding valid commercial Qt licenses may use this file in |
11 | ** accordance with the commercial license agreement provided with the |
12 | ** Software or, alternatively, in accordance with the terms contained in |
13 | ** a written agreement between you and The Qt Company. For licensing terms |
14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at https://www.qt.io/contact-us. |
16 | ** |
17 | ** GNU Lesser General Public License Usage |
18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
19 | ** General Public License version 3 as published by the Free Software |
20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the |
21 | ** packaging of this file. Please review the following information to |
22 | ** ensure the GNU Lesser General Public License version 3 requirements |
23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. |
24 | ** |
25 | ** GNU General Public License Usage |
26 | ** Alternatively, this file may be used under the terms of the GNU |
27 | ** General Public License version 2.0 or (at your option) the GNU General |
28 | ** Public license version 3 or any later version approved by the KDE Free |
29 | ** Qt Foundation. The licenses are as published by the Free Software |
30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 |
31 | ** included in the packaging of this file. Please review the following |
32 | ** information to ensure the GNU General Public License requirements will |
33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and |
34 | ** https://www.gnu.org/licenses/gpl-3.0.html. |
35 | ** |
36 | ** $QT_END_LICENSE$ |
37 | ** |
38 | ****************************************************************************/ |
39 | |
40 | #ifndef QT3DRENDER_QABSTRACTTEXTURE_P_H |
41 | #define QT3DRENDER_QABSTRACTTEXTURE_P_H |
42 | |
43 | // |
44 | // W A R N I N G |
45 | // ------------- |
46 | // |
47 | // This file is not part of the Qt API. It exists for the convenience |
48 | // of other Qt classes. This header file may change from version to |
49 | // version without notice, or even be removed. |
50 | // |
51 | // We mean it. |
52 | // |
53 | |
54 | #include <Qt3DRender/qt3drender_global.h> |
55 | #include <Qt3DCore/private/qnode_p.h> |
56 | #include <Qt3DRender/qabstracttexture.h> |
57 | #include <Qt3DRender/qtexturewrapmode.h> |
58 | #include <Qt3DRender/qtexturegenerator.h> |
59 | #include <Qt3DRender/qtexturedataupdate.h> |
60 | #include <Qt3DRender/private/qt3drender_global_p.h> |
61 | |
62 | QT_BEGIN_NAMESPACE |
63 | |
64 | namespace Qt3DRender { |
65 | |
66 | class Q_3DRENDERSHARED_PRIVATE_EXPORT QAbstractTexturePrivate : public Qt3DCore::QNodePrivate |
67 | { |
68 | public : |
69 | QAbstractTexturePrivate(); |
70 | |
71 | Q_DECLARE_PUBLIC(QAbstractTexture) |
72 | |
73 | QAbstractTexture::Target m_target; |
74 | QAbstractTexture::TextureFormat m_format; |
75 | int m_width, m_height, m_depth; |
76 | bool m_autoMipMap; |
77 | |
78 | QVector<QTextureImageDataPtr> m_data; |
79 | |
80 | QAbstractTexture::Filter m_minFilter, m_magFilter; |
81 | // FIXME, store per direction |
82 | QTextureWrapMode m_wrapMode; |
83 | QAbstractTexture::Status m_status; |
84 | float m_maximumAnisotropy; |
85 | QAbstractTexture::ComparisonFunction m_comparisonFunction; |
86 | QAbstractTexture::ComparisonMode m_comparisonMode; |
87 | QVector<QAbstractTextureImage *> m_textureImages; |
88 | int m_layers; |
89 | int m_samples; |
90 | int m_mipmapLevels; |
91 | |
92 | int m_sharedTextureId; |
93 | |
94 | QAbstractTexture::HandleType m_handleType; |
95 | QVariant m_handle; |
96 | |
97 | QTextureGeneratorPtr dataFunctor() const; |
98 | void setDataFunctor(const QTextureGeneratorPtr &generator); |
99 | |
100 | void setStatus(QAbstractTexture::Status status); |
101 | void setHandle(const QVariant &handle); |
102 | void setHandleType(QAbstractTexture::HandleType type); |
103 | |
104 | QVector<QTextureDataUpdate> m_pendingDataUpdates; |
105 | |
106 | private: |
107 | QTextureGeneratorPtr m_dataFunctor; |
108 | }; |
109 | |
110 | struct QAbstractTextureData |
111 | { |
112 | QAbstractTexture::Target target; |
113 | QAbstractTexture::TextureFormat format; |
114 | int width; |
115 | int height; |
116 | int depth; |
117 | bool autoMipMap; |
118 | QAbstractTexture::Filter minFilter; |
119 | QAbstractTexture::Filter magFilter; |
120 | QTextureWrapMode::WrapMode wrapModeX; |
121 | QTextureWrapMode::WrapMode wrapModeY; |
122 | QTextureWrapMode::WrapMode wrapModeZ; |
123 | float maximumAnisotropy; |
124 | QAbstractTexture::ComparisonFunction comparisonFunction; |
125 | QAbstractTexture::ComparisonMode comparisonMode; |
126 | Qt3DCore::QNodeIdVector textureImageIds; |
127 | int layers; |
128 | int samples; |
129 | int sharedTextureId; |
130 | QTextureGeneratorPtr dataFunctor; |
131 | QVector<QTextureDataUpdate> initialDataUpdates; |
132 | }; |
133 | |
134 | } // QT3D |
135 | |
136 | QT_END_NAMESPACE |
137 | |
138 | #endif // QT3DRENDER_QABSTRACTTEXTURE_P_H |
139 | |
140 |