QRenderPassFilter

PyQt5.Qt3DRender.QRenderPassFilter

Inherits from QFrameGraphNode.

Description

Provides storage for vectors of Filter Keys and Parameters.

A QRenderPassFilter FrameGraph node is used to select which QRenderPass objects are selected for drawing. QRenderPassFilter specifies a list of QFilterKey objects and QParameter objects. When QRenderPassFilter is present in the FrameGraph, only the QRenderPass objects, whose QFilterKey objects match the keys in QRenderPassFilter are selected for rendering. If no QRenderPassFilter is present, then all QRenderPass objects are selected for rendering. The parameters in the list can be used to set values for shader parameters. The parameters in QRenderPassFilter are overridden by parameters in QTechniqueFilter, QTechnique and QRenderPass.

Methods

__init__(parent: QNode = None)

The constructor creates an instance with the specified parent.


addMatch(QFilterKey)

Add the filterKey to the match vector.


addParameter(QParameter)

Add the given parameter to the parameter vector.


matchAny() → List[QFilterKey]

Returns a vector of the current keys for the filter.


parameters() → List[QParameter]

Returns the current vector of parameters.


removeMatch(QFilterKey)

Remove the filterKey from the match vector.


removeParameter(QParameter)

Remove the given parameter from the parameter vector.