summaryrefslogtreecommitdiffstats
path: root/src/render/defaults/qphongalphamaterial.cpp
diff options
context:
space:
mode:
authorFranck Arrecot <franck.arrecot@kdab.com>2016-03-03 12:57:38 +0100
committerPaul Lemire <paul.lemire@kdab.com>2016-03-17 11:25:16 +0000
commitc01bc22c287e58186a285b3f8507711fd982fd05 (patch)
tree77a5b100d5a02de3cf864672590cdde5d4099301 /src/render/defaults/qphongalphamaterial.cpp
parenta8371dccd60a097678239edc510e5bb4624b52b8 (diff)
QAnnotation changes
Task-number: QTBUG-51454 Change-Id: Iee08f6b1be39894c40926afb20e003d46bc735f4 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/render/defaults/qphongalphamaterial.cpp')
-rw-r--r--src/render/defaults/qphongalphamaterial.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/render/defaults/qphongalphamaterial.cpp b/src/render/defaults/qphongalphamaterial.cpp
index b92e78ca5..b48a7e7c6 100644
--- a/src/render/defaults/qphongalphamaterial.cpp
+++ b/src/render/defaults/qphongalphamaterial.cpp
@@ -39,7 +39,7 @@
#include "qphongalphamaterial.h"
#include "qphongalphamaterial_p.h"
-#include <Qt3DRender/qannotation.h>
+#include <Qt3DRender/qfilterkey.h>
#include <Qt3DRender/qmaterial.h>
#include <Qt3DRender/qeffect.h>
#include <Qt3DRender/qtechnique.h>
@@ -77,7 +77,7 @@ QPhongAlphaMaterialPrivate::QPhongAlphaMaterialPrivate()
, m_depthMask(new QDepthMask())
, m_blendState(new QBlendEquationArguments())
, m_blendEquation(new QBlendEquation())
- , m_annotation(new QAnnotation)
+ , m_filterKey(new QFilterKey)
{
}
@@ -116,13 +116,13 @@ void QPhongAlphaMaterialPrivate::init()
m_phongAlphaES2Technique->graphicsApiFilter()->setProfile(QGraphicsApiFilter::NoProfile);
Q_Q(QPhongAlphaMaterial);
- m_annotation->setParent(q);
- m_annotation->setName(QStringLiteral("renderingStyle"));
- m_annotation->setValue(QStringLiteral("forward"));
+ m_filterKey->setParent(q);
+ m_filterKey->setName(QStringLiteral("renderingStyle"));
+ m_filterKey->setValue(QStringLiteral("forward"));
- m_phongAlphaGL3Technique->addAnnotation(m_annotation);
- m_phongAlphaGL2Technique->addAnnotation(m_annotation);
- m_phongAlphaES2Technique->addAnnotation(m_annotation);
+ m_phongAlphaGL3Technique->addFilterKey(m_filterKey);
+ m_phongAlphaGL2Technique->addFilterKey(m_filterKey);
+ m_phongAlphaES2Technique->addFilterKey(m_filterKey);
m_depthMask->setMask(false);