QAbstractTextureImage

PyQt5.Qt3DRender.QAbstractTextureImage

Inherits from QNode.

Inherited by QPaintedTextureImage, QTextureImage.

Description

Encapsulates the necessary information to create an OpenGL texture image.

QAbstractTextureImage should be used as the means of providing image data to a QAbstractTexture. It contains the necessary information: mipmap level, layer, cube face load at the proper place data into an OpenGL texture.

The actual data is provided through a QTextureImageDataGenerator that will be executed by Aspect jobs in the backend. QAbstractTextureImage should be subclassed to provide a functor and eventual additional properties needed by the functor to load actual data.

Note: : QAbstractTextureImage should never be shared. Expect crashes, undefined behavior at best if this rule is not respected.

Methods

__init__(parent: QNode = None)

Constructs a new QAbstractTextureImage instance with parent as parent.


dataGenerator() → QTextureImageDataGenerator

TODO


face() → CubeMapFace

See also

setFace().


layer() → int

See also

setLayer().


mipLevel() → int

See also

setMipLevel().


notifyDataGeneratorChanged()

Triggers an update of the data generator that is sent to the backend.


setFace(CubeMapFace)

TODO


setLayer(int)

Sets the layer of a texture to layer. layer

See also

layer().


setMipLevel(int)

Sets the mip level of a texture to level. level

See also

mipLevel().

Signals

faceChanged(CubeMapFace)

TODO


layerChanged(int)

TODO


mipLevelChanged(int)

TODO