summaryrefslogtreecommitdiffstats
path: root/src/render/backend/computecommand_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/backend/computecommand_p.h')
-rw-r--r--src/render/backend/computecommand_p.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/render/backend/computecommand_p.h b/src/render/backend/computecommand_p.h
index c005c2bce..e407da0ae 100644
--- a/src/render/backend/computecommand_p.h
+++ b/src/render/backend/computecommand_p.h
@@ -72,13 +72,11 @@ public:
void updateFromPeer(Qt3DCore::QNode *peer) Q_DECL_OVERRIDE;
void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_OVERRIDE;
- inline bool isEnabled() const { return m_enabled; }
inline int x() const Q_DECL_NOEXCEPT { return m_workGroups[0]; }
inline int y() const Q_DECL_NOEXCEPT { return m_workGroups[1]; }
inline int z() const Q_DECL_NOEXCEPT { return m_workGroups[2]; }
private:
- bool m_enabled;
int m_workGroups[3];
};