blob: 9b0d7c6e6009fbdd333a2c086d63c3d7742c1c94 [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 Guy5b3b3522010-10-27 18:57:51 -070089 ~Caches();
Romain Guyfb8b7632010-08-23 21:05:08 -070090
91 friend class Singleton<Caches>;
92
Romain Guye190aa62010-11-10 19:01:29 -080093 CacheLogger mLogger;
Romain Guy9bca4792010-10-25 18:42:25 -070094
95 GLuint mCurrentBuffer;
Romain Guyfb8b7632010-08-23 21:05:08 -070096
Romain Guy5b3b3522010-10-27 18:57:51 -070097 // Used to render layers
98 TextureVertex* mRegionMesh;
99 GLuint mRegionMeshIndices;
100
Romain Guy57066eb2011-01-12 12:53:32 -0800101 mutable Mutex mGarbageLock;
Romain Guyada830f2011-01-13 12:13:20 -0800102 Vector<Layer*> mLayerGarbage;
Romain Guy57066eb2011-01-12 12:53:32 -0800103
Romain Guyfb8b7632010-08-23 21:05:08 -0700104public:
Romain Guybdf76092011-07-18 15:00:43 -0700105 enum FlushMode {
Romain Guy6d7475d2011-07-27 16:28:21 -0700106 kFlushMode_Layers = 0,
107 kFlushMode_Moderate,
Romain Guybdf76092011-07-18 15:00:43 -0700108 kFlushMode_Full
109 };
110
111 /**
112 * Flush the cache.
113 *
114 * @param mode Indicates how much of the cache should be flushed
115 */
116 void flush(FlushMode mode);
117
Romain Guy5b3b3522010-10-27 18:57:51 -0700118 /**
Romain Guye190aa62010-11-10 19:01:29 -0800119 * Indicates whether the renderer is in debug mode.
120 * This debug mode provides limited information to app developers.
121 */
122 DebugLevel getDebugLevel() const {
123 return mDebugLevel;
124 }
125
126 /**
Romain Guyfe48f652010-11-11 15:36:56 -0800127 * Call this on each frame to ensure that garbage is deleted from
128 * GPU memory.
129 */
130 void clearGarbage();
131
132 /**
Romain Guyada830f2011-01-13 12:13:20 -0800133 * Can be used to delete a layer from a non EGL thread.
Romain Guy57066eb2011-01-12 12:53:32 -0800134 */
Romain Guyada830f2011-01-13 12:13:20 -0800135 void deleteLayerDeferred(Layer* layer);
Romain Guy57066eb2011-01-12 12:53:32 -0800136
137 /**
Romain Guy5b3b3522010-10-27 18:57:51 -0700138 * Binds the VBO used to render simple textured quads.
139 */
Chet Haasedd78cca2010-10-22 18:59:26 -0700140 void bindMeshBuffer();
Romain Guy5b3b3522010-10-27 18:57:51 -0700141
142 /**
143 * Binds the specified VBO if needed.
144 */
Chet Haasedd78cca2010-10-22 18:59:26 -0700145 void bindMeshBuffer(const GLuint buffer);
Romain Guy5b3b3522010-10-27 18:57:51 -0700146
147 /**
148 * Unbinds the VBO used to render simple textured quads.
149 */
Chet Haasedd78cca2010-10-22 18:59:26 -0700150 void unbindMeshBuffer();
Romain Guy03750a02010-10-18 14:06:08 -0700151
Romain Guy5b3b3522010-10-27 18:57:51 -0700152 /**
153 * Returns the mesh used to draw regions. Calling this method will
154 * bind a VBO of type GL_ELEMENT_ARRAY_BUFFER that contains the
155 * indices for the region mesh.
156 */
157 TextureVertex* getRegionMesh();
158
Romain Guyc15008e2010-11-10 11:59:15 -0800159 /**
160 * Displays the memory usage of each cache and the total sum.
161 */
162 void dumpMemoryUsage();
Chet Haase9c1e23b2011-03-24 10:51:31 -0700163 void dumpMemoryUsage(String8& log);
Romain Guyc15008e2010-11-10 11:59:15 -0800164
Romain Guyfb8b7632010-08-23 21:05:08 -0700165 bool blend;
166 GLenum lastSrcMode;
167 GLenum lastDstMode;
168 Program* currentProgram;
169
Romain Guy746b7402010-10-26 16:27:31 -0700170 // VBO to draw with
Romain Guy03750a02010-10-18 14:06:08 -0700171 GLuint meshBuffer;
Romain Guy03750a02010-10-18 14:06:08 -0700172
Romain Guy746b7402010-10-26 16:27:31 -0700173 // GL extensions
174 Extensions extensions;
175
176 // Misc
177 GLint maxTextureSize;
178
Romain Guyfb8b7632010-08-23 21:05:08 -0700179 TextureCache textureCache;
180 LayerCache layerCache;
181 GradientCache gradientCache;
182 ProgramCache programCache;
183 PathCache pathCache;
Romain Guy01d58e42011-01-19 21:54:02 -0800184 RoundRectShapeCache roundRectShapeCache;
185 CircleShapeCache circleShapeCache;
Romain Guyc1cd9ba32011-01-23 14:18:41 -0800186 OvalShapeCache ovalShapeCache;
187 RectShapeCache rectShapeCache;
Romain Guy8b2f5262011-01-23 16:15:02 -0800188 ArcShapeCache arcShapeCache;
Romain Guyfb8b7632010-08-23 21:05:08 -0700189 PatchCache patchCache;
190 TextDropShadowCache dropShadowCache;
Romain Guye2d345e2010-09-24 18:39:22 -0700191 FboCache fboCache;
Romain Guy11fd6542010-10-04 17:10:58 -0700192 GammaFontRenderer fontRenderer;
Chet Haase5c13d892010-10-08 08:37:55 -0700193 ResourceCache resourceCache;
Romain Guy29d89972010-09-22 16:10:57 -0700194
Romain Guye190aa62010-11-10 19:01:29 -0800195private:
196 DebugLevel mDebugLevel;
Romain Guyfb8b7632010-08-23 21:05:08 -0700197}; // class Caches
198
199}; // namespace uirenderer
Romain Guyfb8b7632010-08-23 21:05:08 -0700200}; // namespace android
201
Romain Guy5b3b3522010-10-27 18:57:51 -0700202#endif // ANDROID_HWUI_CACHES_H