aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/scenegraph/scenegraph.pro
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@qt.io>2020-04-06 13:43:18 +0200
committerLaszlo Agocs <laszlo.agocs@qt.io>2020-04-07 11:37:32 +0200
commit07d1dbcf7f1de03ae700894eaf1c63a33afc739a (patch)
treef6432d0b7506396e107b348f647a81a02cfdcf1b /examples/quick/scenegraph/scenegraph.pro
parent494063ccc8f8619d11e3a4e85168d04c1211bf44 (diff)
Remove QSGEngine and move QSGAbstractRenderer back to private
QSGEngine goes away. Same for the associated example, which is the only place this is used anywhere in Qt. As a consequence, the renderer base class can be moved back to private: there is no use for it to be public anymore, since that made sense only in combination with QSGEngine. With the RHI-based rendering path driving a renderer directly is more complicated than before so it is not reasonable to allow the QSGEngine-style access anymore. Instead, one has QQuickRenderControl, which allows redirecting and manually driving the rendering of a QQuickWindow, thus providing an alternative to the legacy QSGEngine approach. Task-number: QTBUG-78596 Change-Id: If57c6b657b2053da1c4e545e517026382a71d998 Reviewed-by: Andy Nichols <andy.nichols@qt.io>
Diffstat (limited to 'examples/quick/scenegraph/scenegraph.pro')
-rw-r--r--examples/quick/scenegraph/scenegraph.pro1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/quick/scenegraph/scenegraph.pro b/examples/quick/scenegraph/scenegraph.pro
index 08ca18fa0c..235b51cd72 100644
--- a/examples/quick/scenegraph/scenegraph.pro
+++ b/examples/quick/scenegraph/scenegraph.pro
@@ -4,7 +4,6 @@ qtConfig(opengl(es1|es2)?) {
SUBDIRS += \
graph \
simplematerial \
- sgengine \
fboitem \
openglunderqml \
textureinthread \