1 | /**************************************************************************** |
---|---|
2 | ** |
3 | ** Copyright (C) 2019 The Qt Company Ltd. |
4 | ** Contact: https://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the QtQuick 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 | #ifndef QSGRHILAYER_P_H |
40 | #define QSGRHILAYER_P_H |
41 | |
42 | // |
43 | // W A R N I N G |
44 | // ------------- |
45 | // |
46 | // This file is not part of the Qt API. It exists purely as an |
47 | // implementation detail. This header file may change from version to |
48 | // version without notice, or even be removed. |
49 | // |
50 | // We mean it. |
51 | // |
52 | |
53 | #include <private/qsgadaptationlayer_p.h> |
54 | #include <private/qsgcontext_p.h> |
55 | #include <private/qsgtexture_p.h> |
56 | #include <QtGui/private/qrhi_p.h> |
57 | |
58 | QT_BEGIN_NAMESPACE |
59 | |
60 | class QSGDefaultRenderContext; |
61 | class QSGRhiLayerPrivate; |
62 | |
63 | class Q_QUICK_PRIVATE_EXPORT QSGRhiLayer : public QSGLayer |
64 | { |
65 | Q_OBJECT |
66 | Q_DECLARE_PRIVATE(QSGRhiLayer) |
67 | public: |
68 | QSGRhiLayer(QSGRenderContext *context); |
69 | ~QSGRhiLayer(); |
70 | |
71 | bool updateTexture() override; |
72 | |
73 | bool hasAlphaChannel() const override; |
74 | bool hasMipmaps() const override; |
75 | QSize textureSize() const override { return m_size; } |
76 | |
77 | void bind() override; |
78 | int textureId() const override; |
79 | |
80 | void setItem(QSGNode *item) override; |
81 | void setRect(const QRectF &rect) override; |
82 | void setSize(const QSize &size) override; |
83 | void setHasMipmaps(bool mipmap) override; |
84 | void setFormat(uint format) override; |
85 | void setLive(bool live) override; |
86 | void setRecursive(bool recursive) override; |
87 | void setDevicePixelRatio(qreal ratio) override { m_dpr = ratio; } |
88 | void setMirrorHorizontal(bool mirror) override; |
89 | void setMirrorVertical(bool mirror) override; |
90 | QRectF normalizedTextureSubRect() const override; |
91 | void setSamples(int samples) override { m_samples = samples; } |
92 | |
93 | void scheduleUpdate() override; |
94 | QImage toImage() const override; |
95 | |
96 | public Q_SLOTS: |
97 | void markDirtyTexture() override; |
98 | void invalidated() override; |
99 | |
100 | private: |
101 | void grab(); |
102 | void releaseResources(); |
103 | |
104 | QSGNode *m_item = nullptr; |
105 | QRectF m_rect; |
106 | QSize m_size; |
107 | qreal m_dpr = 1; |
108 | QRhiTexture::Format m_format = QRhiTexture::RGBA8; |
109 | |
110 | QSGRenderer *m_renderer = nullptr; |
111 | QRhiTexture *m_texture = nullptr; |
112 | QRhiRenderBuffer *m_ds = nullptr; |
113 | QRhiRenderBuffer *m_msaaColorBuffer = nullptr; |
114 | QRhiTexture *m_secondaryTexture = nullptr; |
115 | QRhiTextureRenderTarget *m_rt = nullptr; |
116 | QRhiRenderPassDescriptor *m_rtRp = nullptr; |
117 | |
118 | QSGDefaultRenderContext *m_context = nullptr; |
119 | QRhi *m_rhi = nullptr; |
120 | int m_samples = 0; |
121 | |
122 | uint m_mipmap : 1; |
123 | uint m_live : 1; |
124 | uint m_recursive : 1; |
125 | uint m_dirtyTexture : 1; |
126 | uint m_multisampling : 1; |
127 | uint m_grab : 1; |
128 | uint m_mirrorHorizontal : 1; |
129 | uint m_mirrorVertical : 1; |
130 | }; |
131 | |
132 | class QSGRhiLayerPrivate : public QSGTexturePrivate |
133 | { |
134 | Q_DECLARE_PUBLIC(QSGRhiLayer) |
135 | public: |
136 | int comparisonKey() const override; |
137 | QRhiTexture *rhiTexture() const override; |
138 | void updateRhiTexture(QRhi *rhi, QRhiResourceUpdateBatch *resourceUpdates) override; |
139 | }; |
140 | |
141 | QT_END_NAMESPACE |
142 | |
143 | #endif // QSGRHILAYER_P_H |
144 |