blob: ead5b920c1dc4ac22918f9e4fa90695fb982d772 [file] [log] [blame]
Romain Guyac670c02010-07-27 17:39:27 -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_PROGRAM_CACHE_H
18#define ANDROID_HWUI_PROGRAM_CACHE_H
Romain Guyac670c02010-07-27 17:39:27 -070019
20#include <utils/KeyedVector.h>
21#include <utils/Log.h>
Romain Guy06f96e22010-07-30 19:18:16 -070022#include <utils/String8.h>
Romain Guyac670c02010-07-27 17:39:27 -070023
Romain Guy889f8d12010-07-29 14:37:42 -070024#include <GLES2/gl2.h>
25
Romain Guyac670c02010-07-27 17:39:27 -070026#include <SkXfermode.h>
27
Romain Guyc15008e2010-11-10 11:59:15 -080028#include "Debug.h"
Romain Guyac670c02010-07-27 17:39:27 -070029#include "Program.h"
30
31namespace android {
32namespace uirenderer {
33
34///////////////////////////////////////////////////////////////////////////////
35// Defines
36///////////////////////////////////////////////////////////////////////////////
37
38// Debug
Romain Guyc15008e2010-11-10 11:59:15 -080039#if DEBUG_PROGRAMS
Romain Guyac670c02010-07-27 17:39:27 -070040 #define PROGRAM_LOGD(...) LOGD(__VA_ARGS__)
41#else
42 #define PROGRAM_LOGD(...)
43#endif
44
Romain Guy707b2f72010-10-11 16:34:59 -070045// TODO: This should be set in properties
Romain Guydbc26d22010-10-11 17:58:29 -070046#define PANEL_BIT_DEPTH 20
Romain Guy707b2f72010-10-11 16:34:59 -070047#define COLOR_COMPONENT_THRESHOLD (1.0f - (0.5f / PANEL_BIT_DEPTH))
48#define COLOR_COMPONENT_INV_THRESHOLD (0.5f / PANEL_BIT_DEPTH)
49
Romain Guyac670c02010-07-27 17:39:27 -070050#define PROGRAM_KEY_TEXTURE 0x1
51#define PROGRAM_KEY_A8_TEXTURE 0x2
52#define PROGRAM_KEY_BITMAP 0x4
53#define PROGRAM_KEY_GRADIENT 0x8
54#define PROGRAM_KEY_BITMAP_FIRST 0x10
55#define PROGRAM_KEY_COLOR_MATRIX 0x20
56#define PROGRAM_KEY_COLOR_LIGHTING 0x40
57#define PROGRAM_KEY_COLOR_BLEND 0x80
Romain Guy889f8d12010-07-29 14:37:42 -070058#define PROGRAM_KEY_BITMAP_NPOT 0x100
Romain Guyf607bdc2010-09-10 19:20:06 -070059#define PROGRAM_KEY_SWAP_SRC_DST 0x2000
Romain Guy889f8d12010-07-29 14:37:42 -070060
61#define PROGRAM_KEY_BITMAP_WRAPS_MASK 0x600
62#define PROGRAM_KEY_BITMAP_WRAPT_MASK 0x1800
Romain Guyac670c02010-07-27 17:39:27 -070063
Romain Guy48daa542010-08-10 19:21:34 -070064// Encode the xfermodes on 6 bits
65#define PROGRAM_MAX_XFERMODE 0x1f
66#define PROGRAM_XFERMODE_SHADER_SHIFT 26
Romain Guyac670c02010-07-27 17:39:27 -070067#define PROGRAM_XFERMODE_COLOR_OP_SHIFT 20
Romain Guya5aed0d2010-09-09 14:42:43 -070068#define PROGRAM_XFERMODE_FRAMEBUFFER_SHIFT 14
Romain Guyac670c02010-07-27 17:39:27 -070069
Romain Guy889f8d12010-07-29 14:37:42 -070070#define PROGRAM_BITMAP_WRAPS_SHIFT 9
71#define PROGRAM_BITMAP_WRAPT_SHIFT 11
72
Romain Guyee916f12010-09-20 17:53:08 -070073#define PROGRAM_GRADIENT_TYPE_SHIFT 33
Romain Guy707b2f72010-10-11 16:34:59 -070074#define PROGRAM_MODULATE 35
Romain Guyee916f12010-09-20 17:53:08 -070075
Romain Guyac670c02010-07-27 17:39:27 -070076///////////////////////////////////////////////////////////////////////////////
77// Types
78///////////////////////////////////////////////////////////////////////////////
79
Romain Guyee916f12010-09-20 17:53:08 -070080typedef uint64_t programid;
Romain Guyac670c02010-07-27 17:39:27 -070081
82///////////////////////////////////////////////////////////////////////////////
83// Cache
84///////////////////////////////////////////////////////////////////////////////
85
86/**
87 * Describe the features required for a given program. The features
88 * determine the generation of both the vertex and fragment shaders.
89 * A ProgramDescription must be used in conjunction with a ProgramCache.
90 */
91struct ProgramDescription {
92 enum ColorModifier {
93 kColorNone,
94 kColorMatrix,
95 kColorLighting,
96 kColorBlend
97 };
98
Romain Guyee916f12010-09-20 17:53:08 -070099 enum Gradient {
100 kGradientLinear,
101 kGradientCircular,
102 kGradientSweep
103 };
104
Romain Guy70ca14e2010-12-13 18:24:33 -0800105 ProgramDescription() {
106 reset();
Romain Guyac670c02010-07-27 17:39:27 -0700107 }
108
109 // Texturing
110 bool hasTexture;
111 bool hasAlpha8Texture;
112
Romain Guy707b2f72010-10-11 16:34:59 -0700113 // Modulate, this should only be set when setColor() return true
114 bool modulate;
115
Romain Guyac670c02010-07-27 17:39:27 -0700116 // Shaders
117 bool hasBitmap;
Romain Guy889f8d12010-07-29 14:37:42 -0700118 bool isBitmapNpot;
Romain Guyee916f12010-09-20 17:53:08 -0700119
Romain Guyac670c02010-07-27 17:39:27 -0700120 bool hasGradient;
Romain Guyee916f12010-09-20 17:53:08 -0700121 Gradient gradientType;
122
Romain Guyac670c02010-07-27 17:39:27 -0700123 SkXfermode::Mode shadersMode;
Romain Guyee916f12010-09-20 17:53:08 -0700124
Romain Guyac670c02010-07-27 17:39:27 -0700125 bool isBitmapFirst;
Romain Guy889f8d12010-07-29 14:37:42 -0700126 GLenum bitmapWrapS;
127 GLenum bitmapWrapT;
Romain Guyac670c02010-07-27 17:39:27 -0700128
129 // Color operations
Romain Guy4afdf662010-10-13 21:31:28 -0700130 ColorModifier colorOp;
Romain Guyac670c02010-07-27 17:39:27 -0700131 SkXfermode::Mode colorMode;
132
Romain Guya5aed0d2010-09-09 14:42:43 -0700133 // Framebuffer blending (requires Extensions.hasFramebufferFetch())
134 // Ignored for all values < SkXfermode::kPlus_Mode
135 SkXfermode::Mode framebufferMode;
Romain Guyf607bdc2010-09-10 19:20:06 -0700136 bool swapSrcDst;
Romain Guya5aed0d2010-09-09 14:42:43 -0700137
Romain Guy707b2f72010-10-11 16:34:59 -0700138 /**
Romain Guy70ca14e2010-12-13 18:24:33 -0800139 * Resets this description. All fields are reset back to the default
140 * values they hold after building a new instance.
141 */
142 void reset() {
143 hasTexture = false;
144 hasAlpha8Texture = false;
145
146 modulate = false;
147
148 hasBitmap = false;
149 isBitmapNpot = false;
150
151 hasGradient = false;
152 gradientType = kGradientLinear;
153
154 shadersMode = SkXfermode::kClear_Mode;
155
156 isBitmapFirst = false;
157 bitmapWrapS = GL_CLAMP_TO_EDGE;
158 bitmapWrapT = GL_CLAMP_TO_EDGE;
159
160 colorOp = kColorNone;
161 colorMode = SkXfermode::kClear_Mode;
162
163 framebufferMode = SkXfermode::kClear_Mode;
164 swapSrcDst = false;
165 }
166
167 /**
Romain Guy707b2f72010-10-11 16:34:59 -0700168 * Indicates, for a given color, whether color modulation is required in
169 * the fragment shader. When this method returns true, the program should
170 * be provided with a modulation color.
171 */
172 bool setColor(const float r, const float g, const float b, const float a) {
173 modulate = a < COLOR_COMPONENT_THRESHOLD || r < COLOR_COMPONENT_THRESHOLD ||
174 g < COLOR_COMPONENT_THRESHOLD || b < COLOR_COMPONENT_THRESHOLD;
175 return modulate;
Romain Guy889f8d12010-07-29 14:37:42 -0700176 }
177
Romain Guy707b2f72010-10-11 16:34:59 -0700178 /**
179 * Indicates, for a given color, whether color modulation is required in
180 * the fragment shader. When this method returns true, the program should
181 * be provided with a modulation color.
182 */
183 bool setAlpha8Color(const float r, const float g, const float b, const float a) {
184 modulate = a < COLOR_COMPONENT_THRESHOLD || r > COLOR_COMPONENT_INV_THRESHOLD ||
185 g > COLOR_COMPONENT_INV_THRESHOLD || b > COLOR_COMPONENT_INV_THRESHOLD;
186 return modulate;
187 }
188
189 /**
190 * Computes the unique key identifying this program.
191 */
Romain Guyac670c02010-07-27 17:39:27 -0700192 programid key() const {
193 programid key = 0;
194 if (hasTexture) key |= PROGRAM_KEY_TEXTURE;
195 if (hasAlpha8Texture) key |= PROGRAM_KEY_A8_TEXTURE;
Romain Guy889f8d12010-07-29 14:37:42 -0700196 if (hasBitmap) {
197 key |= PROGRAM_KEY_BITMAP;
198 if (isBitmapNpot) {
199 key |= PROGRAM_KEY_BITMAP_NPOT;
200 key |= getEnumForWrap(bitmapWrapS) << PROGRAM_BITMAP_WRAPS_SHIFT;
201 key |= getEnumForWrap(bitmapWrapT) << PROGRAM_BITMAP_WRAPT_SHIFT;
202 }
203 }
Romain Guyac670c02010-07-27 17:39:27 -0700204 if (hasGradient) key |= PROGRAM_KEY_GRADIENT;
Romain Guyee916f12010-09-20 17:53:08 -0700205 key |= programid(gradientType) << PROGRAM_GRADIENT_TYPE_SHIFT;
206 if (isBitmapFirst) key |= PROGRAM_KEY_BITMAP_FIRST;
Romain Guyac670c02010-07-27 17:39:27 -0700207 if (hasBitmap && hasGradient) {
208 key |= (shadersMode & PROGRAM_MAX_XFERMODE) << PROGRAM_XFERMODE_SHADER_SHIFT;
209 }
210 switch (colorOp) {
211 case kColorMatrix:
212 key |= PROGRAM_KEY_COLOR_MATRIX;
213 break;
214 case kColorLighting:
215 key |= PROGRAM_KEY_COLOR_LIGHTING;
216 break;
217 case kColorBlend:
218 key |= PROGRAM_KEY_COLOR_BLEND;
219 key |= (colorMode & PROGRAM_MAX_XFERMODE) << PROGRAM_XFERMODE_COLOR_OP_SHIFT;
220 break;
221 case kColorNone:
222 break;
223 }
Romain Guya5aed0d2010-09-09 14:42:43 -0700224 key |= (framebufferMode & PROGRAM_MAX_XFERMODE) << PROGRAM_XFERMODE_FRAMEBUFFER_SHIFT;
Romain Guyf607bdc2010-09-10 19:20:06 -0700225 if (swapSrcDst) key |= PROGRAM_KEY_SWAP_SRC_DST;
Romain Guy707b2f72010-10-11 16:34:59 -0700226 if (modulate) key |= programid(0x1) << PROGRAM_MODULATE;
Romain Guyac670c02010-07-27 17:39:27 -0700227 return key;
228 }
Romain Guyee916f12010-09-20 17:53:08 -0700229
Romain Guy707b2f72010-10-11 16:34:59 -0700230 /**
231 * Logs the specified message followed by the key identifying this program.
232 */
Romain Guyee916f12010-09-20 17:53:08 -0700233 void log(const char* message) const {
Romain Guy7b5b6ab2011-03-14 18:05:08 -0700234#if DEBUG_PROGRAMS
Romain Guyee916f12010-09-20 17:53:08 -0700235 programid k = key();
236 PROGRAM_LOGD("%s (key = 0x%.8x%.8x)", message, uint32_t(k >> 32),
237 uint32_t(k & 0xffffffff));
Romain Guy7b5b6ab2011-03-14 18:05:08 -0700238#endif
Romain Guyee916f12010-09-20 17:53:08 -0700239 }
Romain Guy707b2f72010-10-11 16:34:59 -0700240
241private:
242 inline uint32_t getEnumForWrap(GLenum wrap) const {
243 switch (wrap) {
244 case GL_CLAMP_TO_EDGE:
245 return 0;
246 case GL_REPEAT:
247 return 1;
248 case GL_MIRRORED_REPEAT:
249 return 2;
250 }
251 return 0;
252 }
253
Romain Guyac670c02010-07-27 17:39:27 -0700254}; // struct ProgramDescription
255
256/**
257 * Generates and caches program. Programs are generated based on
258 * ProgramDescriptions.
259 */
260class ProgramCache {
261public:
262 ProgramCache();
263 ~ProgramCache();
264
265 Program* get(const ProgramDescription& description);
266
267 void clear();
268
269private:
270 Program* generateProgram(const ProgramDescription& description, programid key);
271 String8 generateVertexShader(const ProgramDescription& description);
272 String8 generateFragmentShader(const ProgramDescription& description);
Romain Guy48daa542010-08-10 19:21:34 -0700273 void generateBlend(String8& shader, const char* name, SkXfermode::Mode mode);
Romain Guy889f8d12010-07-29 14:37:42 -0700274 void generateTextureWrap(String8& shader, GLenum wrapS, GLenum wrapT);
Romain Guyac670c02010-07-27 17:39:27 -0700275
Romain Guydb1938e2010-08-02 18:50:22 -0700276 void printLongString(const String8& shader) const;
277
Romain Guyac670c02010-07-27 17:39:27 -0700278 KeyedVector<programid, Program*> mCache;
Romain Guyac670c02010-07-27 17:39:27 -0700279}; // class ProgramCache
280
281}; // namespace uirenderer
282}; // namespace android
283
Romain Guy5b3b3522010-10-27 18:57:51 -0700284#endif // ANDROID_HWUI_PROGRAM_CACHE_H