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

QStencilOperation.

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

depthTestFailureOperation() → Operation

faceMode() → FaceMode

TODO


setAllTestsPassOperation(Operation)

setDepthTestFailureOperation(Operation)

setStencilTestFailureOperation(Operation)

stencilTestFailureOperation() → Operation

Signals¶

allTestsPassOperationChanged(Operation)

TODO


depthTestFailureOperationChanged(Operation)

TODO


faceModeChanged(FaceMode)

TODO


stencilTestFailureOperationChanged(Operation)

TODO