blob: 5e58a9e6e7b6a8ba6958c5f161921eac9e960349 [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 Guyfb8b7632010-08-23 21:05:08 -070041
42namespace android {
43namespace uirenderer {
44
Romain Guy03750a02010-10-18 14:06:08 -070045///////////////////////////////////////////////////////////////////////////////
46// Globals
47///////////////////////////////////////////////////////////////////////////////
48
49#define REQUIRED_TEXTURE_UNITS_COUNT 3
50
Romain Guy5b3b3522010-10-27 18:57:51 -070051#define REGION_MESH_QUAD_COUNT 512
52
Romain Guy03750a02010-10-18 14:06:08 -070053// Generates simple and textured vertices
54#define FV(x, y, u, v) { { x, y }, { u, v } }
55
56// This array is never used directly but used as a memcpy source in the
57// OpenGLRenderer constructor
58static const TextureVertex gMeshVertices[] = {
59 FV(0.0f, 0.0f, 0.0f, 0.0f),
60 FV(1.0f, 0.0f, 1.0f, 0.0f),
61 FV(0.0f, 1.0f, 0.0f, 1.0f),
62 FV(1.0f, 1.0f, 1.0f, 1.0f)
63};
64static const GLsizei gMeshStride = sizeof(TextureVertex);
Chet Haase5b0200b2011-04-13 17:58:08 -070065static const GLsizei gVertexStride = sizeof(Vertex);
66static const GLsizei gAlphaVertexStride = sizeof(AlphaVertex);
Chet Haase99585ad2011-05-02 15:00:16 -070067static const GLsizei gAAVertexStride = sizeof(AAVertex);
Romain Guy03750a02010-10-18 14:06:08 -070068static const GLsizei gMeshTextureOffset = 2 * sizeof(float);
Chet Haase99585ad2011-05-02 15:00:16 -070069static const GLsizei gVertexAAWidthOffset = 2 * sizeof(float);
70static const GLsizei gVertexAALengthOffset = 3 * sizeof(float);
Romain Guy03750a02010-10-18 14:06:08 -070071static const GLsizei gMeshCount = 4;
72
73///////////////////////////////////////////////////////////////////////////////
74// Debug
75///////////////////////////////////////////////////////////////////////////////
76
Romain Guyfb8b7632010-08-23 21:05:08 -070077struct CacheLogger {
78 CacheLogger() {
Romain Guyd6b2a002011-06-17 17:45:59 -070079 INIT_LOGD("Creating OpenGL renderer caches");
Romain Guyfb8b7632010-08-23 21:05:08 -070080 }
81}; // struct CacheLogger
82
Romain Guy03750a02010-10-18 14:06:08 -070083///////////////////////////////////////////////////////////////////////////////
84// Caches
85///////////////////////////////////////////////////////////////////////////////
86
Romain Guy79537452011-10-12 13:48:51 -070087class ANDROID_API Caches: public Singleton<Caches> {
Chet Haasedd78cca2010-10-22 18:59:26 -070088 Caches();
Romain Guyfb8b7632010-08-23 21:05:08 -070089
90 friend class Singleton<Caches>;
91
Romain Guye190aa62010-11-10 19:01:29 -080092 CacheLogger mLogger;
Romain Guy9bca4792010-10-25 18:42:25 -070093
94 GLuint mCurrentBuffer;
Romain Guyfb8b7632010-08-23 21:05:08 -070095
Romain Guy5b3b3522010-10-27 18:57:51 -070096 // Used to render layers
97 TextureVertex* mRegionMesh;
98 GLuint mRegionMeshIndices;
99
Romain Guy57066eb2011-01-12 12:53:32 -0800100 mutable Mutex mGarbageLock;
Romain Guyada830f2011-01-13 12:13:20 -0800101 Vector<Layer*> mLayerGarbage;
Romain Guy57066eb2011-01-12 12:53:32 -0800102
Romain Guyfb8b7632010-08-23 21:05:08 -0700103public:
Romain Guybdf76092011-07-18 15:00:43 -0700104 enum FlushMode {
Romain Guy6d7475d2011-07-27 16:28:21 -0700105 kFlushMode_Layers = 0,
106 kFlushMode_Moderate,
Romain Guybdf76092011-07-18 15:00:43 -0700107 kFlushMode_Full
108 };
109
110 /**
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800111 * Initializes the cache.
112 */
113 void init();
114
115 /**
Romain Guybdf76092011-07-18 15:00:43 -0700116 * Flush the cache.
117 *
118 * @param mode Indicates how much of the cache should be flushed
119 */
120 void flush(FlushMode mode);
121
Romain Guy5b3b3522010-10-27 18:57:51 -0700122 /**
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800123 * Destroys all resources associated with this cache. This should
124 * be called after a flush(kFlushMode_Full).
125 */
126 void terminate();
127
128 /**
Romain Guye190aa62010-11-10 19:01:29 -0800129 * Indicates whether the renderer is in debug mode.
130 * This debug mode provides limited information to app developers.
131 */
132 DebugLevel getDebugLevel() const {
133 return mDebugLevel;
134 }
135
136 /**
Romain Guyfe48f652010-11-11 15:36:56 -0800137 * Call this on each frame to ensure that garbage is deleted from
138 * GPU memory.
139 */
140 void clearGarbage();
141
142 /**
Romain Guyada830f2011-01-13 12:13:20 -0800143 * Can be used to delete a layer from a non EGL thread.
Romain Guy57066eb2011-01-12 12:53:32 -0800144 */
Romain Guyada830f2011-01-13 12:13:20 -0800145 void deleteLayerDeferred(Layer* layer);
Romain Guy57066eb2011-01-12 12:53:32 -0800146
147 /**
Romain Guy5b3b3522010-10-27 18:57:51 -0700148 * Binds the VBO used to render simple textured quads.
149 */
Chet Haasedd78cca2010-10-22 18:59:26 -0700150 void bindMeshBuffer();
Romain Guy5b3b3522010-10-27 18:57:51 -0700151
152 /**
153 * Binds the specified VBO if needed.
154 */
Chet Haasedd78cca2010-10-22 18:59:26 -0700155 void bindMeshBuffer(const GLuint buffer);
Romain Guy5b3b3522010-10-27 18:57:51 -0700156
157 /**
158 * Unbinds the VBO used to render simple textured quads.
159 */
Chet Haasedd78cca2010-10-22 18:59:26 -0700160 void unbindMeshBuffer();
Romain Guy03750a02010-10-18 14:06:08 -0700161
Romain Guy5b3b3522010-10-27 18:57:51 -0700162 /**
163 * Returns the mesh used to draw regions. Calling this method will
164 * bind a VBO of type GL_ELEMENT_ARRAY_BUFFER that contains the
165 * indices for the region mesh.
166 */
167 TextureVertex* getRegionMesh();
168
Romain Guyc15008e2010-11-10 11:59:15 -0800169 /**
170 * Displays the memory usage of each cache and the total sum.
171 */
172 void dumpMemoryUsage();
Chet Haase9c1e23b2011-03-24 10:51:31 -0700173 void dumpMemoryUsage(String8& log);
Romain Guyc15008e2010-11-10 11:59:15 -0800174
Romain Guyfb8b7632010-08-23 21:05:08 -0700175 bool blend;
176 GLenum lastSrcMode;
177 GLenum lastDstMode;
178 Program* currentProgram;
179
Romain Guy746b7402010-10-26 16:27:31 -0700180 // VBO to draw with
Romain Guy03750a02010-10-18 14:06:08 -0700181 GLuint meshBuffer;
Romain Guy03750a02010-10-18 14:06:08 -0700182
Romain Guy746b7402010-10-26 16:27:31 -0700183 // GL extensions
184 Extensions extensions;
185
186 // Misc
187 GLint maxTextureSize;
188
Romain Guyfb8b7632010-08-23 21:05:08 -0700189 TextureCache textureCache;
190 LayerCache layerCache;
191 GradientCache gradientCache;
192 ProgramCache programCache;
193 PathCache pathCache;
Romain Guy01d58e42011-01-19 21:54:02 -0800194 RoundRectShapeCache roundRectShapeCache;
195 CircleShapeCache circleShapeCache;
Romain Guyc1cd9ba32011-01-23 14:18:41 -0800196 OvalShapeCache ovalShapeCache;
197 RectShapeCache rectShapeCache;
Romain Guy8b2f5262011-01-23 16:15:02 -0800198 ArcShapeCache arcShapeCache;
Romain Guyfb8b7632010-08-23 21:05:08 -0700199 PatchCache patchCache;
200 TextDropShadowCache dropShadowCache;
Romain Guye2d345e2010-09-24 18:39:22 -0700201 FboCache fboCache;
Romain Guy11fd6542010-10-04 17:10:58 -0700202 GammaFontRenderer fontRenderer;
Chet Haase5c13d892010-10-08 08:37:55 -0700203 ResourceCache resourceCache;
Romain Guy29d89972010-09-22 16:10:57 -0700204
Romain Guye190aa62010-11-10 19:01:29 -0800205private:
206 DebugLevel mDebugLevel;
Romain Guy8ff6b9e2011-11-09 20:10:18 -0800207 bool mInitialized;
Romain Guyfb8b7632010-08-23 21:05:08 -0700208}; // class Caches
209
210}; // namespace uirenderer
Romain Guyfb8b7632010-08-23 21:05:08 -0700211}; // namespace android
212
Romain Guy5b3b3522010-10-27 18:57:51 -0700213#endif // ANDROID_HWUI_CACHES_H