blob: 5c7197b620cdab09f60935ecc7825887c2cdf03d [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 Guyed6fcb02011-03-21 13:11:28 -070074#define PROGRAM_MODULATE_SHIFT 35
75
76#define PROGRAM_IS_POINT_SHIFT 36
Romain Guyee916f12010-09-20 17:53:08 -070077
Chet Haase99585ad2011-05-02 15:00:16 -070078#define PROGRAM_HAS_AA_SHIFT 37
Chet Haase6fca9882011-04-25 14:49:07 -070079
Romain Guyaa6c24c2011-04-28 18:40:04 -070080#define PROGRAM_HAS_EXTERNAL_TEXTURE_SHIFT 38
Romain Guy8f0095c2011-05-02 17:24:22 -070081#define PROGRAM_HAS_TEXTURE_TRANSFORM_SHIFT 39
Romain Guyaa6c24c2011-04-28 18:40:04 -070082
Romain Guyac670c02010-07-27 17:39:27 -070083///////////////////////////////////////////////////////////////////////////////
84// Types
85///////////////////////////////////////////////////////////////////////////////
86
Romain Guyee916f12010-09-20 17:53:08 -070087typedef uint64_t programid;
Romain Guyac670c02010-07-27 17:39:27 -070088
89///////////////////////////////////////////////////////////////////////////////
90// Cache
91///////////////////////////////////////////////////////////////////////////////
92
93/**
94 * Describe the features required for a given program. The features
95 * determine the generation of both the vertex and fragment shaders.
96 * A ProgramDescription must be used in conjunction with a ProgramCache.
97 */
98struct ProgramDescription {
99 enum ColorModifier {
100 kColorNone,
101 kColorMatrix,
102 kColorLighting,
103 kColorBlend
104 };
105
Romain Guyee916f12010-09-20 17:53:08 -0700106 enum Gradient {
107 kGradientLinear,
108 kGradientCircular,
109 kGradientSweep
110 };
111
Romain Guy70ca14e2010-12-13 18:24:33 -0800112 ProgramDescription() {
113 reset();
Romain Guyac670c02010-07-27 17:39:27 -0700114 }
115
116 // Texturing
117 bool hasTexture;
118 bool hasAlpha8Texture;
Romain Guyaa6c24c2011-04-28 18:40:04 -0700119 bool hasExternalTexture;
Romain Guy8f0095c2011-05-02 17:24:22 -0700120 bool hasTextureTransform;
Romain Guyac670c02010-07-27 17:39:27 -0700121
Romain Guy707b2f72010-10-11 16:34:59 -0700122 // Modulate, this should only be set when setColor() return true
123 bool modulate;
124
Romain Guyac670c02010-07-27 17:39:27 -0700125 // Shaders
126 bool hasBitmap;
Romain Guy889f8d12010-07-29 14:37:42 -0700127 bool isBitmapNpot;
Romain Guyee916f12010-09-20 17:53:08 -0700128
Chet Haase99585ad2011-05-02 15:00:16 -0700129 bool isAA;
Chet Haase5b0200b2011-04-13 17:58:08 -0700130
Romain Guyac670c02010-07-27 17:39:27 -0700131 bool hasGradient;
Romain Guyee916f12010-09-20 17:53:08 -0700132 Gradient gradientType;
133
Romain Guyac670c02010-07-27 17:39:27 -0700134 SkXfermode::Mode shadersMode;
Romain Guyee916f12010-09-20 17:53:08 -0700135
Romain Guyac670c02010-07-27 17:39:27 -0700136 bool isBitmapFirst;
Romain Guy889f8d12010-07-29 14:37:42 -0700137 GLenum bitmapWrapS;
138 GLenum bitmapWrapT;
Romain Guyac670c02010-07-27 17:39:27 -0700139
140 // Color operations
Romain Guy4afdf662010-10-13 21:31:28 -0700141 ColorModifier colorOp;
Romain Guyac670c02010-07-27 17:39:27 -0700142 SkXfermode::Mode colorMode;
143
Romain Guya5aed0d2010-09-09 14:42:43 -0700144 // Framebuffer blending (requires Extensions.hasFramebufferFetch())
145 // Ignored for all values < SkXfermode::kPlus_Mode
146 SkXfermode::Mode framebufferMode;
Romain Guyf607bdc2010-09-10 19:20:06 -0700147 bool swapSrcDst;
Romain Guya5aed0d2010-09-09 14:42:43 -0700148
Romain Guyed6fcb02011-03-21 13:11:28 -0700149 bool isPoint;
150 float pointSize;
151
Romain Guy707b2f72010-10-11 16:34:59 -0700152 /**
Romain Guy70ca14e2010-12-13 18:24:33 -0800153 * Resets this description. All fields are reset back to the default
154 * values they hold after building a new instance.
155 */
156 void reset() {
157 hasTexture = false;
158 hasAlpha8Texture = false;
Romain Guyaa6c24c2011-04-28 18:40:04 -0700159 hasExternalTexture = false;
Romain Guy8f0095c2011-05-02 17:24:22 -0700160 hasTextureTransform = false;
Romain Guy70ca14e2010-12-13 18:24:33 -0800161
Chet Haase99585ad2011-05-02 15:00:16 -0700162 isAA = false;
Chet Haase5b0200b2011-04-13 17:58:08 -0700163
Romain Guy70ca14e2010-12-13 18:24:33 -0800164 modulate = false;
165
166 hasBitmap = false;
167 isBitmapNpot = false;
168
169 hasGradient = false;
170 gradientType = kGradientLinear;
171
172 shadersMode = SkXfermode::kClear_Mode;
173
174 isBitmapFirst = false;
175 bitmapWrapS = GL_CLAMP_TO_EDGE;
176 bitmapWrapT = GL_CLAMP_TO_EDGE;
177
178 colorOp = kColorNone;
179 colorMode = SkXfermode::kClear_Mode;
180
181 framebufferMode = SkXfermode::kClear_Mode;
182 swapSrcDst = false;
Romain Guyed6fcb02011-03-21 13:11:28 -0700183
184 isPoint = false;
185 pointSize = 0.0f;
Romain Guy70ca14e2010-12-13 18:24:33 -0800186 }
187
188 /**
Romain Guy707b2f72010-10-11 16:34:59 -0700189 * Indicates, for a given color, whether color modulation is required in
190 * the fragment shader. When this method returns true, the program should
191 * be provided with a modulation color.
192 */
193 bool setColor(const float r, const float g, const float b, const float a) {
194 modulate = a < COLOR_COMPONENT_THRESHOLD || r < COLOR_COMPONENT_THRESHOLD ||
195 g < COLOR_COMPONENT_THRESHOLD || b < COLOR_COMPONENT_THRESHOLD;
196 return modulate;
Romain Guy889f8d12010-07-29 14:37:42 -0700197 }
198
Romain Guy707b2f72010-10-11 16:34:59 -0700199 /**
200 * Indicates, for a given color, whether color modulation is required in
201 * the fragment shader. When this method returns true, the program should
202 * be provided with a modulation color.
203 */
204 bool setAlpha8Color(const float r, const float g, const float b, const float a) {
205 modulate = a < COLOR_COMPONENT_THRESHOLD || r > COLOR_COMPONENT_INV_THRESHOLD ||
206 g > COLOR_COMPONENT_INV_THRESHOLD || b > COLOR_COMPONENT_INV_THRESHOLD;
207 return modulate;
208 }
209
210 /**
211 * Computes the unique key identifying this program.
212 */
Romain Guyac670c02010-07-27 17:39:27 -0700213 programid key() const {
214 programid key = 0;
215 if (hasTexture) key |= PROGRAM_KEY_TEXTURE;
216 if (hasAlpha8Texture) key |= PROGRAM_KEY_A8_TEXTURE;
Romain Guy889f8d12010-07-29 14:37:42 -0700217 if (hasBitmap) {
218 key |= PROGRAM_KEY_BITMAP;
219 if (isBitmapNpot) {
220 key |= PROGRAM_KEY_BITMAP_NPOT;
221 key |= getEnumForWrap(bitmapWrapS) << PROGRAM_BITMAP_WRAPS_SHIFT;
222 key |= getEnumForWrap(bitmapWrapT) << PROGRAM_BITMAP_WRAPT_SHIFT;
223 }
224 }
Romain Guyac670c02010-07-27 17:39:27 -0700225 if (hasGradient) key |= PROGRAM_KEY_GRADIENT;
Romain Guyee916f12010-09-20 17:53:08 -0700226 key |= programid(gradientType) << PROGRAM_GRADIENT_TYPE_SHIFT;
227 if (isBitmapFirst) key |= PROGRAM_KEY_BITMAP_FIRST;
Romain Guyac670c02010-07-27 17:39:27 -0700228 if (hasBitmap && hasGradient) {
229 key |= (shadersMode & PROGRAM_MAX_XFERMODE) << PROGRAM_XFERMODE_SHADER_SHIFT;
230 }
231 switch (colorOp) {
232 case kColorMatrix:
233 key |= PROGRAM_KEY_COLOR_MATRIX;
234 break;
235 case kColorLighting:
236 key |= PROGRAM_KEY_COLOR_LIGHTING;
237 break;
238 case kColorBlend:
239 key |= PROGRAM_KEY_COLOR_BLEND;
240 key |= (colorMode & PROGRAM_MAX_XFERMODE) << PROGRAM_XFERMODE_COLOR_OP_SHIFT;
241 break;
242 case kColorNone:
243 break;
244 }
Romain Guya5aed0d2010-09-09 14:42:43 -0700245 key |= (framebufferMode & PROGRAM_MAX_XFERMODE) << PROGRAM_XFERMODE_FRAMEBUFFER_SHIFT;
Romain Guyf607bdc2010-09-10 19:20:06 -0700246 if (swapSrcDst) key |= PROGRAM_KEY_SWAP_SRC_DST;
Romain Guyed6fcb02011-03-21 13:11:28 -0700247 if (modulate) key |= programid(0x1) << PROGRAM_MODULATE_SHIFT;
248 if (isPoint) key |= programid(0x1) << PROGRAM_IS_POINT_SHIFT;
Chet Haase99585ad2011-05-02 15:00:16 -0700249 if (isAA) key |= programid(0x1) << PROGRAM_HAS_AA_SHIFT;
Romain Guyaa6c24c2011-04-28 18:40:04 -0700250 if (hasExternalTexture) key |= programid(0x1) << PROGRAM_HAS_EXTERNAL_TEXTURE_SHIFT;
Romain Guy8f0095c2011-05-02 17:24:22 -0700251 if (hasTextureTransform) key |= programid(0x1) << PROGRAM_HAS_TEXTURE_TRANSFORM_SHIFT;
Romain Guyac670c02010-07-27 17:39:27 -0700252 return key;
253 }
Romain Guyee916f12010-09-20 17:53:08 -0700254
Romain Guy707b2f72010-10-11 16:34:59 -0700255 /**
256 * Logs the specified message followed by the key identifying this program.
257 */
Romain Guyee916f12010-09-20 17:53:08 -0700258 void log(const char* message) const {
Romain Guy7b5b6ab2011-03-14 18:05:08 -0700259#if DEBUG_PROGRAMS
Romain Guyee916f12010-09-20 17:53:08 -0700260 programid k = key();
261 PROGRAM_LOGD("%s (key = 0x%.8x%.8x)", message, uint32_t(k >> 32),
262 uint32_t(k & 0xffffffff));
Romain Guy7b5b6ab2011-03-14 18:05:08 -0700263#endif
Romain Guyee916f12010-09-20 17:53:08 -0700264 }
Romain Guy707b2f72010-10-11 16:34:59 -0700265
266private:
267 inline uint32_t getEnumForWrap(GLenum wrap) const {
268 switch (wrap) {
269 case GL_CLAMP_TO_EDGE:
270 return 0;
271 case GL_REPEAT:
272 return 1;
273 case GL_MIRRORED_REPEAT:
274 return 2;
275 }
276 return 0;
277 }
278
Romain Guyac670c02010-07-27 17:39:27 -0700279}; // struct ProgramDescription
280
281/**
282 * Generates and caches program. Programs are generated based on
283 * ProgramDescriptions.
284 */
285class ProgramCache {
286public:
287 ProgramCache();
288 ~ProgramCache();
289
290 Program* get(const ProgramDescription& description);
291
292 void clear();
293
294private:
295 Program* generateProgram(const ProgramDescription& description, programid key);
296 String8 generateVertexShader(const ProgramDescription& description);
297 String8 generateFragmentShader(const ProgramDescription& description);
Romain Guy48daa542010-08-10 19:21:34 -0700298 void generateBlend(String8& shader, const char* name, SkXfermode::Mode mode);
Romain Guy889f8d12010-07-29 14:37:42 -0700299 void generateTextureWrap(String8& shader, GLenum wrapS, GLenum wrapT);
Romain Guyac670c02010-07-27 17:39:27 -0700300
Romain Guydb1938e2010-08-02 18:50:22 -0700301 void printLongString(const String8& shader) const;
302
Romain Guyac670c02010-07-27 17:39:27 -0700303 KeyedVector<programid, Program*> mCache;
Romain Guyac670c02010-07-27 17:39:27 -0700304}; // class ProgramCache
305
306}; // namespace uirenderer
307}; // namespace android
308
Romain Guy5b3b3522010-10-27 18:57:51 -0700309#endif // ANDROID_HWUI_PROGRAM_CACHE_H