blob: 48efd1096aa48cf73b69335e3364c21eeb4b590e [file] [log] [blame]
Romain Guyfb8b7632010-08-23 21:05:08 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Romain Guy5b3b3522010-10-27 18:57:51 -070017#ifndef ANDROID_HWUI_CACHES_H
18#define ANDROID_HWUI_CACHES_H
Romain Guyfb8b7632010-08-23 21:05:08 -070019
Romain Guya2341a92010-09-08 18:04:33 -070020#ifndef LOG_TAG
21 #define LOG_TAG "OpenGLRenderer"
22#endif
Romain Guyfb8b7632010-08-23 21:05:08 -070023
24#include <utils/Singleton.h>
25
Romain Guy79537452011-10-12 13:48:51 -070026#include <cutils/compiler.h>
27
Romain Guy746b7402010-10-26 16:27:31 -070028#include "Extensions.h"
Romain Guy03750a02010-10-18 14:06:08 -070029#include "FontRenderer.h"
30#include "GammaFontRenderer.h"
Romain Guyfb8b7632010-08-23 21:05:08 -070031#include "TextureCache.h"
32#include "LayerCache.h"
33#include "GradientCache.h"
34#include "PatchCache.h"
Romain Guyfb8b7632010-08-23 21:05:08 -070035#include "ProgramCache.h"
Romain Guy01d58e42011-01-19 21:54:02 -080036#include "ShapeCache.h"
Romain Guyff26a0c2011-01-20 11:35:46 -080037#include "PathCache.h"
Romain Guyfb8b7632010-08-23 21:05:08 -070038#include "TextDropShadowCache.h"
Romain Guye2d345e2010-09-24 18:39:22 -070039#include "FboCache.h"
Chet Haase5c13d892010-10-08 08:37:55 -070040#include "ResourceCache.h"
Romain Guy0baaac52012-08-31 20:31:01 -070041#include "Stencil.h"
Romain Guy211efea2012-07-31 21:16:07 -070042#include "Dither.h"
Romain Guyfb8b7632010-08-23 21:05:08 -070043
44namespace android {
45namespace uirenderer {
46
Romain Guy03750a02010-10-18 14:06:08 -070047///////////////////////////////////////////////////////////////////////////////
48// Globals
49///////////////////////////////////////////////////////////////////////////////
50
51#define REQUIRED_TEXTURE_UNITS_COUNT 3
52
Romain Guy5b3b3522010-10-27 18:57:51 -070053#define REGION_MESH_QUAD_COUNT 512
54
Romain Guy03750a02010-10-18 14:06:08 -070055// Generates simple and textured vertices
56#define FV(x, y, u, v) { { x, y }, { u, v } }
57
58// This array is never used directly but used as a memcpy source in the
59// OpenGLRenderer constructor
60static const TextureVertex gMeshVertices[] = {
61 FV(0.0f, 0.0f, 0.0f, 0.0f),
62 FV(1.0f, 0.0f, 1.0f, 0.0f),
63 FV(0.0f, 1.0f, 0.0f, 1.0f),
64 FV(1.0f, 1.0f, 1.0f, 1.0f)
65};
66static const GLsizei gMeshStride = sizeof(TextureVertex);
Chet Haase5b0200b2011-04-13 17:58:08 -070067static const GLsizei gVertexStride = sizeof(Vertex);
68static const GLsizei gAlphaVertexStride = sizeof(AlphaVertex);
Chet Haase99585ad2011-05-02 15:00:16 -070069static const GLsizei gAAVertexStride = sizeof(AAVertex);
Romain Guy03750a02010-10-18 14:06:08 -070070static const GLsizei gMeshTextureOffset = 2 * sizeof(float);
Chris Craik6ebdc112012-08-31 18:24:33 -070071static const GLsizei gVertexAlphaOffset = 2 * sizeof(float);
Chet Haase99585ad2011-05-02 15:00:16 -070072static const GLsizei gVertexAAWidthOffset = 2 * sizeof(float);
73static const GLsizei gVertexAALengthOffset = 3 * sizeof(float);
Romain Guy03750a02010-10-18 14:06:08 -070074static const GLsizei gMeshCount = 4;
75
Romain Guya1d3c912011-12-13 14:55:06 -080076static const GLenum gTextureUnits[] = {
77 GL_TEXTURE0,
78 GL_TEXTURE1,
79 GL_TEXTURE2
80};
81
Romain Guy03750a02010-10-18 14:06:08 -070082///////////////////////////////////////////////////////////////////////////////
83// Debug
84///////////////////////////////////////////////////////////////////////////////
85
Romain Guyfb8b7632010-08-23 21:05:08 -070086struct CacheLogger {
87 CacheLogger() {
Romain Guyd6b2a002011-06-17 17:45:59 -070088 INIT_LOGD("Creating OpenGL renderer caches");
Romain Guyfb8b7632010-08-23 21:05:08 -070089 }
90}; // struct CacheLogger
91
Romain Guy03750a02010-10-18 14:06:08 -070092///////////////////////////////////////////////////////////////////////////////
93// Caches
94///////////////////////////////////////////////////////////////////////////////
95
Romain Guybb0acdf2012-03-05 13:44:35 -080096class DisplayList;
97
Romain Guy79537452011-10-12 13:48:51 -070098class ANDROID_API Caches: public Singleton<Caches> {
Chet Haasedd78cca2010-10-22 18:59:26 -070099 Caches();
Romain Guyfb8b7632010-08-23 21:05:08 -0700100
101 friend class Singleton<Caches>;
102
Romain Guye190aa62010-11-10 19:01:29 -0800103 CacheLogger mLogger;
Romain Guy9bca4792010-10-25 18:42:25 -0700104
Romain Guyfb8b7632010-08-23 21:05:08 -0700105public:
Romain Guybdf76092011-07-18 15:00:43 -0700106 enum FlushMode {
Romain Guy6d7475d2011-07-27 16:28:21 -0700107 kFlushMode_Layers = 0,
108 kFlushMode_Moderate,
Romain Guybdf76092011-07-18 15:00:43 -0700109 kFlushMode_Full
110 };
111
112 /**
Romain Guydfa10462012-05-12 16:18:58 -0700113 * Initialize caches.
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800114 */
115 void init();
116
117 /**
Romain Guybdf76092011-07-18 15:00:43 -0700118 * Flush the cache.
119 *
120 * @param mode Indicates how much of the cache should be flushed
121 */
122 void flush(FlushMode mode);
123
Romain Guy5b3b3522010-10-27 18:57:51 -0700124 /**
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800125 * Destroys all resources associated with this cache. This should
126 * be called after a flush(kFlushMode_Full).
127 */
128 void terminate();
129
130 /**
Romain Guye190aa62010-11-10 19:01:29 -0800131 * Indicates whether the renderer is in debug mode.
132 * This debug mode provides limited information to app developers.
133 */
134 DebugLevel getDebugLevel() const {
135 return mDebugLevel;
136 }
137
138 /**
Romain Guyfe48f652010-11-11 15:36:56 -0800139 * Call this on each frame to ensure that garbage is deleted from
140 * GPU memory.
141 */
142 void clearGarbage();
143
144 /**
Romain Guyada830f2011-01-13 12:13:20 -0800145 * Can be used to delete a layer from a non EGL thread.
Romain Guy57066eb2011-01-12 12:53:32 -0800146 */
Romain Guyada830f2011-01-13 12:13:20 -0800147 void deleteLayerDeferred(Layer* layer);
Romain Guy57066eb2011-01-12 12:53:32 -0800148
Romain Guybb0acdf2012-03-05 13:44:35 -0800149 /*
150 * Can be used to delete a display list from a non EGL thread.
151 */
152 void deleteDisplayListDeferred(DisplayList* layer);
153
Romain Guy57066eb2011-01-12 12:53:32 -0800154 /**
Romain Guy5b3b3522010-10-27 18:57:51 -0700155 * Binds the VBO used to render simple textured quads.
156 */
Romain Guyf3a910b42011-12-12 20:35:21 -0800157 bool bindMeshBuffer();
Romain Guy5b3b3522010-10-27 18:57:51 -0700158
159 /**
160 * Binds the specified VBO if needed.
161 */
Romain Guyf3a910b42011-12-12 20:35:21 -0800162 bool bindMeshBuffer(const GLuint buffer);
Romain Guy5b3b3522010-10-27 18:57:51 -0700163
164 /**
165 * Unbinds the VBO used to render simple textured quads.
166 */
Romain Guyf3a910b42011-12-12 20:35:21 -0800167 bool unbindMeshBuffer();
168
Romain Guy15bc6432011-12-13 13:11:32 -0800169 bool bindIndicesBuffer(const GLuint buffer);
170 bool unbindIndicesBuffer();
171
Romain Guyf3a910b42011-12-12 20:35:21 -0800172 /**
173 * Binds an attrib to the specified float vertex pointer.
174 * Assumes a stride of gMeshStride and a size of 2.
175 */
176 void bindPositionVertexPointer(bool force, GLuint slot, GLvoid* vertices,
177 GLsizei stride = gMeshStride);
178
179 /**
180 * Binds an attrib to the specified float vertex pointer.
181 * Assumes a stride of gMeshStride and a size of 2.
182 */
183 void bindTexCoordsVertexPointer(bool force, GLuint slot, GLvoid* vertices);
184
185 /**
186 * Resets the vertex pointers.
187 */
188 void resetVertexPointers();
189 void resetTexCoordsVertexPointer();
Romain Guy03750a02010-10-18 14:06:08 -0700190
Romain Guy15bc6432011-12-13 13:11:32 -0800191 void enableTexCoordsVertexArray();
192 void disbaleTexCoordsVertexArray();
193
Romain Guy5b3b3522010-10-27 18:57:51 -0700194 /**
Romain Guya1d3c912011-12-13 14:55:06 -0800195 * Activate the specified texture unit. The texture unit must
196 * be specified using an integer number (0 for GL_TEXTURE0 etc.)
197 */
198 void activeTexture(GLuint textureUnit);
199
200 /**
Romain Guy8f85e802011-12-14 19:23:32 -0800201 * Sets the scissor for the current surface.
202 */
Romain Guy8a4ac612012-07-17 17:32:48 -0700203 bool setScissor(GLint x, GLint y, GLint width, GLint height);
Romain Guy8f85e802011-12-14 19:23:32 -0800204
205 /**
Romain Guy82bc7a72012-01-03 14:13:39 -0800206 * Resets the scissor state.
207 */
208 void resetScissor();
209
Romain Guy8a4ac612012-07-17 17:32:48 -0700210 bool enableScissor();
211 bool disableScissor();
Romain Guy586cae32012-07-13 15:28:31 -0700212 void setScissorEnabled(bool enabled);
213
Romain Guy85ef80d2012-09-13 20:26:50 -0700214 void startTiling(GLuint x, GLuint y, GLuint width, GLuint height, bool opaque);
215 void endTiling();
216
Romain Guy82bc7a72012-01-03 14:13:39 -0800217 /**
Romain Guy5b3b3522010-10-27 18:57:51 -0700218 * Returns the mesh used to draw regions. Calling this method will
219 * bind a VBO of type GL_ELEMENT_ARRAY_BUFFER that contains the
220 * indices for the region mesh.
221 */
222 TextureVertex* getRegionMesh();
223
Romain Guyc15008e2010-11-10 11:59:15 -0800224 /**
225 * Displays the memory usage of each cache and the total sum.
226 */
227 void dumpMemoryUsage();
Chet Haase9c1e23b2011-03-24 10:51:31 -0700228 void dumpMemoryUsage(String8& log);
Romain Guyc15008e2010-11-10 11:59:15 -0800229
Romain Guyfb8b7632010-08-23 21:05:08 -0700230 bool blend;
231 GLenum lastSrcMode;
232 GLenum lastDstMode;
233 Program* currentProgram;
Romain Guy586cae32012-07-13 15:28:31 -0700234 bool scissorEnabled;
Romain Guyfb8b7632010-08-23 21:05:08 -0700235
Romain Guy746b7402010-10-26 16:27:31 -0700236 // VBO to draw with
Romain Guy03750a02010-10-18 14:06:08 -0700237 GLuint meshBuffer;
Romain Guy03750a02010-10-18 14:06:08 -0700238
Romain Guy746b7402010-10-26 16:27:31 -0700239 // GL extensions
240 Extensions extensions;
241
242 // Misc
243 GLint maxTextureSize;
Romain Guy4ff0cf42012-08-06 14:51:10 -0700244 bool debugLayersUpdates;
Romain Guy7c450aa2012-09-21 19:15:00 -0700245 bool debugOverdraw;
Romain Guy746b7402010-10-26 16:27:31 -0700246
Romain Guyfb8b7632010-08-23 21:05:08 -0700247 TextureCache textureCache;
248 LayerCache layerCache;
249 GradientCache gradientCache;
250 ProgramCache programCache;
251 PathCache pathCache;
Romain Guy01d58e42011-01-19 21:54:02 -0800252 RoundRectShapeCache roundRectShapeCache;
253 CircleShapeCache circleShapeCache;
Romain Guyc1cd9ba32011-01-23 14:18:41 -0800254 OvalShapeCache ovalShapeCache;
255 RectShapeCache rectShapeCache;
Romain Guy8b2f5262011-01-23 16:15:02 -0800256 ArcShapeCache arcShapeCache;
Romain Guyfb8b7632010-08-23 21:05:08 -0700257 PatchCache patchCache;
258 TextDropShadowCache dropShadowCache;
Romain Guye2d345e2010-09-24 18:39:22 -0700259 FboCache fboCache;
Chet Haase5c13d892010-10-08 08:37:55 -0700260 ResourceCache resourceCache;
Romain Guy29d89972010-09-22 16:10:57 -0700261
Romain Guyb1d0a4e2012-07-13 18:25:35 -0700262 GammaFontRenderer* fontRenderer;
263
Romain Guy0baaac52012-08-31 20:31:01 -0700264 Dither dither;
265#if STENCIL_BUFFER_SIZE
266 Stencil stencil;
267#endif
268
Romain Guydfa10462012-05-12 16:18:58 -0700269 // Debug methods
Romain Guy13631f32012-01-30 17:41:55 -0800270 PFNGLINSERTEVENTMARKEREXTPROC eventMark;
271 PFNGLPUSHGROUPMARKEREXTPROC startMark;
272 PFNGLPOPGROUPMARKEREXTPROC endMark;
273
Romain Guydfa10462012-05-12 16:18:58 -0700274 PFNGLLABELOBJECTEXTPROC setLabel;
275 PFNGLGETOBJECTLABELEXTPROC getLabel;
276
Romain Guye190aa62010-11-10 19:01:29 -0800277private:
Romain Guyb1d0a4e2012-07-13 18:25:35 -0700278 void initFont();
Romain Guydfa10462012-05-12 16:18:58 -0700279 void initExtensions();
280 void initConstraints();
Romain Guy4ff0cf42012-08-06 14:51:10 -0700281 void initProperties();
Romain Guydfa10462012-05-12 16:18:58 -0700282
283 static void eventMarkNull(GLsizei length, const GLchar* marker) { }
284 static void startMarkNull(GLsizei length, const GLchar* marker) { }
Romain Guy13631f32012-01-30 17:41:55 -0800285 static void endMarkNull() { }
286
Romain Guydfa10462012-05-12 16:18:58 -0700287 static void setLabelNull(GLenum type, uint object, GLsizei length,
288 const char* label) { }
289 static void getLabelNull(GLenum type, uint object, GLsizei bufferSize,
290 GLsizei* length, char* label) {
291 if (length) *length = 0;
292 if (label) *label = '\0';
293 }
294
Romain Guyf3a910b42011-12-12 20:35:21 -0800295 GLuint mCurrentBuffer;
Romain Guy15bc6432011-12-13 13:11:32 -0800296 GLuint mCurrentIndicesBuffer;
Romain Guyf3a910b42011-12-12 20:35:21 -0800297 void* mCurrentPositionPointer;
298 void* mCurrentTexCoordsPointer;
299
Romain Guy15bc6432011-12-13 13:11:32 -0800300 bool mTexCoordsArrayEnabled;
301
Romain Guya1d3c912011-12-13 14:55:06 -0800302 GLuint mTextureUnit;
303
Romain Guy8f85e802011-12-14 19:23:32 -0800304 GLint mScissorX;
305 GLint mScissorY;
306 GLint mScissorWidth;
307 GLint mScissorHeight;
308
Romain Guyf3a910b42011-12-12 20:35:21 -0800309 // Used to render layers
310 TextureVertex* mRegionMesh;
311 GLuint mRegionMeshIndices;
312
313 mutable Mutex mGarbageLock;
314 Vector<Layer*> mLayerGarbage;
Romain Guybb0acdf2012-03-05 13:44:35 -0800315 Vector<DisplayList*> mDisplayListGarbage;
Romain Guyf3a910b42011-12-12 20:35:21 -0800316
Romain Guye190aa62010-11-10 19:01:29 -0800317 DebugLevel mDebugLevel;
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800318 bool mInitialized;
Romain Guyfb8b7632010-08-23 21:05:08 -0700319}; // class Caches
320
321}; // namespace uirenderer
Romain Guyfb8b7632010-08-23 21:05:08 -0700322}; // namespace android
323
Romain Guy5b3b3522010-10-27 18:57:51 -0700324#endif // ANDROID_HWUI_CACHES_H