QSGTexture Class

The QSGTexture class is a baseclass for textures used in the scene graph. More...

Header: #include <QSGTexture>
qmake: QT += quick
Inherits: QObject
Inherited By:

QSGDynamicTexture

Public Types

enum Filtering { None, Nearest, Linear }
enum WrapMode { Repeat, ClampToEdge }

Public Functions

QSGTexture()
~QSGTexture()
virtual void bind() = 0
QRectF convertToNormalizedSourceRect(const QRectF &rect) const
QSGTexture::Filtering filtering() const
virtual bool hasAlphaChannel() const = 0
virtual bool hasMipmaps() const = 0
QSGTexture::WrapMode horizontalWrapMode() const
virtual bool isAtlasTexture() const
QSGTexture::Filtering mipmapFiltering() const
virtual QRectF normalizedTextureSubRect() const
virtual QSGTexture *removedFromAtlas() const
void setFiltering(Filtering filter)
void setHorizontalWrapMode(WrapMode hwrap)
void setMipmapFiltering(Filtering filter)
void setVerticalWrapMode(WrapMode vwrap)
virtual int textureId() const = 0
virtual QSize textureSize() const = 0
void updateBindOptions(bool force = false)
QSGTexture::WrapMode verticalWrapMode() const
  • 31 public functions inherited from QObject

Additional Inherited Members

  • 1 property inherited from QObject
  • 1 public slot inherited from QObject
  • 2 signals inherited from QObject
  • 11 static public members inherited from QObject
  • 9 protected functions inherited from QObject

Detailed Description

The QSGTexture class is a baseclass for textures used in the scene graph.

Users can freely implement their own texture classes to support arbitrary input textures, such as YUV video frames or 8 bit alpha masks. The scene graph backend provides a default implementation of normal color textures. As the implementation of these may be hardware specific, they are constructed via the factory function QQuickWindow::createTextureFromImage().

The texture is a wrapper around an OpenGL texture, which texture id is given by textureId() and which size in pixels is given by textureSize(). hasAlphaChannel() reports if the texture contains opacity values and hasMipmaps() reports if the texture contains mipmap levels.

To use a texture, call the bind() function. The texture parameters specifying how the texture is bound, can be specified with setMipmapFiltering(), setFiltering(), setHorizontalWrapMode() and setVerticalWrapMode(). The texture will internally try to store these values to minimize the OpenGL state changes when the texture is bound.

Texture Atlasses

Some scene graph backends use texture atlasses, grouping multiple small textures into one large texture. If this is the case, the function isAtlasTexture() will return true. Atlasses are used to aid the rendering algorithm to do better sorting which increases performance. The location of the texture inside the atlas is given with the normalizedTextureSubRect() function.

If the texture is used in such a way that atlas is not preferable, the function removedFromAtlas() can be used to extract a non-atlassed copy.

Note: All classes with QSG prefix should be used solely on the scene graph's rendering thread. See Scene Graph and Rendering for more information.

See also Scene Graph - Rendering FBOs and Scene Graph - Rendering FBOs in a thread.

Member Type Documentation

enum QSGTexture::Filtering

Specifies how sampling of texels should filter when texture coordinates are not pixel aligned.

ConstantValueDescription
QSGTexture::None0No filtering should occur. This value is only used together with setMipmapFiltering().
QSGTexture::Nearest1Sampling returns the nearest texel.
QSGTexture::Linear2Sampling returns a linear interpolation of the neighboring texels.

enum QSGTexture::WrapMode

Specifies how the texture should treat texture coordinates.

ConstantValueDescription
QSGTexture::Repeat0Only the factional part of the texture coordiante is used, causing values above 1 and below 0 to repeat.
QSGTexture::ClampToEdge1Values above 1 are clamped to 1 and values below 0 are clamped to 0.

Member Function Documentation

QSGTexture::QSGTexture()

Constructs the QSGTexture base class.

QSGTexture::~QSGTexture()

Destroys the QSGTexture.

[pure virtual] void QSGTexture::bind()

Call this function to bind this texture to the current texture target.

Binding a texture may also include uploading the texture data from a previously set QImage.

Warning: This function can only be called from the rendering thread.

QRectF QSGTexture::convertToNormalizedSourceRect(const QRectF &rect) const

Returns rect converted to normalized coordinates.

See also normalizedTextureSubRect().

QSGTexture::Filtering QSGTexture::filtering() const

Returns the sampling mode to be used for this texture.

See also setFiltering().

[pure virtual] bool QSGTexture::hasAlphaChannel() const

Returns true if the texture data contains an alpha channel.

[pure virtual] bool QSGTexture::hasMipmaps() const

Returns true if the texture data contains mipmap levels.

QSGTexture::WrapMode QSGTexture::horizontalWrapMode() const

Returns the horizontal wrap mode to be used for this texture.

See also setHorizontalWrapMode().

[virtual] bool QSGTexture::isAtlasTexture() const

Returns weither this texture is part of an atlas or not.

The default implementation returns false.

QSGTexture::Filtering QSGTexture::mipmapFiltering() const

Returns whether mipmapping should be used when sampling from this texture.

See also setMipmapFiltering().

[virtual] QRectF QSGTexture::normalizedTextureSubRect() const

Returns the rectangle inside textureSize() that this texture represents in normalized coordinates.

The default implementation returns a rect at position (0, 0) with width and height of 1.

[virtual] QSGTexture *QSGTexture::removedFromAtlas() const

This function returns a copy of the current texture which is removed from its atlas.

The current texture remains unchanged, so texture coordinates do not need to be updated.

Removing a texture from an atlas is primarily useful when passing it to a shader that operates on the texture coordinates 0-1 instead of the texture subrect inside the atlas.

If the texture is not part of a texture atlas, this function returns 0.

Implementations of this function are recommended to return the same instance for multiple calls to limit memory usage.

Warning: This function can only be called from the rendering thread.

void QSGTexture::setFiltering(Filtering filter)

Sets the sampling mode to be used for the upcoming bind() call to filter.

See also filtering().

void QSGTexture::setHorizontalWrapMode(WrapMode hwrap)

Sets the horizontal wrap mode to be used for the upcoming bind() call to hwrap

See also horizontalWrapMode().

void QSGTexture::setMipmapFiltering(Filtering filter)

Sets the mipmap sampling mode to be used for the upcoming bind() call to filter.

Setting the mipmap filtering has no effect it the texture does not have mipmaps.

See also mipmapFiltering() and hasMipmaps().

void QSGTexture::setVerticalWrapMode(WrapMode vwrap)

Sets the vertical wrap mode to be used for the upcoming bind() call to vwrap

See also verticalWrapMode().

[pure virtual] int QSGTexture::textureId() const

Returns the OpenGL texture id for this texture.

The default value is 0, indicating that it is an invalid texture id.

The function should at all times return the correct texture id.

Warning: This function can only be called from the rendering thread.

[pure virtual] QSize QSGTexture::textureSize() const

Returns the size of the texture.

void QSGTexture::updateBindOptions(bool force = false)

Update the texture state to match the filtering, mipmap and wrap options currently set.

If force is true, all properties will be updated regardless of weither they have changed or not.

QSGTexture::WrapMode QSGTexture::verticalWrapMode() const

Returns the vertical wrap mode to be used for this texture.

See also setVerticalWrapMode().

© 2017 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.