summaryrefslogtreecommitdiffstats
path: root/src/render/renderstates/qstencilopseparate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/renderstates/qstencilopseparate.h')
-rw-r--r--src/render/renderstates/qstencilopseparate.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/render/renderstates/qstencilopseparate.h b/src/render/renderstates/qstencilopseparate.h
index cc21ebaad..6b82b7c9e 100644
--- a/src/render/renderstates/qstencilopseparate.h
+++ b/src/render/renderstates/qstencilopseparate.h
@@ -81,20 +81,20 @@ public:
StencilFaceMode faceMode() const;
- void setStencilFail(StencilOp op);
StencilOp stencilFail() const;
-
- void setDepthFail(StencilOp op);
StencilOp depthFail() const;
+ StencilOp stencilDepthPass() const;
+public Q_SLOTS:
+ void setStencilFail(StencilOp op);
+ void setDepthFail(StencilOp op);
void setStencilDepthPass(StencilOp op);
- StencilOp stencilDepthPass() const;
Q_SIGNALS:
- void stencilFailChanged();
- void depthFailChanged();
- void stencilDepthPassChanged();
- void faceModeChanged();
+ void stencilFailChanged(StencilOp stencilFail);
+ void depthFailChanged(StencilOp depthFail);
+ void stencilDepthPassChanged(StencilOp stencilDepthPass);
+ void faceModeChanged(StencilFaceMode faceMode);
private:
explicit QStencilOpSeparate(StencilFaceMode mode, QObject *parent = 0);