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
- layer() → int
See also
- mipLevel() → int
See also
- 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
- setMipLevel(int)
Sets the mip level of a texture to level. level
See also