summaryrefslogtreecommitdiffstats
path: root/src/render/renderstates/qstenciloperation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/renderstates/qstenciloperation.cpp')
-rw-r--r--src/render/renderstates/qstenciloperation.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/render/renderstates/qstenciloperation.cpp b/src/render/renderstates/qstenciloperation.cpp
index a859b8e2c..5daf06ac0 100644
--- a/src/render/renderstates/qstenciloperation.cpp
+++ b/src/render/renderstates/qstenciloperation.cpp
@@ -52,12 +52,12 @@ QStencilOperationPrivate::~QStencilOperationPrivate() = default;
*/
/*!
- \property QStencilOperation::front
+ \property Qt3DRender::QStencilOperation::front
Holds the stencil operation arguments for front-facing polygons.
*/
/*!
- \property QStencilOperation::back
+ \property Qt3DRender::QStencilOperation::back
Holds the stencil operation arguments for back-facing polygons.
*/
@@ -72,15 +72,15 @@ QStencilOperation::QStencilOperation(QNode *parent)
const auto resend = [d]() { d->update(); };
- (void) connect(d->m_front, &QStencilOperationArguments::allTestsPassOperationChanged, resend);
- (void) connect(d->m_front, &QStencilOperationArguments::depthTestFailureOperationChanged, resend);
- (void) connect(d->m_front, &QStencilOperationArguments::stencilTestFailureOperationChanged, resend);
- (void) connect(d->m_front, &QStencilOperationArguments::faceModeChanged, resend);
+ (void) connect(d->m_front, &QStencilOperationArguments::allTestsPassOperationChanged, this, resend);
+ (void) connect(d->m_front, &QStencilOperationArguments::depthTestFailureOperationChanged, this, resend);
+ (void) connect(d->m_front, &QStencilOperationArguments::stencilTestFailureOperationChanged, this, resend);
+ (void) connect(d->m_front, &QStencilOperationArguments::faceModeChanged, this, resend);
- (void) connect(d->m_back, &QStencilOperationArguments::allTestsPassOperationChanged, resend);
- (void) connect(d->m_back, &QStencilOperationArguments::depthTestFailureOperationChanged, resend);
- (void) connect(d->m_back, &QStencilOperationArguments::stencilTestFailureOperationChanged, resend);
- (void) connect(d->m_back, &QStencilOperationArguments::faceModeChanged, resend);
+ (void) connect(d->m_back, &QStencilOperationArguments::allTestsPassOperationChanged, this, resend);
+ (void) connect(d->m_back, &QStencilOperationArguments::depthTestFailureOperationChanged, this, resend);
+ (void) connect(d->m_back, &QStencilOperationArguments::stencilTestFailureOperationChanged, this, resend);
+ (void) connect(d->m_back, &QStencilOperationArguments::faceModeChanged, this, resend);
}
/*! \internal */