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  ·  Toutes les fonctions  ·  Vues d'ensemble  · 

QGLFramebufferObject Class Reference
[QtOpenGL module]

The QGLFramebufferObject class encapsulates an OpenGL framebuffer object. More...

 #include <QGLFramebufferObject>

Inherits QPaintDevice.

This class was introduced in Qt 4.2.

Public Types

  • enum Attachment { NoAttachment, CombinedDepthStencil, Depth }

Public Functions

Static Public Members

Additional Inherited Members


Detailed Description

The QGLFramebufferObject class encapsulates an OpenGL framebuffer object.

The QGLFramebufferObject class encapsulates an OpenGL framebuffer object, defined by the GL_EXT_framebuffer_object extension. In addition it provides a rendering surface that can be painted on with a QPainter, rendered to using native GL calls, or both. This surface can be bound and used as a regular texture in your own GL drawing code. By default, the QGLFramebufferObject class generates a 2D GL texture (using the GL_TEXTURE_2D target), which is used as the internal rendering target.

It is important to have a current GL context when creating a QGLFramebufferObject, otherwise initialization will fail.

OpenGL framebuffer objects and pbuffers (see QGLPixelBuffer) can both be used to render to offscreen surfaces, but there are a number of advantages with using framebuffer objects instead of pbuffers:

  1. A framebuffer object does not require a separate rendering context, so no context switching will occur when switching rendering targets. There is an overhead involved in switching targets, but in general it is cheaper than a context switch to a pbuffer.
  2. Rendering to dynamic textures (i.e. render-to-texture functionality) works on all platforms. No need to do explicit copy calls from a render buffer into a texture, as was necessary on systems that did not support the render_texture extension.
  3. It is possible to attach several rendering buffers (or texture objects) to the same framebuffer object, and render to all of them without doing a context switch.
  4. The OpenGL framebuffer extension is a pure GL extension with no system dependant WGL, CGL, or GLX parts. This makes using framebuffer objects more portable.

Note that primitives drawn to a QGLFramebufferObject with QPainter will only be antialiased if the QPainter::HighQualityAntialiasing render hint is set. This is because there is currently no support for the GL_EXT_framebuffer_multisample extension, which is required to do multisample based antialiasing. Also note that the QPainter::HighQualityAntialiasing render hint requires the GL_ARB_fragment_program extension to work in OpenGL.

See also Framebuffer Object Example.


Member Type Documentation

enum QGLFramebufferObject::Attachment

This enum type is used to configure the depth and stencil buffers attached to the framebuffer object when it is created.

ConstantValueDescription
QGLFramebufferObject::NoAttachment0No attachment is added to the framebuffer object. Note that the OpenGL depth and stencil tests won't work when rendering to a framebuffer object without any depth or stencil buffers. This is the default value.
QGLFramebufferObject::CombinedDepthStencil1If the GL_EXT_packed_depth_stencil extension is present, a combined depth and stencil buffer is attached. If the extension is not present, only a depth buffer is attached.
QGLFramebufferObject::Depth2A depth buffer is attached to the framebuffer object.

This enum was introduced in Qt 4.3.

See also attachment().


Member Function Documentation

QGLFramebufferObject::QGLFramebufferObject ( const QSize & size, GLenum target = GL_TEXTURE_2D )

Constructs an OpenGL framebuffer object and binds a 2D GL texture to the buffer of the size size. The texture is bound to the GL_COLOR_ATTACHMENT0 target in the framebuffer object.

The target parameter is used to specify the GL texture target. The default target is GL_TEXTURE_2D. Keep in mind that GL_TEXTURE_2D textures must have a power of 2 width and height (e.g. 256x512), unless you are using OpenGL 2.0 or higher.

By default, no depth and stencil buffers are attached. This behavior can be toggled using one of the overloaded constructors.

The default internal texture format is GL_RGBA8.

It is important that you have a current GL context set when creating the QGLFramebufferObject, otherwise the initialization will fail.

See also size(), texture(), and attachment().

QGLFramebufferObject::QGLFramebufferObject ( int width, int height, GLenum target = GL_TEXTURE_2D )

This is an overloaded function.

Constructs an OpenGL framebuffer object and binds a 2D GL texture to the buffer of the given width and height.

