summaryrefslogtreecommitdiffstats
path: root/src/render/framegraph
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/framegraph')
-rw-r--r--src/render/framegraph/qcameraselector.h4
-rw-r--r--src/render/framegraph/qclearbuffer.h4
-rw-r--r--src/render/framegraph/qframegraph.h4
-rw-r--r--src/render/framegraph/qframegraphnode.h4
-rw-r--r--src/render/framegraph/qframegraphselector.h2
-rw-r--r--src/render/framegraph/qlayerfilter.h4
-rw-r--r--src/render/framegraph/qlighting.h4
-rw-r--r--src/render/framegraph/qnodraw.h2
-rw-r--r--src/render/framegraph/qrenderpassfilter.h4
-rw-r--r--src/render/framegraph/qrendertargetselector.h4
-rw-r--r--src/render/framegraph/qsortcriterion.h4
-rw-r--r--src/render/framegraph/qsortmethod.h4
-rw-r--r--src/render/framegraph/qstateset.h4
-rw-r--r--src/render/framegraph/qtechniquefilter.h4
-rw-r--r--src/render/framegraph/qviewport.h4
15 files changed, 28 insertions, 28 deletions
diff --git a/src/render/framegraph/qcameraselector.h b/src/render/framegraph/qcameraselector.h
index b5a14bfb5..3be2c30a6 100644
--- a/src/render/framegraph/qcameraselector.h
+++ b/src/render/framegraph/qcameraselector.h
@@ -52,7 +52,7 @@ class QT3DRENDERSHARED_EXPORT QCameraSelector : public QFrameGraphNode
Q_PROPERTY(Qt3DCore::QEntity *camera READ camera WRITE setCamera NOTIFY cameraChanged)
public:
- explicit QCameraSelector(Qt3DCore::QNode *parent = 0);
+ explicit QCameraSelector(Qt3DCore::QNode *parent = Q_NULLPTR);
~QCameraSelector();
Qt3DCore::QEntity *camera() const;
@@ -64,7 +64,7 @@ Q_SIGNALS:
void cameraChanged(Qt3DCore::QEntity *camera);
protected:
- QCameraSelector(QCameraSelectorPrivate &dd, Qt3DCore::QNode *parent = 0);
+ QCameraSelector(QCameraSelectorPrivate &dd, Qt3DCore::QNode *parent = Q_NULLPTR);
void copy(const Qt3DCore::QNode *ref) Q_DECL_OVERRIDE;
private:
diff --git a/src/render/framegraph/qclearbuffer.h b/src/render/framegraph/qclearbuffer.h
index 06ac480b2..54114526d 100644
--- a/src/render/framegraph/qclearbuffer.h
+++ b/src/render/framegraph/qclearbuffer.h
@@ -50,7 +50,7 @@ class QT3DRENDERSHARED_EXPORT QClearBuffer : public QFrameGraphNode
Q_OBJECT
Q_PROPERTY(BufferType buffers READ buffers WRITE setBuffers NOTIFY buffersChanged)
public:
- explicit QClearBuffer(Qt3DCore::QNode *parent = 0);
+ explicit QClearBuffer(Qt3DCore::QNode *parent = Q_NULLPTR);
~QClearBuffer();
enum BufferType {
@@ -74,7 +74,7 @@ Q_SIGNALS:
void buffersChanged(BufferType buffers);
protected:
- QClearBuffer(QClearBufferPrivate &dd, Qt3DCore::QNode *parent = 0);
+ QClearBuffer(QClearBufferPrivate &dd, Qt3DCore::QNode *parent = Q_NULLPTR);
void copy(const Qt3DCore::QNode *ref) Q_DECL_OVERRIDE;
private:
diff --git a/src/render/framegraph/qframegraph.h b/src/render/framegraph/qframegraph.h
index 3c8604eb7..3ed2c4125 100644
--- a/src/render/framegraph/qframegraph.h
+++ b/src/render/framegraph/qframegraph.h
@@ -56,7 +56,7 @@ class QT3DRENDERSHARED_EXPORT QFrameGraph : public Qt3DCore::QComponent
Q_CLASSINFO("DefaultProperty", "activeFrameGraph")
public:
- explicit QFrameGraph(Qt3DCore::QNode *parent = 0);
+ explicit QFrameGraph(Qt3DCore::QNode *parent = Q_NULLPTR);
~QFrameGraph();
QFrameGraphNode *activeFrameGraph() const;
@@ -68,7 +68,7 @@ Q_SIGNALS:
void activeFrameGraphChanged(QFrameGraphNode *activeFrameGraph);
protected:
- QFrameGraph(QFrameGraphPrivate &dd, Qt3DCore::QNode *parent = 0);
+ QFrameGraph(QFrameGraphPrivate &dd, Qt3DCore::QNode *parent = Q_NULLPTR);
void copy(const Qt3DCore::QNode *ref) Q_DECL_OVERRIDE;
private:
diff --git a/src/render/framegraph/qframegraphnode.h b/src/render/framegraph/qframegraphnode.h
index 851b2fd74..36248cbc0 100644
--- a/src/render/framegraph/qframegraphnode.h
+++ b/src/render/framegraph/qframegraphnode.h
@@ -52,7 +52,7 @@ class QT3DRENDERSHARED_EXPORT QFrameGraphNode : public Qt3DCore::QNode
Q_OBJECT
Q_PROPERTY(bool enabled READ isEnabled WRITE setEnabled NOTIFY enabledChanged)
public:
- explicit QFrameGraphNode(Qt3DCore::QNode *parent = 0);
+ explicit QFrameGraphNode(Qt3DCore::QNode *parent = Q_NULLPTR);
~QFrameGraphNode();
QFrameGraphNode *parentFrameGraphNode() const;
@@ -63,7 +63,7 @@ public Q_SLOTS:
void setEnabled(bool enabled);
protected:
- QFrameGraphNode(QFrameGraphNodePrivate &dd, Qt3DCore::QNode *parent = 0);
+ QFrameGraphNode(QFrameGraphNodePrivate &dd, Qt3DCore::QNode *parent = Q_NULLPTR);
Q_SIGNALS:
void enabledChanged(bool enabled);
diff --git a/src/render/framegraph/qframegraphselector.h b/src/render/framegraph/qframegraphselector.h
index e88fcbba8..8114dbcf2 100644
--- a/src/render/framegraph/qframegraphselector.h
+++ b/src/render/framegraph/qframegraphselector.h
@@ -59,7 +59,7 @@ class QT3DRENDERSHARED_EXPORT QFrameGraphSelector : public QFrameGraphNode
{
Q_OBJECT
public:
- explicit QFrameGraphSelector(Qt3DCore::QNode *parent = 0);
+ explicit QFrameGraphSelector(Qt3DCore::QNode *parent = Q_NULLPTR);
~QFrameGraphSelector();
QFrameGraphSelectorFunctorPtr selectionFunctor() const;
diff --git a/src/render/framegraph/qlayerfilter.h b/src/render/framegraph/qlayerfilter.h
index 749acbb2b..a3e5d8af5 100644
--- a/src/render/framegraph/qlayerfilter.h
+++ b/src/render/framegraph/qlayerfilter.h
@@ -51,7 +51,7 @@ class QT3DRENDERSHARED_EXPORT QLayerFilter : public QFrameGraphNode
Q_OBJECT
Q_PROPERTY(QStringList layers READ layers WRITE setLayers NOTIFY layersChanged)
public:
- explicit QLayerFilter(Qt3DCore::QNode *parent = 0);
+ explicit QLayerFilter(Qt3DCore::QNode *parent = Q_NULLPTR);
~QLayerFilter();
QStringList layers() const;
@@ -63,7 +63,7 @@ Q_SIGNALS:
void layersChanged(const QStringList &layers);
protected:
- QLayerFilter(QLayerFilterPrivate &dd, Qt3DCore::QNode *parent = 0);
+ QLayerFilter(QLayerFilterPrivate &dd, Qt3DCore::QNode *parent = Q_NULLPTR);
void copy(const Qt3DCore::QNode *ref) Q_DECL_OVERRIDE;
private:
diff --git a/src/render/framegraph/qlighting.h b/src/render/framegraph/qlighting.h
index dab2f056e..603fe8e46 100644
--- a/src/render/framegraph/qlighting.h
+++ b/src/render/framegraph/qlighting.h
@@ -50,11 +50,11 @@ class QT3DRENDERSHARED_EXPORT QLighting : public QFrameGraphNode
Q_OBJECT
public:
- explicit QLighting(Qt3DCore::QNode *parent = 0);
+ explicit QLighting(Qt3DCore::QNode *parent = Q_NULLPTR);
~QLighting();
protected:
- QLighting(QLightingPrivate &dd, Qt3DCore::QNode *parent = 0);
+ QLighting(QLightingPrivate &dd, Qt3DCore::QNode *parent = Q_NULLPTR);
void copy(const Qt3DCore::QNode *ref) Q_DECL_OVERRIDE;
private:
diff --git a/src/render/framegraph/qnodraw.h b/src/render/framegraph/qnodraw.h
index 312e0c808..5e33d411c 100644
--- a/src/render/framegraph/qnodraw.h
+++ b/src/render/framegraph/qnodraw.h
@@ -47,7 +47,7 @@ class QT3DRENDERSHARED_EXPORT QNoDraw : public QFrameGraphNode
{
Q_OBJECT
public:
- explicit QNoDraw(Qt3DCore::QNode *parent = 0);
+ explicit QNoDraw(Qt3DCore::QNode *parent = Q_NULLPTR);
~QNoDraw();
private:
diff --git a/src/render/framegraph/qrenderpassfilter.h b/src/render/framegraph/qrenderpassfilter.h
index 941a22a8f..4060c267c 100644
--- a/src/render/framegraph/qrenderpassfilter.h
+++ b/src/render/framegraph/qrenderpassfilter.h
@@ -55,7 +55,7 @@ class QT3DRENDERSHARED_EXPORT QRenderPassFilter : public QFrameGraphNode
Q_OBJECT
public:
- explicit QRenderPassFilter(Qt3DCore::QNode *parent = 0);
+ explicit QRenderPassFilter(Qt3DCore::QNode *parent = Q_NULLPTR);
~QRenderPassFilter();
QList<QAnnotation *> includes() const;
@@ -67,7 +67,7 @@ public:
QList<QParameter *> parameters() const;
protected:
- QRenderPassFilter(QRenderPassFilterPrivate &dd, Qt3DCore::QNode *parent = 0);
+ QRenderPassFilter(QRenderPassFilterPrivate &dd, Qt3DCore::QNode *parent = Q_NULLPTR);
void copy(const Qt3DCore::QNode *ref) Q_DECL_OVERRIDE;
private:
diff --git a/src/render/framegraph/qrendertargetselector.h b/src/render/framegraph/qrendertargetselector.h
index d2fbb81b8..3b6b86d71 100644
--- a/src/render/framegraph/qrendertargetselector.h
+++ b/src/render/framegraph/qrendertargetselector.h
@@ -54,7 +54,7 @@ class QT3DRENDERSHARED_EXPORT QRenderTargetSelector : public QFrameGraphNode
Q_OBJECT
Q_PROPERTY(Qt3DRender::QRenderTarget *target READ target WRITE setTarget NOTIFY targetChanged)
public:
- explicit QRenderTargetSelector(Qt3DCore::QNode *parent = 0);
+ explicit QRenderTargetSelector(Qt3DCore::QNode *parent = Q_NULLPTR);
~QRenderTargetSelector();
QRenderTarget *target() const;
@@ -69,7 +69,7 @@ Q_SIGNALS:
void targetChanged(QRenderTarget *target);
protected:
- QRenderTargetSelector(QRenderTargetSelectorPrivate &dd, Qt3DCore::QNode *parent = 0);
+ QRenderTargetSelector(QRenderTargetSelectorPrivate &dd, Qt3DCore::QNode *parent = Q_NULLPTR);
void copy(const Qt3DCore::QNode *ref) Q_DECL_OVERRIDE;
private:
diff --git a/src/render/framegraph/qsortcriterion.h b/src/render/framegraph/qsortcriterion.h
index e38356e66..44f047b13 100644
--- a/src/render/framegraph/qsortcriterion.h
+++ b/src/render/framegraph/qsortcriterion.h
@@ -51,7 +51,7 @@ class QT3DRENDERSHARED_EXPORT QSortCriterion : public Qt3DCore::QNode
Q_OBJECT
Q_PROPERTY(Qt3DRender::QSortCriterion::SortType sort READ sort WRITE setSort NOTIFY sortChanged)
public:
- explicit QSortCriterion(Qt3DCore::QNode *parent = 0);
+ explicit QSortCriterion(Qt3DCore::QNode *parent = Q_NULLPTR);
~QSortCriterion();
enum SortType {
@@ -70,7 +70,7 @@ Q_SIGNALS:
void sortChanged(SortType sort);
protected:
- QSortCriterion(QSortCriterionPrivate &dd, Qt3DCore::QNode *parent = 0);
+ QSortCriterion(QSortCriterionPrivate &dd, Qt3DCore::QNode *parent = Q_NULLPTR);
void copy(const Qt3DCore::QNode *ref) Q_DECL_OVERRIDE;
private:
diff --git a/src/render/framegraph/qsortmethod.h b/src/render/framegraph/qsortmethod.h
index e8866a726..bffce84c5 100644
--- a/src/render/framegraph/qsortmethod.h
+++ b/src/render/framegraph/qsortmethod.h
@@ -51,7 +51,7 @@ class QT3DRENDERSHARED_EXPORT QSortMethod : public QFrameGraphNode
Q_OBJECT
public:
- explicit QSortMethod(Qt3DCore::QNode *parent = 0);
+ explicit QSortMethod(Qt3DCore::QNode *parent = Q_NULLPTR);
~QSortMethod();
void addCriterion(QSortCriterion *criterion);
@@ -59,7 +59,7 @@ public:
QList<QSortCriterion *> criteria() const;
protected:
- QSortMethod(QSortMethodPrivate &dd, Qt3DCore::QNode *parent = 0);
+ QSortMethod(QSortMethodPrivate &dd, Qt3DCore::QNode *parent = Q_NULLPTR);
void copy(const Qt3DCore::QNode *ref) Q_DECL_OVERRIDE;
private:
diff --git a/src/render/framegraph/qstateset.h b/src/render/framegraph/qstateset.h
index db9972a45..c9838a403 100644
--- a/src/render/framegraph/qstateset.h
+++ b/src/render/framegraph/qstateset.h
@@ -51,7 +51,7 @@ class QT3DRENDERSHARED_EXPORT QStateSet : public QFrameGraphNode
Q_OBJECT
public:
- explicit QStateSet(Qt3DCore::QNode *parent = 0);
+ explicit QStateSet(Qt3DCore::QNode *parent = Q_NULLPTR);
~QStateSet();
void addRenderState(QRenderState *state);
@@ -59,7 +59,7 @@ public:
QList<QRenderState *> renderStates() const;
protected:
- QStateSet(QStateSetPrivate &dd, Qt3DCore::QNode *parent = 0);
+ QStateSet(QStateSetPrivate &dd, Qt3DCore::QNode *parent = Q_NULLPTR);
void copy(const Qt3DCore::QNode *ref) Q_DECL_OVERRIDE;
private:
diff --git a/src/render/framegraph/qtechniquefilter.h b/src/render/framegraph/qtechniquefilter.h
index 7637941dc..90f5f7e28 100644
--- a/src/render/framegraph/qtechniquefilter.h
+++ b/src/render/framegraph/qtechniquefilter.h
@@ -52,7 +52,7 @@ class QT3DRENDERSHARED_EXPORT QTechniqueFilter : public QFrameGraphNode
{
Q_OBJECT
public:
- explicit QTechniqueFilter(Qt3DCore::QNode *parent = 0);
+ explicit QTechniqueFilter(Qt3DCore::QNode *parent = Q_NULLPTR);
~QTechniqueFilter();
QList<QAnnotation *> criteria() const;
@@ -64,7 +64,7 @@ public:
QList<QParameter *> parameters() const;
protected:
- QTechniqueFilter(QTechniqueFilterPrivate &dd, Qt3DCore::QNode *parent = 0);
+ QTechniqueFilter(QTechniqueFilterPrivate &dd, Qt3DCore::QNode *parent = Q_NULLPTR);
void copy(const Qt3DCore::QNode *ref) Q_DECL_OVERRIDE;
private:
diff --git a/src/render/framegraph/qviewport.h b/src/render/framegraph/qviewport.h
index 91cdae73e..4dd4c17e9 100644
--- a/src/render/framegraph/qviewport.h
+++ b/src/render/framegraph/qviewport.h
@@ -54,7 +54,7 @@ class QT3DRENDERSHARED_EXPORT QViewport : public QFrameGraphNode
Q_PROPERTY(QColor clearColor READ clearColor WRITE setClearColor NOTIFY clearColorChanged)
public:
- explicit QViewport(Qt3DCore::QNode *parent = 0);
+ explicit QViewport(Qt3DCore::QNode *parent = Q_NULLPTR);
~QViewport();
QRectF rect() const;
@@ -69,7 +69,7 @@ Q_SIGNALS:
void clearColorChanged(const QColor &clearColor);
protected:
- QViewport(QViewportPrivate &dd, Qt3DCore::QNode *parent = 0);
+ QViewport(QViewportPrivate &dd, Qt3DCore::QNode *parent = Q_NULLPTR);
void copy(const Qt3DCore::QNode *ref) Q_DECL_OVERRIDE;
private: