QForwardRenderer

PyQt5.Qt3DExtras.QForwardRenderer

Inherits from QTechniqueFilter.

Description

The QForwardRenderer provides a default FrameGraph implementation of a forward renderer.

Forward rendering is what OpenGL traditionally uses. It renders directly to the backbuffer one object at a time shading each one as it goes.

QForwardRenderer is a single leaf FrameGraph tree which contains a QViewport, a QCameraSelector, and a QClearBuffers. The QForwardRenderer has a default requirement filter key whose name is 鈥渞enderingStyle鈥 and value 鈥渇orward鈥. If you need to filter out your techniques, you should do so based on that filter key.

By default the viewport occupies the whole screen and the clear color is white. Frustum culling is also enabled.

Methods

__init__(parent: QNode = None)

TODO


buffersToClear() → BufferType

TODO


camera() → QEntity

See also

setCamera().


clearColor() → QColor

See also

setClearColor().


externalRenderTargetSize() → QSize

gamma() → float

See also

setGamma().


isFrustumCullingEnabled() → bool

TODO


setBuffersToClear(BufferType)

TODO


setCamera(QEntity)

See also

camera().


setClearColor(Union[QColor, GlobalColor])

See also

clearColor().


setExternalRenderTargetSize(QSize)

setFrustumCullingEnabled(bool)

setGamma(float)

See also

gamma().


setSurface(QObject)

See also

surface().


setViewportRect(QRectF)

See also

viewportRect().


surface() → QObject

See also

setSurface().


viewportRect() → QRectF

See also

setViewportRect().

Signals

buffersToClearChanged(BufferType)

TODO


cameraChanged(QEntity)

TODO


clearColorChanged(Union[QColor, GlobalColor])

TODO


externalRenderTargetSizeChanged(QSize)

TODO


frustumCullingEnabledChanged(bool)

TODO


gammaChanged(float)

TODO


surfaceChanged(QObject)

TODO


viewportRectChanged(QRectF)

TODO