aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickgenericshadereffect.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/items/qquickgenericshadereffect.cpp')
-rw-r--r--src/quick/items/qquickgenericshadereffect.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/quick/items/qquickgenericshadereffect.cpp b/src/quick/items/qquickgenericshadereffect.cpp
index cad3520ed1..47272a2eac 100644
--- a/src/quick/items/qquickgenericshadereffect.cpp
+++ b/src/quick/items/qquickgenericshadereffect.cpp
@@ -202,33 +202,6 @@ QQuickShaderEffect::Status QQuickGenericShaderEffect::status() const
return QQuickShaderEffect::Status(mgr->status());
}
-QQuickShaderEffect::ShaderType QQuickGenericShaderEffect::shaderType() const
-{
- QSGGuiThreadShaderEffectManager *mgr = shaderEffectManager();
- if (!mgr)
- return QQuickShaderEffect::ShaderType(0);
-
- return QQuickShaderEffect::ShaderType(mgr->shaderType());
-}
-
-QQuickShaderEffect::ShaderCompilationType QQuickGenericShaderEffect::shaderCompilationType() const
-{
- QSGGuiThreadShaderEffectManager *mgr = shaderEffectManager();
- if (!mgr)
- return QQuickShaderEffect::ShaderCompilationType(0);
-
- return QQuickShaderEffect::ShaderCompilationType(mgr->shaderCompilationType());
-}
-
-QQuickShaderEffect::ShaderSourceType QQuickGenericShaderEffect::shaderSourceType() const
-{
- QSGGuiThreadShaderEffectManager *mgr = shaderEffectManager();
- if (!mgr)
- return QQuickShaderEffect::ShaderSourceType(0);
-
- return QQuickShaderEffect::ShaderSourceType(mgr->shaderSourceType());
-}
-
void QQuickGenericShaderEffect::handleEvent(QEvent *event)
{
if (event->type() == QEvent::DynamicPropertyChange) {
@@ -381,9 +354,6 @@ void QQuickGenericShaderEffect::backendChanged()
disconnect(m_item->window(), SIGNAL(sceneGraphInitialized()), this, SLOT(backendChanged()));
emit m_item->logChanged();
emit m_item->statusChanged();
- emit m_item->shaderTypeChanged();
- emit m_item->shaderCompilationTypeChanged();
- emit m_item->shaderSourceTypeChanged();
}
void QQuickGenericShaderEffect::disconnectSignals(Shader shaderType)