QRenderTargetSelector

PyQt5.Qt3DRender.QRenderTargetSelector

Inherits from QFrameGraphNode.

Description

Provides a way of specifying a render target.

A QRenderTargetSelector is used to select active QRenderTarget for the FrameGraph. When QRenderTargetSelector is present in the FrameGraph, the rendering is directed into QTexture objects or draw buffers instead of the surface specified in the QRenderSurfaceSelector. A render buffer is automatically generated for an attachment point if drawBuffers contain attachment point that any output in the QRenderTarget do not specify. If the drawBuffers is empty, the renderer will default to using all the outputs in QRenderTarget.

Methods

__init__(parent: QNode = None)

Constructs QRenderTargetSelector with given parent.


outputs() → List[QRenderTargetOutput.AttachmentPoint]

Returns the list of draw buffers for the current QRenderTargetSelector instance.

See also

setOutputs().


setTarget(QRenderTarget)

See also

target().


target() → QRenderTarget

See also

setTarget().

Signals

targetChanged(QRenderTarget)

TODO