QTextureData

PyQt5.Qt3DRender.QTextureData

Description

The QTextureData class stores texture information such as the target, height, width, depth, layers, wrap, and if mipmaps are enabled.

Methods

__init__()

Creates a new QTextureData instance.


__init__(QTextureData)

TODO


addImageData(QTextureImageData)

Adds an extra image layer to the texture using imageData.

Note: The texture image should be loaded with the size specified on the texture. However, if no size is specified, the size of the first texture image file is used as default.


comparisonFunction() → ComparisonFunction

Returns the current comparison function.


comparisonMode() → ComparisonMode

Returns the current comparison mode.


depth() → int

Returns the texture depth.

See also

setDepth().


format() → TextureFormat

Returns the texture format

See also

setFormat().


height() → int

Returns the texture height.

See also

setHeight().


imageData() → List[QTextureImageData]

Returns the data of the images used by this texture.


isAutoMipMapGenerationEnabled() → bool

Returns whether the texture has auto mipmap generation enabled.


layers() → int

Returns the texture layers.

See also

setLayers().


magnificationFilter() → Filter

Returns the current magnification filter.


maximumAnisotropy() → float

Returns the current maximum anisotropy.


minificationFilter() → Filter

Returns the current minification filter.


setAutoMipMapGenerationEnabled(bool)

Sets whether the texture has automatic mipmap generation enabled, to autoMipMap.


setComparisonFunction(ComparisonFunction)

TODO


setComparisonMode(ComparisonMode)

TODO


setDepth(int)

Sets the texture depth to depth

See also

depth().


setFormat(TextureFormat)

TODO


setHeight(int)

Sets the target height to height.

See also

height().


setLayers(int)

Sets the texture layers to layers.

See also

layers().


setMagnificationFilter(Filter)

TODO


setMaximumAnisotropy(float)

Sets the maximum anisotropy to maximumAnisotropy.


setMinificationFilter(Filter)

TODO


setTarget(Target)

TODO


setWidth(int)

Sets the texture width to width.

See also

width().


setWrapModeX(WrapMode)

TODO


setWrapModeY(WrapMode)

TODO


setWrapModeZ(WrapMode)

TODO


target() → Target

Returns the texture data target.

See also

setTarget().


width() → int

Returns the texture width.

See also

setWidth().


wrapModeX() → WrapMode

Returns the current wrap mode X.

See also

setWrapModeX().


wrapModeY() → WrapMode

Returns the current wrap mode Y.

See also

setWrapModeY().


wrapModeZ() → WrapMode

Returns the current wrap mode Z.

See also

setWrapModeZ().