1 | /**************************************************************************** |
---|---|
2 | ** |
3 | ** Copyright (C) 2016 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 | |
40 | #include "qsgsoftwarerenderlistbuilder_p.h" |
41 | |
42 | #include "qsgsoftwarerenderablenode_p.h" |
43 | #include "qsgabstractsoftwarerenderer_p.h" |
44 | #include "qsgsoftwareinternalimagenode_p.h" |
45 | #include "qsgsoftwareinternalrectanglenode_p.h" |
46 | #include "qsgsoftwareglyphnode_p.h" |
47 | #include "qsgsoftwarepublicnodes_p.h" |
48 | #include "qsgsoftwarepainternode_p.h" |
49 | #include "qsgsoftwarepixmaptexture_p.h" |
50 | |
51 | #include <QtQuick/qsgsimplerectnode.h> |
52 | #include <QtQuick/qsgsimpletexturenode.h> |
53 | #include <QtQuick/qsgrendernode.h> |
54 | |
55 | QT_BEGIN_NAMESPACE |
56 | |
57 | QSGSoftwareRenderListBuilder::QSGSoftwareRenderListBuilder(QSGAbstractSoftwareRenderer *renderer) |
58 | : m_renderer(renderer) |
59 | { |
60 | |
61 | } |
62 | |
63 | bool QSGSoftwareRenderListBuilder::visit(QSGTransformNode *) |
64 | { |
65 | return true; |
66 | } |
67 | |
68 | void QSGSoftwareRenderListBuilder::endVisit(QSGTransformNode *) |
69 | { |
70 | } |
71 | |
72 | bool QSGSoftwareRenderListBuilder::visit(QSGClipNode *) |
73 | { |
74 | return true; |
75 | } |
76 | |
77 | void QSGSoftwareRenderListBuilder::endVisit(QSGClipNode *) |
78 | { |
79 | } |
80 | |
81 | bool QSGSoftwareRenderListBuilder::visit(QSGGeometryNode *node) |
82 | { |
83 | return addRenderableNode(node); |
84 | } |
85 | |
86 | void QSGSoftwareRenderListBuilder::endVisit(QSGGeometryNode *) |
87 | { |
88 | } |
89 | |
90 | bool QSGSoftwareRenderListBuilder::visit(QSGOpacityNode *) |
91 | { |
92 | return true; |
93 | } |
94 | |
95 | void QSGSoftwareRenderListBuilder::endVisit(QSGOpacityNode *) |
96 | { |
97 | } |
98 | |
99 | bool QSGSoftwareRenderListBuilder::visit(QSGInternalImageNode *node) |
100 | { |
101 | return addRenderableNode(node); |
102 | } |
103 | |
104 | void QSGSoftwareRenderListBuilder::endVisit(QSGInternalImageNode *) |
105 | { |
106 | } |
107 | |
108 | bool QSGSoftwareRenderListBuilder::visit(QSGPainterNode *node) |
109 | { |
110 | return addRenderableNode(node); |
111 | } |
112 | |
113 | void QSGSoftwareRenderListBuilder::endVisit(QSGPainterNode *) |
114 | { |
115 | } |
116 | |
117 | bool QSGSoftwareRenderListBuilder::visit(QSGInternalRectangleNode *node) |
118 | { |
119 | return addRenderableNode(node); |
120 | } |
121 | |
122 | void QSGSoftwareRenderListBuilder::endVisit(QSGInternalRectangleNode *) |
123 | { |
124 | } |
125 | |
126 | bool QSGSoftwareRenderListBuilder::visit(QSGGlyphNode *node) |
127 | { |
128 | return addRenderableNode(node); |
129 | } |
130 | |
131 | void QSGSoftwareRenderListBuilder::endVisit(QSGGlyphNode *) |
132 | { |
133 | } |
134 | |
135 | bool QSGSoftwareRenderListBuilder::visit(QSGRootNode *) |
136 | { |
137 | return true; |
138 | } |
139 | |
140 | void QSGSoftwareRenderListBuilder::endVisit(QSGRootNode *) |
141 | { |
142 | } |
143 | |
144 | #if QT_CONFIG(quick_sprite) |
145 | bool QSGSoftwareRenderListBuilder::visit(QSGSpriteNode *node) |
146 | { |
147 | return addRenderableNode(node); |
148 | } |
149 | |
150 | void QSGSoftwareRenderListBuilder::endVisit(QSGSpriteNode *) |
151 | { |
152 | |
153 | } |
154 | #endif |
155 | |
156 | bool QSGSoftwareRenderListBuilder::visit(QSGRenderNode *node) |
157 | { |
158 | return addRenderableNode(node); |
159 | } |
160 | |
161 | void QSGSoftwareRenderListBuilder::endVisit(QSGRenderNode *) |
162 | { |
163 | } |
164 | |
165 | bool QSGSoftwareRenderListBuilder::addRenderableNode(QSGNode *node) |
166 | { |
167 | auto renderableNode = m_renderer->renderableNode(node); |
168 | if (renderableNode == nullptr) { |
169 | // Not a node we can render |
170 | return false; |
171 | } |
172 | m_renderer->appendRenderableNode(node: renderableNode); |
173 | return true; |
174 | } |
175 | |
176 | QT_END_NAMESPACE |
177 |