aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickshadereffect_p.h
diff options
context:
space:
mode:
authorPaul Olav Tvete <paul.tvete@qt.io>2020-06-03 11:18:13 +0200
committerPaul Olav Tvete <paul.tvete@qt.io>2020-06-04 16:20:26 +0200
commit70dd5e24ce29adeab48932082863b3e3e3e4ba47 (patch)
tree40431af347a2a908d6314e2f765ed54ab9c9c0ae /src/quick/items/qquickshadereffect_p.h
parenta2a9be9fa80c61464ef30cfcc7ceef42ddac73e2 (diff)
Remove QQuickOpenGLShaderEffect
This also removes QQuickUniformAnimator, which is not yet ported to RHI (QTBUG-83976) Task-number: QTBUG-83977 Change-Id: I3e656e6817ac991371b7f6557f050e122635d279 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@qt.io>
Diffstat (limited to 'src/quick/items/qquickshadereffect_p.h')
-rw-r--r--src/quick/items/qquickshadereffect_p.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/quick/items/qquickshadereffect_p.h b/src/quick/items/qquickshadereffect_p.h
index b3d5473ae4..504a1efcf1 100644
--- a/src/quick/items/qquickshadereffect_p.h
+++ b/src/quick/items/qquickshadereffect_p.h
@@ -60,7 +60,6 @@ QT_REQUIRE_CONFIG(quick_shadereffect);
QT_BEGIN_NAMESPACE
-class QQuickOpenGLShaderEffect;
class QQuickGenericShaderEffect;
class QQuickShaderEffectPrivate;
@@ -120,10 +119,6 @@ public:
bool isComponentComplete() const;
QString parseLog();
-#if QT_CONFIG(opengl)
- bool isOpenGLShaderEffect() const;
-#endif
-
Q_SIGNALS:
void fragmentShaderChanged();
void vertexShaderChanged();
@@ -142,9 +137,6 @@ protected:
void itemChange(ItemChange change, const ItemChangeData &value) override;
private:
-#if QT_CONFIG(opengl)
- QQuickOpenGLShaderEffect *m_glImpl;
-#endif
QQuickGenericShaderEffect *m_impl;
Q_DECLARE_PRIVATE(QQuickShaderEffect)