summaryrefslogtreecommitdiffstats
path: root/src/core/yuv_video_node.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/yuv_video_node.h')
-rw-r--r--src/core/yuv_video_node.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/yuv_video_node.h b/src/core/yuv_video_node.h
index 670ec62b6..0baa5f5be 100644
--- a/src/core/yuv_video_node.h
+++ b/src/core/yuv_video_node.h
@@ -62,14 +62,14 @@ public:
const QRectF &yaTexCoordRect, const QRectF &uvTexCoordRect, const QSizeF &yaTexSize, const QSizeF &uvTexSize,
ColorSpace colorspace, float rMul, float rOff);
- virtual QSGMaterialType *type() const Q_DECL_OVERRIDE
+ QSGMaterialType *type() const override
{
static QSGMaterialType theType;
return &theType;
}
- virtual QSGMaterialShader *createShader() const Q_DECL_OVERRIDE;
- virtual int compare(const QSGMaterial *other) const Q_DECL_OVERRIDE;
+ QSGMaterialShader *createShader() const override;
+ int compare(const QSGMaterial *other) const override;
QSGTexture *m_yTexture;
QSGTexture *m_uTexture;
@@ -90,14 +90,14 @@ public:
const QRectF &yaTexCoordRect, const QRectF &uvTexCoordRect, const QSizeF &yaTexSize, const QSizeF &uvTexSize,
ColorSpace colorspace, float rMul, float rOff);
- virtual QSGMaterialType *type() const Q_DECL_OVERRIDE
+ QSGMaterialType *type() const override
{
static QSGMaterialType theType;
return &theType;
}
- virtual QSGMaterialShader *createShader() const Q_DECL_OVERRIDE;
- virtual int compare(const QSGMaterial *other) const Q_DECL_OVERRIDE;
+ QSGMaterialShader *createShader() const override;
+ int compare(const QSGMaterial *other) const override;
QSGTexture *m_aTexture;
};