summaryrefslogtreecommitdiffstats
path: root/src/render/materialsystem/material_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/materialsystem/material_p.h')
-rw-r--r--src/render/materialsystem/material_p.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/render/materialsystem/material_p.h b/src/render/materialsystem/material_p.h
index 06cd4f285..f45912ab6 100644
--- a/src/render/materialsystem/material_p.h
+++ b/src/render/materialsystem/material_p.h
@@ -69,23 +69,23 @@ class Technique;
class Effect;
class MaterialManager;
-class Q_AUTOTEST_EXPORT Material : public Qt3D::QBackendNode
+class Q_AUTOTEST_EXPORT Material : public Qt3DCore::QBackendNode
{
public:
Material();
~Material();
void cleanup();
- void updateFromPeer(Qt3D::QNode* mat) Q_DECL_OVERRIDE;
- void sceneChangeEvent(const Qt3D::QSceneChangePtr &e) Q_DECL_OVERRIDE;
+ void updateFromPeer(Qt3DCore::QNode* mat) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_OVERRIDE;
inline bool isEnabled() const { return m_enabled; }
- QList<Qt3D::QNodeId> parameters() const;
- Qt3D::QNodeId effect() const;
+ QList<Qt3DCore::QNodeId> parameters() const;
+ Qt3DCore::QNodeId effect() const;
private:
ParameterPack m_parameterPack;
- Qt3D::QNodeId m_effectUuid;
+ Qt3DCore::QNodeId m_effectUuid;
bool m_enabled;
};