QTextureImageData

PyQt5.Qt3DRender.QTextureImageData

Description

QTextureImageData stores data representing a texture.

Methods

__init__()

Constructs a new QTextureImageData.


__init__(QTextureImageData)

TODO


cleanup()

Remove stored texture data and return the object to its initial state


data(layer: int = 0, face: int = 0, mipmapLevel: int = 0) → QByteArray

Returns the raw image data for the texture at layer layer, face face and mipmapLevel mipmapLevel

See also

setData().


depth() → int

Returns the depth of the stored texture

See also

setDepth().


faces() → int

Returns the number of faces in the stored texture

See also

setFaces().


format() → TextureFormat

Returns the format of the stored texture

See also

setFormat().


height() → int

Returns the height of the stored texture

See also

setHeight().


isCompressed() → bool

Returns true if the stored texture is in a compressed format


layers() → int

Returns the number of layers in the stored texture

See also

setLayers().


mipLevels() → int

Returns the number of mip levels in the stored texture

See also

setMipLevels().


pixelFormat() → PixelFormat

Returns the pixel format of the stored texture

See also

setPixelFormat().


pixelType() → PixelType

Returns the pixel type of the stored texture

See also

setPixelType().


setData(Union[QByteArray, bytes, bytearray], int, isCompressed: bool = False)

Store the data data with blocksize blockSize and if the data to be stored is compressed isCompressed

See also

data().


setDepth(int)

Sets the depth to depth. setDepth

See also

depth().


setFaces(int)

Sets the faces to faces. setFaces

See also

faces().


setFormat(TextureFormat)

Sets the format to format. **

See also

format().


setHeight(int)

Sets the height to height. setHeight

See also

height().


setImage(QImage)

Copies the image image as raw data within this object


setLayers(int)

Sets the layers to layers. setLayers

See also

layers().


setMipLevels(int)

Sets the mip levels to mipLevels. setMipLevels

See also

mipLevels().


setPixelFormat(PixelFormat)

Sets the pixel format to pixelFormat. setPixelFormat

See also

pixelFormat().


setPixelType(PixelType)

Sets the pixel type to pixelType setPixelType

See also

pixelType().


setTarget(Target)

Sets the target to target. target

See also

target().


setWidth(int)

Sets the width to width. setWidth

See also

width().


target() → Target

Returns the target for the stored texture

See also

setTarget().


width() → int

Returns the width of the stored texture

See also

setWidth().