See also size() and texture().

QGLFramebufferObject::QGLFramebufferObject ( int width, int height, Attachment attachment, GLenum target = GL_TEXTURE_2D, GLenum internal_format = GL_RGBA8 )

This is an overloaded function.

Constructs an OpenGL framebuffer object and binds a texture to the buffer of the given width and height.

The attachment parameter describes the depth/stencil buffer configuration, target the texture target and internal_format the internal texture format. The default texture target is GL_TEXTURE_2D, while the default internal format is GL_RGBA8.

See also size(), texture(), and attachment().

QGLFramebufferObject::QGLFramebufferObject ( const QSize & size, Attachment attachment, GLenum target = GL_TEXTURE_2D, GLenum internal_format = GL_RGBA8 )

This is an overloaded function.

Constructs an OpenGL framebuffer object and binds a texture to the buffer of the given size.

The attachment parameter describes the depth/stencil buffer configuration, target the texture target and internal_format the internal texture format. The default texture target is GL_TEXTURE_2D, while the default internal format is GL_RGBA8.

See also size(), texture(), and attachment().

QGLFramebufferObject::~QGLFramebufferObject ()   [virtual]

Destroys the framebuffer object and frees any allocated resources.

Attachment QGLFramebufferObject::attachment () const

Returns the status of the depth and stencil buffers attached to this framebuffer object.

bool QGLFramebufferObject::bind ()

Switches rendering from the default, windowing system provided framebuffer to this framebuffer object. Returns true upon success, false otherwise.

void QGLFramebufferObject::drawTexture ( const QRectF & target, GLuint textureId, GLenum textureTarget = GL_TEXTURE_2D )

Draws the given texture, textureId, to the given target rectangle, target, in OpenGL model space. The textureTarget should be a 2D texture target.

The framebuffer object should be bound when calling this function.

Equivalent to the corresponding QGLContext::drawTexture().

This function was introduced in Qt 4.4.

void QGLFramebufferObject::drawTexture ( const QPointF & point, GLuint textureId, GLenum textureTarget = GL_TEXTURE_2D )

Draws the given texture, textureId, at the given point in OpenGL model space. The textureTarget should be a 2D texture target.

The framebuffer object should be bound when calling this function.

Equivalent to the corresponding QGLContext::drawTexture().

This function was introduced in Qt 4.4.

GLuint QGLFramebufferObject::handle () const

Returns the GL framebuffer object handle for this framebuffer object (returned by the glGenFrameBuffersEXT() function). This handle can be used to attach new images or buffers to the framebuffer. The user is responsible for cleaning up and destroying these objects.

bool QGLFramebufferObject::hasOpenGLFramebufferObjects ()   [static]

Returns true if the OpenGL GL_EXT_framebuffer_object extension is present on this system; otherwise returns false.

bool QGLFramebufferObject::isBound () const

Returns true if the framebuffer object is currently bound to a context, otherwise false is returned.

This function was introduced in Qt 4.5.

bool QGLFramebufferObject::isValid () const

Returns true if the framebuffer object is valid.

The framebuffer can become invalid if the initialization process fails, the user attaches an invalid buffer to the framebuffer object, or a non-power of 2 width/height is specified as the texture size if the texture target is GL_TEXTURE_2D.

bool QGLFramebufferObject::release ()

Switches rendering back to the default, windowing system provided framebuffer. Returns true upon success, false otherwise.

QSize QGLFramebufferObject::size () const

Returns the size of the texture attached to this framebuffer object.

GLuint QGLFramebufferObject::texture () const

Returns the texture id for the texture attached as the default rendering target in this framebuffer object. This texture id can be bound as a normal texture in your own GL code.

QImage QGLFramebufferObject::toImage () const

Returns the contents of this framebuffer object as a QImage.

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 64
  2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  5. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  6. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
  7. La rubrique Qt a besoin de vous ! 1
Page suivante

Le blog Digia au hasard

Logo

Créer des applications avec un style Metro avec Qt, exemples en QML et C++, un article de Digia Qt traduit par Thibaut Cuvelier

Le blog Digia est l'endroit privilégié pour la communication sur l'édition commerciale de Qt, où des réponses publiques sont apportées aux questions les plus posées au support. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

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 4.5
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