summaryrefslogtreecommitdiffstats
path: root/src/render/renderstates/qstenciloperation.h
diff options
context:
space:
mode:
authorRobert Brock <robert.brock@kdab.com>2016-03-01 17:11:04 +0000
committerPaul Lemire <paul.lemire@kdab.com>2016-03-18 08:54:04 +0000
commit55e2c86bbba176e54235f45010ae3456298eb099 (patch)
treedb4aa88e73ca3f6bb04317b63114ad9a6720417e /src/render/renderstates/qstenciloperation.h
parent6c0e1ca8590a0aa7049e6cf500bd6d37080416f9 (diff)
QStencilOpSeparate renamed to QStencilOperationArguments
As per API review Change-Id: If0f4f5719508a41d786810c36051446b2c7a08db Task-number: QTBUG-51436 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/render/renderstates/qstenciloperation.h')
-rw-r--r--src/render/renderstates/qstenciloperation.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/render/renderstates/qstenciloperation.h b/src/render/renderstates/qstenciloperation.h
index 65d7cbeff..4f0ff08aa 100644
--- a/src/render/renderstates/qstenciloperation.h
+++ b/src/render/renderstates/qstenciloperation.h
@@ -47,20 +47,20 @@ QT_BEGIN_NAMESPACE
namespace Qt3DRender {
class QStencilOperationPrivate;
-class QStencilOpSeparate;
+class QStencilOperationArguments;
class QT3DRENDERSHARED_EXPORT QStencilOperation : public QRenderState
{
Q_OBJECT
- Q_PROPERTY(Qt3DRender::QStencilOpSeparate *front READ front CONSTANT)
- Q_PROPERTY(Qt3DRender::QStencilOpSeparate *back READ back CONSTANT)
+ Q_PROPERTY(Qt3DRender::QStencilOperationArguments *front READ front CONSTANT)
+ Q_PROPERTY(Qt3DRender::QStencilOperationArguments *back READ back CONSTANT)
public:
explicit QStencilOperation(Qt3DCore::QNode *parent = 0);
~QStencilOperation();
- QStencilOpSeparate *front() const;
- QStencilOpSeparate *back() const;
+ QStencilOperationArguments *front() const;
+ QStencilOperationArguments *back() const;
protected:
void copy(const Qt3DCore::QNode *ref) Q_DECL_FINAL;