QGLRenderSequencer ClassThe QGLRenderSequencer class orders the rendering of QGLSceneNode instances. More... #include <QGLRenderSequencer> This class was introduced in Qt 4.8. Public Functions
Detailed DescriptionThe QGLRenderSequencer class orders the rendering of QGLSceneNode instances. The QGLRenderSequencer class works with the QGLRenderOrderComparator and QGLRenderOrder classes to optimize the rendering order of scene nodes. In general instances of this class are managed by QGLPainter and it should not be necessary to explicitly create or manipulate them. The render sequencer works by tracking instances of QGLRenderOrder objects in a queue. As the scene graph is traversed during a call to a top-level node's QGLSceneNode::draw() function, the sequencer adds one QGLRenderOrder to the queue for each unique combination of rendering attributes. The top level scene graph node loops once for each unique combination - it does this in QGLSceneNode::draw() by calling nextInSequence(). At each iteration, a current QGLRenderOrder is maintained, and only nodes matching that order - as determined by QGLRenderOrder::operator==() - are rendered in that pass. Non-matching nodes are added to a queue in the order specified by QGLRenderOrder::operator<(). Once an iteration/pass of the scene graph is done, the next order is pulled from the front of the queue and the current QGLRenderOrder is set to it. Since the rendering attributes at a node are a function both of that node, and attributes inherited from its parents, and since a given node may appear multiple times at different places in the scene, it can thus have different attributes and orders in each place. So there is no one-to-one mapping between nodes and attributes. To deal with this, QGLRenderOrder mappings are discovered during rendering. There is no discovery pass. First, the initial QGLRenderOrder is lazily set when the first geometry is actually drawn to the GPU - latching in that order as the first current order. From that point, orders discovered that are distinct from the current one are skipped in this rendering pass - by returning false from renderInSequence() - and are instead added to the queue for rendering on a subsequent pass. When the final pass has been made, renderInSequence() returns false to the top level QGLSceneNode, indicating that looping over passes is complete. See also QGLRenderOrder. Member Function Documentation
|
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 contacter par email ou par MP ! |
Copyright © 2000-2012 - www.developpez.com