QStencilOperationArguments¶
- PyQt5.Qt3DRender.QStencilOperationArguments
Inherits from QObject.
Description¶
The QStencilOperationArguments class sets the actions to be taken when stencil and depth tests fail.
The QStencilOperationArguments class specifies the arguments for the stencil operations.
See also
Enums¶
- FaceMode
This enumeration holds the values for stencil operation argument face modes
Member
Value
Description
Back 0x0405
Arguments are applied to back-facing polygons.
Front 0x0404
Arguments are applied to front-facing polygons.
FrontAndBack 0x0408
Arguments are applied to both front- and back-facing polygons.
- Operation
This enumeration holds the values for stencil operation.
Member
Value
Description
Decrement 0x1E03
Decrement current value with saturation.
DecrementWrap 0x8508
Decrement current value with wrap.
Increment 0x1E02
Increment current value with saturation.
IncrementWrap 0x8507
Increment current value with wrap.
Invert 0x150A
Invert the current value.
Keep 0x1E00
Keep current stencil value.
Replace 0x1E01
Replace with the masked fragment stencil value.
Zero 0
Set stencil value to zero.
Methods¶
- allTestsPassOperation() → Operation
See also
- depthTestFailureOperation() → Operation
See also
- faceMode() → FaceMode
TODO
- setAllTestsPassOperation(Operation)
See also
- setDepthTestFailureOperation(Operation)
See also
- setStencilTestFailureOperation(Operation)
See also
- stencilTestFailureOperation() → Operation
See also