QRenderTargetOutput¶
- PyQt5.Qt3DRender.QRenderTargetOutput
Inherits from QNode.
Description¶
The QRenderTargetOutput class allows the specification of an attachment of a render target (whether it is a color texture, a depth texture, etc… ).
A QRenderTargetOutput specifies the attachment point and parameters for texture that is attached to render target. In addition to the attachment point, texture miplevel, layer and cubemap face can be specified. The texture attached to the QRenderTargetOutput must be compatible with the given parameters.
Enums¶
- AttachmentPoint
This enumeration specifies the values for the attachment point.
Member
Value
Description
Color0 0
Color attachment point at index 0
Color1 1
Color attachment point at index 1
Color10 10
Color attachment point at index 10
Color11 11
Color attachment point at index 11
Color12 12
Color attachment point at index 12
Color13 13
Color attachment point at index 13
Color14 14
Color attachment point at index 14
Color15 15
Color attachment point at index 15
Color2 2
Color attachment point at index 2
Color3 3
Color attachment point at index 3
Color4 4
Color attachment point at index 4
Color5 5
Color attachment point at index 5
Color6 6
Color attachment point at index 6
Color7 7
Color attachment point at index 7
Color8 8
Color attachment point at index 8
Color9 9
Color attachment point at index 9
Depth 16
Depth attachment point
DepthStencil 18
attachment point
Stencil 17
Stencil attachment point
Methods¶
- __init__(parent: QNode = None)
The constructor creates a new QRenderTargetOutput::QRenderTargetOutput instance with the specified parent.
- attachmentPoint() → AttachmentPoint
See also
- face() → CubeMapFace
See also
- layer() → int
See also
- mipLevel() → int
See also
- setAttachmentPoint(AttachmentPoint)
See also
- setFace(CubeMapFace)
TODO
- setLayer(int)
See also
- setMipLevel(int)
See also
- setTexture(QAbstractTexture)
See also
- texture() → QAbstractTexture
See also
Signals¶
- attachmentPointChanged(AttachmentPoint)
TODO
- faceChanged(CubeMapFace)
TODO
- layerChanged(int)
TODO
- mipLevelChanged(int)
TODO
- textureChanged(QAbstractTexture)
TODO