df7ae8ea369c1c31329e86c6971daf5c5b50ca9f
[profile/ivi/qtdeclarative.git] / src / quick / scenegraph / coreapi / qsgdefaultrenderer_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: http://www.qt-project.org/
6 **
7 ** This file is part of the QtDeclarative module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QMLRENDERER_H
43 #define QMLRENDERER_H
44
45 #include "qsgrenderer_p.h"
46
47 #include <QtGui/private/qdatabuffer_p.h>
48
49 QT_BEGIN_HEADER
50
51 QT_BEGIN_NAMESPACE
52
53 class QSGDefaultRenderer : public QSGRenderer
54 {
55     Q_OBJECT
56 public:
57     class IndexGeometryNodePair : public QPair<int, QSGGeometryNode *>
58     {
59     public:
60         IndexGeometryNodePair(int i, QSGGeometryNode *n);
61         bool operator < (const IndexGeometryNodePair &other) const;
62     };
63
64
65     // Minimum heap.
66     class IndexGeometryNodePairHeap
67     {
68     public:
69         IndexGeometryNodePairHeap();
70         void insert(const IndexGeometryNodePair &x);
71         const IndexGeometryNodePair &top() const { return v.first(); }
72         IndexGeometryNodePair pop();
73         bool isEmpty() const { return v.isEmpty(); }
74     private:
75         static int parent(int i) { return (i - 1) >> 1; }
76         static int left(int i) { return (i << 1) | 1; }
77         static int right(int i) { return (i + 1) << 1; }
78         QDataBuffer<IndexGeometryNodePair> v;
79     };
80
81     QSGDefaultRenderer(QSGContext *context);
82
83     void render();
84
85     void nodeChanged(QSGNode *node, QSGNode::DirtyState state);
86
87     void setSortFrontToBackEnabled(bool sort);
88     bool isSortFrontToBackEnabled() const;
89
90 private:
91     void buildLists(QSGNode *node);
92     void renderNodes(const QDataBuffer<QSGGeometryNode *> &list);
93
94     const QSGClipNode *m_currentClip;
95     QSGMaterial *m_currentMaterial;
96     QSGMaterialShader *m_currentProgram;
97     const QMatrix4x4 *m_currentMatrix;
98     QMatrix4x4 m_renderOrderMatrix;
99     QDataBuffer<QSGGeometryNode *> m_opaqueNodes;
100     QDataBuffer<QSGGeometryNode *> m_transparentNodes;
101     QDataBuffer<QSGGeometryNode *> m_tempNodes;
102     IndexGeometryNodePairHeap m_heap;
103
104     bool m_rebuild_lists;
105     bool m_needs_sorting;
106     bool m_sort_front_to_back;
107     int m_currentRenderOrder;
108
109 #ifdef QML_RUNTIME_TESTING
110     bool m_render_opaque_nodes;
111     bool m_render_alpha_nodes;
112 #endif
113 };
114
115 QT_END_NAMESPACE
116
117 QT_END_HEADER
118
119 #endif // QMLRENDERER_H