Fix potential crash when using text and more than 1 QQuickView
[profile/ivi/qtdeclarative.git] / src / quick / scenegraph / qsgdefaultdistancefieldglyphcache_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the QtQml module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia.  For licensing terms and
14 ** conditions see http://qt.digia.com/licensing.  For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights.  These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file.  Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QSGDEFAULTDISTANCEFIELDGLYPHCACHE_H
43 #define QSGDEFAULTDISTANCEFIELDGLYPHCACHE_H
44
45 #include "qsgadaptationlayer_p.h"
46 #include <QtGui/qopenglfunctions.h>
47 #include <qopenglshaderprogram.h>
48 #include <QtGui/private/qopenglengineshadersource_p.h>
49 #include <private/qsgareaallocator_p.h>
50
51 QT_BEGIN_NAMESPACE
52
53 class QOpenGLSharedResourceGuard;
54 class Q_QUICK_PRIVATE_EXPORT QSGDefaultDistanceFieldGlyphCache : public QSGDistanceFieldGlyphCache
55 {
56 public:
57     QSGDefaultDistanceFieldGlyphCache(QSGDistanceFieldGlyphCacheManager *man, QOpenGLContext *c, const QRawFont &font);
58     virtual ~QSGDefaultDistanceFieldGlyphCache();
59
60     void requestGlyphs(const QSet<glyph_t> &glyphs);
61     void storeGlyphs(const QHash<glyph_t, QImage> &glyphs);
62     void referenceGlyphs(const QSet<glyph_t> &glyphs);
63     void releaseGlyphs(const QSet<glyph_t> &glyphs);
64
65     bool useWorkaroundBrokenFBOReadback() const;
66     int maxTextureSize() const;
67
68     void setMaxTextureCount(int max) { m_maxTextureCount = max; }
69     int maxTextureCount() const { return m_maxTextureCount; }
70
71 private:
72     struct TextureInfo {
73         GLuint texture;
74         QSize size;
75         QRect allocatedArea;
76         QImage image;
77
78         TextureInfo() : texture(0)
79         { }
80     };
81
82     void createTexture(TextureInfo * texInfo, int width, int height);
83     void resizeTexture(TextureInfo * texInfo, int width, int height);
84
85     TextureInfo *textureInfo(int index)
86     {
87         for (int i = m_textures.count(); i <= index; ++i)
88             m_textures.append(TextureInfo());
89
90         return &m_textures[index];
91     }
92
93     void createBlitProgram()
94     {
95         m_blitProgram = new QOpenGLShaderProgram;
96         {
97             QString source;
98             source.append(QLatin1String(qopenglslMainWithTexCoordsVertexShader));
99             source.append(QLatin1String(qopenglslUntransformedPositionVertexShader));
100
101             QOpenGLShader *vertexShader = new QOpenGLShader(QOpenGLShader::Vertex, m_blitProgram);
102             vertexShader->compileSourceCode(source);
103
104             m_blitProgram->addShader(vertexShader);
105         }
106         {
107             QString source;
108             source.append(QLatin1String(qopenglslMainFragmentShader));
109             source.append(QLatin1String(qopenglslImageSrcFragmentShader));
110
111             QOpenGLShader *fragmentShader = new QOpenGLShader(QOpenGLShader::Fragment, m_blitProgram);
112             fragmentShader->compileSourceCode(source);
113
114             m_blitProgram->addShader(fragmentShader);
115         }
116         m_blitProgram->bindAttributeLocation("vertexCoordsArray", QT_VERTEX_COORDS_ATTR);
117         m_blitProgram->bindAttributeLocation("textureCoordArray", QT_TEXTURE_COORDS_ATTR);
118         m_blitProgram->link();
119     }
120
121     mutable int m_maxTextureSize;
122     int m_maxTextureCount;
123
124     QList<TextureInfo> m_textures;
125     QHash<glyph_t, TextureInfo *> m_glyphsTexture;
126     QSet<glyph_t> m_unusedGlyphs;
127
128     QSGAreaAllocator *m_areaAllocator;
129
130     QOpenGLShaderProgram *m_blitProgram;
131     GLfloat m_blitVertexCoordinateArray[8];
132     GLfloat m_blitTextureCoordinateArray[8];
133
134     QOpenGLSharedResourceGuard *m_fboGuard;
135 };
136
137 QT_END_NAMESPACE
138
139 #endif // QSGDEFAULTDISTANCEFIELDGLYPHCACHE_H