blob: 6d27d6e880b89b995a7f3c6e54cd42b18e2e59f1 [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 Guy82bc7a72012-01-03 14:13:39 -0800214 /**
Romain Guy5b3b3522010-10-27 18:57:51 -0700215 * Returns the mesh used to draw regions. Calling this method will
216 * bind a VBO of type GL_ELEMENT_ARRAY_BUFFER that contains the
217 * indices for the region mesh.
218 */
219 TextureVertex* getRegionMesh();
220
Romain Guyc15008e2010-11-10 11:59:15 -0800221 /**
222 * Displays the memory usage of each cache and the total sum.
223 */
224 void dumpMemoryUsage();
Chet Haase9c1e23b2011-03-24 10:51:31 -0700225 void dumpMemoryUsage(String8& log);
Romain Guyc15008e2010-11-10 11:59:15 -0800226
Romain Guyfb8b7632010-08-23 21:05:08 -0700227 bool blend;
228 GLenum lastSrcMode;
229 GLenum lastDstMode;
230 Program* currentProgram;
Romain Guy586cae32012-07-13 15:28:31 -0700231 bool scissorEnabled;
Romain Guyfb8b7632010-08-23 21:05:08 -0700232
Romain Guy746b7402010-10-26 16:27:31 -0700233 // VBO to draw with
Romain Guy03750a02010-10-18 14:06:08 -0700234 GLuint meshBuffer;
Romain Guy03750a02010-10-18 14:06:08 -0700235
Romain Guy746b7402010-10-26 16:27:31 -0700236 // GL extensions
237 Extensions extensions;
238
239 // Misc
240 GLint maxTextureSize;
Romain Guy4ff0cf42012-08-06 14:51:10 -0700241 bool debugLayersUpdates;
Romain Guy746b7402010-10-26 16:27:31 -0700242
Romain Guyfb8b7632010-08-23 21:05:08 -0700243 TextureCache textureCache;
244 LayerCache layerCache;
245 GradientCache gradientCache;
246 ProgramCache programCache;
247 PathCache pathCache;
Romain Guy01d58e42011-01-19 21:54:02 -0800248 RoundRectShapeCache roundRectShapeCache;
249 CircleShapeCache circleShapeCache;
Romain Guyc1cd9ba32011-01-23 14:18:41 -0800250 OvalShapeCache ovalShapeCache;
251 RectShapeCache rectShapeCache;
Romain Guy8b2f5262011-01-23 16:15:02 -0800252 ArcShapeCache arcShapeCache;
Romain Guyfb8b7632010-08-23 21:05:08 -0700253 PatchCache patchCache;
254 TextDropShadowCache dropShadowCache;
Romain Guye2d345e2010-09-24 18:39:22 -0700255 FboCache fboCache;
Chet Haase5c13d892010-10-08 08:37:55 -0700256 ResourceCache resourceCache;
Romain Guy29d89972010-09-22 16:10:57 -0700257
Romain Guyb1d0a4e2012-07-13 18:25:35 -0700258 GammaFontRenderer* fontRenderer;
259
Romain Guy0baaac52012-08-31 20:31:01 -0700260 Dither dither;
261#if STENCIL_BUFFER_SIZE
262 Stencil stencil;
263#endif
264
Romain Guydfa10462012-05-12 16:18:58 -0700265 // Debug methods
Romain Guy13631f32012-01-30 17:41:55 -0800266 PFNGLINSERTEVENTMARKEREXTPROC eventMark;
267 PFNGLPUSHGROUPMARKEREXTPROC startMark;
268 PFNGLPOPGROUPMARKEREXTPROC endMark;
269
Romain Guydfa10462012-05-12 16:18:58 -0700270 PFNGLLABELOBJECTEXTPROC setLabel;
271 PFNGLGETOBJECTLABELEXTPROC getLabel;
272
Romain Guye190aa62010-11-10 19:01:29 -0800273private:
Romain Guyb1d0a4e2012-07-13 18:25:35 -0700274 void initFont();
Romain Guydfa10462012-05-12 16:18:58 -0700275 void initExtensions();
276 void initConstraints();
Romain Guy4ff0cf42012-08-06 14:51:10 -0700277 void initProperties();
Romain Guydfa10462012-05-12 16:18:58 -0700278
279 static void eventMarkNull(GLsizei length, const GLchar* marker) { }
280 static void startMarkNull(GLsizei length, const GLchar* marker) { }
Romain Guy13631f32012-01-30 17:41:55 -0800281 static void endMarkNull() { }
282
Romain Guydfa10462012-05-12 16:18:58 -0700283 static void setLabelNull(GLenum type, uint object, GLsizei length,
284 const char* label) { }
285 static void getLabelNull(GLenum type, uint object, GLsizei bufferSize,
286 GLsizei* length, char* label) {
287 if (length) *length = 0;
288 if (label) *label = '\0';
289 }
290
Romain Guyf3a910b42011-12-12 20:35:21 -0800291 GLuint mCurrentBuffer;
Romain Guy15bc6432011-12-13 13:11:32 -0800292 GLuint mCurrentIndicesBuffer;
Romain Guyf3a910b42011-12-12 20:35:21 -0800293 void* mCurrentPositionPointer;
294 void* mCurrentTexCoordsPointer;
295
Romain Guy15bc6432011-12-13 13:11:32 -0800296 bool mTexCoordsArrayEnabled;
297
Romain Guya1d3c912011-12-13 14:55:06 -0800298 GLuint mTextureUnit;
299
Romain Guy8f85e802011-12-14 19:23:32 -0800300 GLint mScissorX;
301 GLint mScissorY;
302 GLint mScissorWidth;
303 GLint mScissorHeight;
304
Romain Guyf3a910b42011-12-12 20:35:21 -0800305 // Used to render layers
306 TextureVertex* mRegionMesh;
307 GLuint mRegionMeshIndices;
308
309 mutable Mutex mGarbageLock;
310 Vector<Layer*> mLayerGarbage;
Romain Guybb0acdf2012-03-05 13:44:35 -0800311 Vector<DisplayList*> mDisplayListGarbage;
Romain Guyf3a910b42011-12-12 20:35:21 -0800312
Romain Guye190aa62010-11-10 19:01:29 -0800313 DebugLevel mDebugLevel;
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800314 bool mInitialized;
Romain Guyfb8b7632010-08-23 21:05:08 -0700315}; // class Caches
316
317}; // namespace uirenderer
Romain Guyfb8b7632010-08-23 21:05:08 -0700318}; // namespace android
319
Romain Guy5b3b3522010-10-27 18:57:51 -0700320#endif // ANDROID_HWUI_CACHES_H