Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

QSGTexture Class

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

 #include <QSGTexture>

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

Protected Functions

QSGTexture(QSGTexturePrivate & dd)
  • 9 protected functions inherited from QObject

Additional Inherited Members

  • 1 property inherited from QObject
  • 1 public slot inherited from QObject
  • 2 signal inherited from QObject
  • 11 static public members 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 are constructed via the factory function QQuickCanvas::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 backens 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.

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()

QSGTexture::QSGTexture(QSGTexturePrivate & dd) [protected]

QSGTexture::~QSGTexture()

void QSGTexture::bind() [pure virtual]

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

QSGTexture::Filtering QSGTexture::filtering() const

See also setFiltering().

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

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

Returns true if the texture data contains mipmap levels.

QSGTexture::WrapMode QSGTexture::horizontalWrapMode() const

See also setHorizontalWrapMode().

bool QSGTexture::isAtlasTexture() const [virtual]

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().

QRectF QSGTexture::normalizedTextureSubRect() const [virtual]

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.

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

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)

See also verticalWrapMode().

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

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.

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

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

See also setVerticalWrapMode().

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 5.0-snapshot
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web