blob: 06353c096adc02c1b6585c1021cb69619a73d77e [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
17#define LOG_TAG "OpenGLRenderer"
18
19#include <utils/String8.h>
20
Romain Guya60c3882011-08-01 15:28:16 -070021#include "Caches.h"
Romain Guyb4880042013-04-05 11:17:55 -070022#include "Dither.h"
Romain Guyac670c02010-07-27 17:39:27 -070023#include "ProgramCache.h"
24
25namespace android {
26namespace uirenderer {
27
28///////////////////////////////////////////////////////////////////////////////
Romain Guy707b2f72010-10-11 16:34:59 -070029// Defines
30///////////////////////////////////////////////////////////////////////////////
31
32#define MODULATE_OP_NO_MODULATE 0
33#define MODULATE_OP_MODULATE 1
34#define MODULATE_OP_MODULATE_A8 2
35
Romain Guyb4880042013-04-05 11:17:55 -070036#define STR(x) STR1(x)
37#define STR1(x) #x
38
Romain Guy707b2f72010-10-11 16:34:59 -070039///////////////////////////////////////////////////////////////////////////////
Romain Guyac670c02010-07-27 17:39:27 -070040// Vertex shaders snippets
41///////////////////////////////////////////////////////////////////////////////
42
Romain Guyac670c02010-07-27 17:39:27 -070043const char* gVS_Header_Attributes =
44 "attribute vec4 position;\n";
45const char* gVS_Header_Attributes_TexCoords =
46 "attribute vec2 texCoords;\n";
Romain Guyff316ec2013-02-13 18:39:43 -080047const char* gVS_Header_Attributes_Colors =
48 "attribute vec4 colors;\n";
Chris Craik91a8c7c2014-08-12 14:31:35 -070049const char* gVS_Header_Attributes_VertexAlphaParameters =
Chris Craik6ebdc112012-08-31 18:24:33 -070050 "attribute float vtxAlpha;\n";
Romain Guyaa6c24c2011-04-28 18:40:04 -070051const char* gVS_Header_Uniforms_TextureTransform =
52 "uniform mat4 mainTextureTransform;\n";
Romain Guyac670c02010-07-27 17:39:27 -070053const char* gVS_Header_Uniforms =
Romain Guy39284b72012-09-26 16:39:40 -070054 "uniform mat4 projection;\n" \
Romain Guyac670c02010-07-27 17:39:27 -070055 "uniform mat4 transform;\n";
Romain Guyb4880042013-04-05 11:17:55 -070056const char* gVS_Header_Uniforms_HasGradient =
57 "uniform mat4 screenSpace;\n";
Romain Guy889f8d12010-07-29 14:37:42 -070058const char* gVS_Header_Uniforms_HasBitmap =
59 "uniform mat4 textureTransform;\n"
Romain Guy80bbfb12011-03-23 16:56:28 -070060 "uniform mediump vec2 textureDimension;\n";
Chris Craikdeeda3d2014-05-05 19:09:33 -070061const char* gVS_Header_Uniforms_HasRoundRectClip =
62 "uniform mat4 roundRectInvTransform;\n";
Romain Guyac670c02010-07-27 17:39:27 -070063const char* gVS_Header_Varyings_HasTexture =
64 "varying vec2 outTexCoords;\n";
Romain Guyff316ec2013-02-13 18:39:43 -080065const char* gVS_Header_Varyings_HasColors =
66 "varying vec4 outColors;\n";
Chris Craik91a8c7c2014-08-12 14:31:35 -070067const char* gVS_Header_Varyings_HasVertexAlpha =
Chris Craik6ebdc112012-08-31 18:24:33 -070068 "varying float alpha;\n";
Romain Guy63553472012-07-18 20:04:14 -070069const char* gVS_Header_Varyings_HasBitmap =
70 "varying highp vec2 outBitmapTexCoords;\n";
Romain Guy42e1e0d2012-07-30 14:47:51 -070071const char* gVS_Header_Varyings_HasGradient[6] = {
Romain Guyee916f12010-09-20 17:53:08 -070072 // Linear
Chet Haasea1d12dd2012-09-21 14:50:14 -070073 "varying highp vec2 linear;\n"
74 "varying vec2 ditherTexCoords;\n",
75 "varying float linear;\n"
76 "varying vec2 ditherTexCoords;\n",
Romain Guy211efea2012-07-31 21:16:07 -070077
Romain Guyee916f12010-09-20 17:53:08 -070078 // Circular
Chet Haasea1d12dd2012-09-21 14:50:14 -070079 "varying highp vec2 circular;\n"
80 "varying vec2 ditherTexCoords;\n",
81 "varying highp vec2 circular;\n"
82 "varying vec2 ditherTexCoords;\n",
Romain Guy211efea2012-07-31 21:16:07 -070083
Romain Guyee916f12010-09-20 17:53:08 -070084 // Sweep
Chet Haasea1d12dd2012-09-21 14:50:14 -070085 "varying highp vec2 sweep;\n"
86 "varying vec2 ditherTexCoords;\n",
87 "varying highp vec2 sweep;\n"
88 "varying vec2 ditherTexCoords;\n",
Romain Guyee916f12010-09-20 17:53:08 -070089};
Chris Craikdeeda3d2014-05-05 19:09:33 -070090const char* gVS_Header_Varyings_HasRoundRectClip =
Chris Craik68a73e82014-08-29 17:06:27 -070091 "varying highp vec2 roundRectPos;\n";
Romain Guyac670c02010-07-27 17:39:27 -070092const char* gVS_Main =
93 "\nvoid main(void) {\n";
94const char* gVS_Main_OutTexCoords =
95 " outTexCoords = texCoords;\n";
Romain Guyff316ec2013-02-13 18:39:43 -080096const char* gVS_Main_OutColors =
97 " outColors = colors;\n";
Romain Guyaa6c24c2011-04-28 18:40:04 -070098const char* gVS_Main_OutTransformedTexCoords =
99 " outTexCoords = (mainTextureTransform * vec4(texCoords, 0.0, 1.0)).xy;\n";
Romain Guy42e1e0d2012-07-30 14:47:51 -0700100const char* gVS_Main_OutGradient[6] = {
Romain Guyee916f12010-09-20 17:53:08 -0700101 // Linear
Chet Haasea1d12dd2012-09-21 14:50:14 -0700102 " linear = vec2((screenSpace * position).x, 0.5);\n"
Romain Guyb4880042013-04-05 11:17:55 -0700103 " ditherTexCoords = (transform * position).xy * " STR(DITHER_KERNEL_SIZE_INV) ";\n",
Chet Haasea1d12dd2012-09-21 14:50:14 -0700104 " linear = (screenSpace * position).x;\n"
Romain Guyb4880042013-04-05 11:17:55 -0700105 " ditherTexCoords = (transform * position).xy * " STR(DITHER_KERNEL_SIZE_INV) ";\n",
Romain Guy211efea2012-07-31 21:16:07 -0700106
Romain Guyee916f12010-09-20 17:53:08 -0700107 // Circular
Chet Haasea1d12dd2012-09-21 14:50:14 -0700108 " circular = (screenSpace * position).xy;\n"
Romain Guyb4880042013-04-05 11:17:55 -0700109 " ditherTexCoords = (transform * position).xy * " STR(DITHER_KERNEL_SIZE_INV) ";\n",
Chet Haasea1d12dd2012-09-21 14:50:14 -0700110 " circular = (screenSpace * position).xy;\n"
Romain Guyb4880042013-04-05 11:17:55 -0700111 " ditherTexCoords = (transform * position).xy * " STR(DITHER_KERNEL_SIZE_INV) ";\n",
Romain Guy211efea2012-07-31 21:16:07 -0700112
Romain Guyee916f12010-09-20 17:53:08 -0700113 // Sweep
Chet Haasea1d12dd2012-09-21 14:50:14 -0700114 " sweep = (screenSpace * position).xy;\n"
Romain Guyb4880042013-04-05 11:17:55 -0700115 " ditherTexCoords = (transform * position).xy * " STR(DITHER_KERNEL_SIZE_INV) ";\n",
Chet Haasea1d12dd2012-09-21 14:50:14 -0700116 " sweep = (screenSpace * position).xy;\n"
Romain Guyb4880042013-04-05 11:17:55 -0700117 " ditherTexCoords = (transform * position).xy * " STR(DITHER_KERNEL_SIZE_INV) ";\n",
Romain Guyee916f12010-09-20 17:53:08 -0700118};
Romain Guy889f8d12010-07-29 14:37:42 -0700119const char* gVS_Main_OutBitmapTexCoords =
Romain Guy707b2f72010-10-11 16:34:59 -0700120 " outBitmapTexCoords = (textureTransform * position).xy * textureDimension;\n";
Romain Guyac670c02010-07-27 17:39:27 -0700121const char* gVS_Main_Position =
Chris Craikdeeda3d2014-05-05 19:09:33 -0700122 " vec4 transformedPosition = projection * transform * position;\n"
123 " gl_Position = transformedPosition;\n";
Chris Craikbf759452014-08-11 16:00:44 -0700124
Chris Craik91a8c7c2014-08-12 14:31:35 -0700125const char* gVS_Main_VertexAlpha =
Chris Craik6ebdc112012-08-31 18:24:33 -0700126 " alpha = vtxAlpha;\n";
Chris Craikbf759452014-08-11 16:00:44 -0700127
Chris Craikdeeda3d2014-05-05 19:09:33 -0700128const char* gVS_Main_HasRoundRectClip =
129 " roundRectPos = (roundRectInvTransform * transformedPosition).xy;\n";
Romain Guyac670c02010-07-27 17:39:27 -0700130const char* gVS_Footer =
131 "}\n\n";
132
133///////////////////////////////////////////////////////////////////////////////
134// Fragment shaders snippets
135///////////////////////////////////////////////////////////////////////////////
136
Romain Guya5aed0d2010-09-09 14:42:43 -0700137const char* gFS_Header_Extension_FramebufferFetch =
138 "#extension GL_NV_shader_framebuffer_fetch : enable\n\n";
Romain Guyaa6c24c2011-04-28 18:40:04 -0700139const char* gFS_Header_Extension_ExternalTexture =
140 "#extension GL_OES_EGL_image_external : require\n\n";
Romain Guyac670c02010-07-27 17:39:27 -0700141const char* gFS_Header =
142 "precision mediump float;\n\n";
143const char* gFS_Uniforms_Color =
144 "uniform vec4 color;\n";
145const char* gFS_Uniforms_TextureSampler =
Romain Guya938f562012-09-13 20:31:08 -0700146 "uniform sampler2D baseSampler;\n";
Romain Guyaa6c24c2011-04-28 18:40:04 -0700147const char* gFS_Uniforms_ExternalTextureSampler =
Romain Guya938f562012-09-13 20:31:08 -0700148 "uniform samplerExternalOES baseSampler;\n";
Romain Guyb4880042013-04-05 11:17:55 -0700149const char* gFS_Uniforms_Dither =
150 "uniform sampler2D ditherSampler;";
151const char* gFS_Uniforms_GradientSampler[2] = {
152 "%s\n"
153 "uniform sampler2D gradientSampler;\n",
154 "%s\n"
155 "uniform vec4 startColor;\n"
Romain Guy211efea2012-07-31 21:16:07 -0700156 "uniform vec4 endColor;\n"
Romain Guyee916f12010-09-20 17:53:08 -0700157};
Romain Guyac670c02010-07-27 17:39:27 -0700158const char* gFS_Uniforms_BitmapSampler =
159 "uniform sampler2D bitmapSampler;\n";
Derek Sollenberger76d3a1b2013-12-10 12:28:58 -0500160const char* gFS_Uniforms_ColorOp[3] = {
Romain Guyac670c02010-07-27 17:39:27 -0700161 // None
162 "",
163 // Matrix
164 "uniform mat4 colorMatrix;\n"
165 "uniform vec4 colorMatrixVector;\n",
Romain Guyac670c02010-07-27 17:39:27 -0700166 // PorterDuff
Romain Guydb1938e2010-08-02 18:50:22 -0700167 "uniform vec4 colorBlend;\n"
Romain Guyac670c02010-07-27 17:39:27 -0700168};
Romain Guy41210632012-07-16 17:04:24 -0700169const char* gFS_Uniforms_Gamma =
170 "uniform float gamma;\n";
171
Chris Craikdeeda3d2014-05-05 19:09:33 -0700172const char* gFS_Uniforms_HasRoundRectClip =
173 "uniform vec4 roundRectInnerRectLTRB;\n"
174 "uniform float roundRectRadius;\n";
175
Romain Guyac670c02010-07-27 17:39:27 -0700176const char* gFS_Main =
177 "\nvoid main(void) {\n"
Romain Guy7fbcc042010-08-04 15:40:07 -0700178 " lowp vec4 fragColor;\n";
Romain Guy707b2f72010-10-11 16:34:59 -0700179
Romain Guyb4880042013-04-05 11:17:55 -0700180const char* gFS_Main_Dither[2] = {
181 // ES 2.0
182 "texture2D(ditherSampler, ditherTexCoords).a * " STR(DITHER_KERNEL_SIZE_INV_SQUARE),
183 // ES 3.0
Romain Guy032d47a2013-04-08 19:45:40 -0700184 "texture2D(ditherSampler, ditherTexCoords).a"
Romain Guyb4880042013-04-05 11:17:55 -0700185};
Romain Guy211efea2012-07-31 21:16:07 -0700186const char* gFS_Main_AddDitherToGradient =
Romain Guyb4880042013-04-05 11:17:55 -0700187 " gradientColor += %s;\n";
Romain Guy211efea2012-07-31 21:16:07 -0700188
Romain Guy707b2f72010-10-11 16:34:59 -0700189// Fast cases
190const char* gFS_Fast_SingleColor =
191 "\nvoid main(void) {\n"
192 " gl_FragColor = color;\n"
193 "}\n\n";
194const char* gFS_Fast_SingleTexture =
195 "\nvoid main(void) {\n"
Romain Guya938f562012-09-13 20:31:08 -0700196 " gl_FragColor = texture2D(baseSampler, outTexCoords);\n"
Romain Guy707b2f72010-10-11 16:34:59 -0700197 "}\n\n";
198const char* gFS_Fast_SingleModulateTexture =
199 "\nvoid main(void) {\n"
Romain Guya938f562012-09-13 20:31:08 -0700200 " gl_FragColor = color.a * texture2D(baseSampler, outTexCoords);\n"
Romain Guy707b2f72010-10-11 16:34:59 -0700201 "}\n\n";
202const char* gFS_Fast_SingleA8Texture =
203 "\nvoid main(void) {\n"
Romain Guya938f562012-09-13 20:31:08 -0700204 " gl_FragColor = texture2D(baseSampler, outTexCoords);\n"
Romain Guy707b2f72010-10-11 16:34:59 -0700205 "}\n\n";
Romain Guy41210632012-07-16 17:04:24 -0700206const char* gFS_Fast_SingleA8Texture_ApplyGamma =
207 "\nvoid main(void) {\n"
Romain Guya938f562012-09-13 20:31:08 -0700208 " gl_FragColor = vec4(0.0, 0.0, 0.0, pow(texture2D(baseSampler, outTexCoords).a, gamma));\n"
Romain Guy41210632012-07-16 17:04:24 -0700209 "}\n\n";
Romain Guy707b2f72010-10-11 16:34:59 -0700210const char* gFS_Fast_SingleModulateA8Texture =
211 "\nvoid main(void) {\n"
Romain Guya938f562012-09-13 20:31:08 -0700212 " gl_FragColor = color * texture2D(baseSampler, outTexCoords).a;\n"
Romain Guy707b2f72010-10-11 16:34:59 -0700213 "}\n\n";
Romain Guy41210632012-07-16 17:04:24 -0700214const char* gFS_Fast_SingleModulateA8Texture_ApplyGamma =
215 "\nvoid main(void) {\n"
Romain Guya938f562012-09-13 20:31:08 -0700216 " gl_FragColor = color * pow(texture2D(baseSampler, outTexCoords).a, gamma);\n"
Romain Guy41210632012-07-16 17:04:24 -0700217 "}\n\n";
Romain Guy42e1e0d2012-07-30 14:47:51 -0700218const char* gFS_Fast_SingleGradient[2] = {
Romain Guy707b2f72010-10-11 16:34:59 -0700219 "\nvoid main(void) {\n"
Romain Guyb4880042013-04-05 11:17:55 -0700220 " gl_FragColor = %s + texture2D(gradientSampler, linear);\n"
Romain Guy42e1e0d2012-07-30 14:47:51 -0700221 "}\n\n",
222 "\nvoid main(void) {\n"
Romain Guyb4880042013-04-05 11:17:55 -0700223 " gl_FragColor = %s + mix(startColor, endColor, clamp(linear, 0.0, 1.0));\n"
224 "}\n\n",
Romain Guy42e1e0d2012-07-30 14:47:51 -0700225};
226const char* gFS_Fast_SingleModulateGradient[2] = {
Romain Guy707b2f72010-10-11 16:34:59 -0700227 "\nvoid main(void) {\n"
Romain Guyb4880042013-04-05 11:17:55 -0700228 " gl_FragColor = %s + color.a * texture2D(gradientSampler, linear);\n"
Romain Guy42e1e0d2012-07-30 14:47:51 -0700229 "}\n\n",
230 "\nvoid main(void) {\n"
Romain Guyb4880042013-04-05 11:17:55 -0700231 " gl_FragColor = %s + color.a * mix(startColor, endColor, clamp(linear, 0.0, 1.0));\n"
Romain Guy42e1e0d2012-07-30 14:47:51 -0700232 "}\n\n"
233};
Romain Guy707b2f72010-10-11 16:34:59 -0700234
235// General case
Romain Guyac670c02010-07-27 17:39:27 -0700236const char* gFS_Main_FetchColor =
237 " fragColor = color;\n";
Romain Guy740bf2b2011-04-26 15:33:10 -0700238const char* gFS_Main_ModulateColor =
239 " fragColor *= color.a;\n";
Chris Craik91a8c7c2014-08-12 14:31:35 -0700240const char* gFS_Main_ApplyVertexAlphaLinearInterp =
Chris Craik6ebdc112012-08-31 18:24:33 -0700241 " fragColor *= alpha;\n";
Chris Craik91a8c7c2014-08-12 14:31:35 -0700242const char* gFS_Main_ApplyVertexAlphaShadowInterp =
243 " fragColor *= (1.0 - cos(alpha)) / 2.0;\n";
Chris Craika798b952012-08-27 17:03:13 -0700244
Romain Guy707b2f72010-10-11 16:34:59 -0700245const char* gFS_Main_FetchTexture[2] = {
246 // Don't modulate
Romain Guya938f562012-09-13 20:31:08 -0700247 " fragColor = texture2D(baseSampler, outTexCoords);\n",
Romain Guy707b2f72010-10-11 16:34:59 -0700248 // Modulate
Romain Guya938f562012-09-13 20:31:08 -0700249 " fragColor = color * texture2D(baseSampler, outTexCoords);\n"
Romain Guy707b2f72010-10-11 16:34:59 -0700250};
Romain Guya938f562012-09-13 20:31:08 -0700251const char* gFS_Main_FetchA8Texture[4] = {
Romain Guy707b2f72010-10-11 16:34:59 -0700252 // Don't modulate
Romain Guya938f562012-09-13 20:31:08 -0700253 " fragColor = texture2D(baseSampler, outTexCoords);\n",
254 " fragColor = texture2D(baseSampler, outTexCoords);\n",
Romain Guy707b2f72010-10-11 16:34:59 -0700255 // Modulate
Romain Guya938f562012-09-13 20:31:08 -0700256 " fragColor = color * texture2D(baseSampler, outTexCoords).a;\n",
257 " fragColor = color * pow(texture2D(baseSampler, outTexCoords).a, gamma);\n"
Romain Guy707b2f72010-10-11 16:34:59 -0700258};
Romain Guy42e1e0d2012-07-30 14:47:51 -0700259const char* gFS_Main_FetchGradient[6] = {
Romain Guyee916f12010-09-20 17:53:08 -0700260 // Linear
Romain Guy320d46b2012-08-08 16:05:42 -0700261 " vec4 gradientColor = texture2D(gradientSampler, linear);\n",
Romain Guy211efea2012-07-31 21:16:07 -0700262
Romain Guy320d46b2012-08-08 16:05:42 -0700263 " vec4 gradientColor = mix(startColor, endColor, clamp(linear, 0.0, 1.0));\n",
Romain Guy211efea2012-07-31 21:16:07 -0700264
Romain Guyee916f12010-09-20 17:53:08 -0700265 // Circular
Romain Guy320d46b2012-08-08 16:05:42 -0700266 " vec4 gradientColor = texture2D(gradientSampler, vec2(length(circular), 0.5));\n",
Romain Guy211efea2012-07-31 21:16:07 -0700267
Romain Guy320d46b2012-08-08 16:05:42 -0700268 " vec4 gradientColor = mix(startColor, endColor, clamp(length(circular), 0.0, 1.0));\n",
Romain Guy211efea2012-07-31 21:16:07 -0700269
Romain Guyee916f12010-09-20 17:53:08 -0700270 // Sweep
Romain Guy63553472012-07-18 20:04:14 -0700271 " highp float index = atan(sweep.y, sweep.x) * 0.15915494309; // inv(2 * PI)\n"
Romain Guy320d46b2012-08-08 16:05:42 -0700272 " vec4 gradientColor = texture2D(gradientSampler, vec2(index - floor(index), 0.5));\n",
Romain Guy211efea2012-07-31 21:16:07 -0700273
Romain Guy42e1e0d2012-07-30 14:47:51 -0700274 " highp float index = atan(sweep.y, sweep.x) * 0.15915494309; // inv(2 * PI)\n"
Romain Guy320d46b2012-08-08 16:05:42 -0700275 " vec4 gradientColor = mix(startColor, endColor, clamp(index - floor(index), 0.0, 1.0));\n"
Romain Guyee916f12010-09-20 17:53:08 -0700276};
Romain Guyac670c02010-07-27 17:39:27 -0700277const char* gFS_Main_FetchBitmap =
278 " vec4 bitmapColor = texture2D(bitmapSampler, outBitmapTexCoords);\n";
Romain Guy889f8d12010-07-29 14:37:42 -0700279const char* gFS_Main_FetchBitmapNpot =
280 " vec4 bitmapColor = texture2D(bitmapSampler, wrap(outBitmapTexCoords));\n";
Romain Guyac670c02010-07-27 17:39:27 -0700281const char* gFS_Main_BlendShadersBG =
Romain Guyac670c02010-07-27 17:39:27 -0700282 " fragColor = blendShaders(gradientColor, bitmapColor)";
Romain Guy06f96e22010-07-30 19:18:16 -0700283const char* gFS_Main_BlendShadersGB =
284 " fragColor = blendShaders(bitmapColor, gradientColor)";
Romain Guya938f562012-09-13 20:31:08 -0700285const char* gFS_Main_BlendShaders_Modulate[6] = {
Romain Guy707b2f72010-10-11 16:34:59 -0700286 // Don't modulate
287 ";\n",
Romain Guya938f562012-09-13 20:31:08 -0700288 ";\n",
Romain Guy707b2f72010-10-11 16:34:59 -0700289 // Modulate
Chet Haase0990ffb2012-09-17 17:43:45 -0700290 " * color.a;\n",
291 " * color.a;\n",
Romain Guy707b2f72010-10-11 16:34:59 -0700292 // Modulate with alpha 8 texture
Romain Guya938f562012-09-13 20:31:08 -0700293 " * texture2D(baseSampler, outTexCoords).a;\n",
294 " * pow(texture2D(baseSampler, outTexCoords).a, gamma);\n"
Romain Guy707b2f72010-10-11 16:34:59 -0700295};
Romain Guya938f562012-09-13 20:31:08 -0700296const char* gFS_Main_GradientShader_Modulate[6] = {
Romain Guy707b2f72010-10-11 16:34:59 -0700297 // Don't modulate
298 " fragColor = gradientColor;\n",
Romain Guya938f562012-09-13 20:31:08 -0700299 " fragColor = gradientColor;\n",
Romain Guy707b2f72010-10-11 16:34:59 -0700300 // Modulate
Chet Haase0990ffb2012-09-17 17:43:45 -0700301 " fragColor = gradientColor * color.a;\n",
302 " fragColor = gradientColor * color.a;\n",
Romain Guy707b2f72010-10-11 16:34:59 -0700303 // Modulate with alpha 8 texture
Romain Guya938f562012-09-13 20:31:08 -0700304 " fragColor = gradientColor * texture2D(baseSampler, outTexCoords).a;\n",
305 " fragColor = gradientColor * pow(texture2D(baseSampler, outTexCoords).a, gamma);\n"
Romain Guy707b2f72010-10-11 16:34:59 -0700306 };
Romain Guya938f562012-09-13 20:31:08 -0700307const char* gFS_Main_BitmapShader_Modulate[6] = {
Romain Guy707b2f72010-10-11 16:34:59 -0700308 // Don't modulate
309 " fragColor = bitmapColor;\n",
Romain Guya938f562012-09-13 20:31:08 -0700310 " fragColor = bitmapColor;\n",
Romain Guy707b2f72010-10-11 16:34:59 -0700311 // Modulate
Chet Haase0990ffb2012-09-17 17:43:45 -0700312 " fragColor = bitmapColor * color.a;\n",
313 " fragColor = bitmapColor * color.a;\n",
Romain Guy707b2f72010-10-11 16:34:59 -0700314 // Modulate with alpha 8 texture
Romain Guya938f562012-09-13 20:31:08 -0700315 " fragColor = bitmapColor * texture2D(baseSampler, outTexCoords).a;\n",
316 " fragColor = bitmapColor * pow(texture2D(baseSampler, outTexCoords).a, gamma);\n"
Romain Guy707b2f72010-10-11 16:34:59 -0700317 };
Romain Guyac670c02010-07-27 17:39:27 -0700318const char* gFS_Main_FragColor =
319 " gl_FragColor = fragColor;\n";
Romain Guyff316ec2013-02-13 18:39:43 -0800320const char* gFS_Main_FragColor_HasColors =
321 " gl_FragColor *= outColors;\n";
Romain Guya5aed0d2010-09-09 14:42:43 -0700322const char* gFS_Main_FragColor_Blend =
323 " gl_FragColor = blendFramebuffer(fragColor, gl_LastFragColor);\n";
Romain Guyf607bdc2010-09-10 19:20:06 -0700324const char* gFS_Main_FragColor_Blend_Swap =
325 " gl_FragColor = blendFramebuffer(gl_LastFragColor, fragColor);\n";
Derek Sollenberger76d3a1b2013-12-10 12:28:58 -0500326const char* gFS_Main_ApplyColorOp[3] = {
Romain Guyac670c02010-07-27 17:39:27 -0700327 // None
328 "",
329 // Matrix
Chris Craik73821c82014-09-16 17:32:13 -0700330 " fragColor.rgb /= (fragColor.a + 0.0019);\n" // un-premultiply
Romain Guyac670c02010-07-27 17:39:27 -0700331 " fragColor *= colorMatrix;\n"
Chris Craik73821c82014-09-16 17:32:13 -0700332 " fragColor += colorMatrixVector;\n"
333 " fragColor.rgb *= (fragColor.a + 0.0019);\n", // re-premultiply
Romain Guyac670c02010-07-27 17:39:27 -0700334 // PorterDuff
335 " fragColor = blendColors(colorBlend, fragColor);\n"
336};
Chris Craikdeeda3d2014-05-05 19:09:33 -0700337
338// Note: LTRB -> xyzw
339const char* gFS_Main_FragColor_HasRoundRectClip =
340 " mediump vec2 fragToLT = roundRectInnerRectLTRB.xy - roundRectPos;\n"
341 " mediump vec2 fragFromRB = roundRectPos - roundRectInnerRectLTRB.zw;\n"
Chris Craikf99f3202014-08-05 15:31:52 -0700342
343 // divide + multiply by 128 to avoid falling out of range in length() function
344 " mediump vec2 dist = max(max(fragToLT, fragFromRB), vec2(0.0, 0.0)) / 128.0;\n"
345 " mediump float linearDist = roundRectRadius - (length(dist) * 128.0);\n"
Chris Craikdeeda3d2014-05-05 19:09:33 -0700346 " gl_FragColor *= clamp(linearDist, 0.0, 1.0);\n";
347
Romain Guy3ff0bfd2013-02-25 14:15:37 -0800348const char* gFS_Main_DebugHighlight =
349 " gl_FragColor.rgb = vec3(0.0, gl_FragColor.a, 0.0);\n";
Romain Guy78dd96d2013-05-03 14:24:16 -0700350const char* gFS_Main_EmulateStencil =
351 " gl_FragColor.rgba = vec4(1.0 / 255.0, 1.0 / 255.0, 1.0 / 255.0, 1.0);\n"
352 " return;\n"
353 " /*\n";
354const char* gFS_Footer_EmulateStencil =
355 " */\n";
Romain Guyac670c02010-07-27 17:39:27 -0700356const char* gFS_Footer =
357 "}\n\n";
358
359///////////////////////////////////////////////////////////////////////////////
360// PorterDuff snippets
361///////////////////////////////////////////////////////////////////////////////
362
Romain Guy48daa542010-08-10 19:21:34 -0700363const char* gBlendOps[18] = {
Romain Guyac670c02010-07-27 17:39:27 -0700364 // Clear
365 "return vec4(0.0, 0.0, 0.0, 0.0);\n",
366 // Src
367 "return src;\n",
368 // Dst
369 "return dst;\n",
370 // SrcOver
Romain Guy06f96e22010-07-30 19:18:16 -0700371 "return src + dst * (1.0 - src.a);\n",
Romain Guyac670c02010-07-27 17:39:27 -0700372 // DstOver
Romain Guy06f96e22010-07-30 19:18:16 -0700373 "return dst + src * (1.0 - dst.a);\n",
Romain Guyac670c02010-07-27 17:39:27 -0700374 // SrcIn
Romain Guy06f96e22010-07-30 19:18:16 -0700375 "return src * dst.a;\n",
Romain Guyac670c02010-07-27 17:39:27 -0700376 // DstIn
Romain Guy06f96e22010-07-30 19:18:16 -0700377 "return dst * src.a;\n",
Romain Guyac670c02010-07-27 17:39:27 -0700378 // SrcOut
Romain Guy06f96e22010-07-30 19:18:16 -0700379 "return src * (1.0 - dst.a);\n",
Romain Guyac670c02010-07-27 17:39:27 -0700380 // DstOut
Romain Guy06f96e22010-07-30 19:18:16 -0700381 "return dst * (1.0 - src.a);\n",
Romain Guyac670c02010-07-27 17:39:27 -0700382 // SrcAtop
383 "return vec4(src.rgb * dst.a + (1.0 - src.a) * dst.rgb, dst.a);\n",
384 // DstAtop
385 "return vec4(dst.rgb * src.a + (1.0 - dst.a) * src.rgb, src.a);\n",
386 // Xor
Romain Guy48daa542010-08-10 19:21:34 -0700387 "return vec4(src.rgb * (1.0 - dst.a) + (1.0 - src.a) * dst.rgb, "
Romain Guyac670c02010-07-27 17:39:27 -0700388 "src.a + dst.a - 2.0 * src.a * dst.a);\n",
Romain Guy48daa542010-08-10 19:21:34 -0700389 // Add
390 "return min(src + dst, 1.0);\n",
391 // Multiply
392 "return src * dst;\n",
393 // Screen
394 "return src + dst - src * dst;\n",
395 // Overlay
396 "return clamp(vec4(mix("
397 "2.0 * src.rgb * dst.rgb + src.rgb * (1.0 - dst.a) + dst.rgb * (1.0 - src.a), "
398 "src.a * dst.a - 2.0 * (dst.a - dst.rgb) * (src.a - src.rgb) + src.rgb * (1.0 - dst.a) + dst.rgb * (1.0 - src.a), "
399 "step(dst.a, 2.0 * dst.rgb)), "
400 "src.a + dst.a - src.a * dst.a), 0.0, 1.0);\n",
401 // Darken
402 "return vec4(src.rgb * (1.0 - dst.a) + (1.0 - src.a) * dst.rgb + "
403 "min(src.rgb * dst.a, dst.rgb * src.a), src.a + dst.a - src.a * dst.a);\n",
404 // Lighten
405 "return vec4(src.rgb * (1.0 - dst.a) + (1.0 - src.a) * dst.rgb + "
406 "max(src.rgb * dst.a, dst.rgb * src.a), src.a + dst.a - src.a * dst.a);\n",
Romain Guyac670c02010-07-27 17:39:27 -0700407};
408
409///////////////////////////////////////////////////////////////////////////////
410// Constructors/destructors
411///////////////////////////////////////////////////////////////////////////////
412
Romain Guyb4880042013-04-05 11:17:55 -0700413ProgramCache::ProgramCache(): mHasES3(Extensions::getInstance().getMajorGlVersion() >= 3) {
Romain Guyac670c02010-07-27 17:39:27 -0700414}
415
416ProgramCache::~ProgramCache() {
417 clear();
418}
419
420///////////////////////////////////////////////////////////////////////////////
421// Cache management
422///////////////////////////////////////////////////////////////////////////////
423
424void ProgramCache::clear() {
Romain Guy67f27952010-12-07 20:09:23 -0800425 PROGRAM_LOGD("Clearing program cache");
426
Romain Guyac670c02010-07-27 17:39:27 -0700427 size_t count = mCache.size();
428 for (size_t i = 0; i < count; i++) {
429 delete mCache.valueAt(i);
430 }
431 mCache.clear();
432}
433
434Program* ProgramCache::get(const ProgramDescription& description) {
435 programid key = description.key();
Chris Craik096b8d92013-03-01 11:08:11 -0800436 if (key == (PROGRAM_KEY_TEXTURE | PROGRAM_KEY_A8_TEXTURE)) {
437 // program for A8, unmodulated, texture w/o shader (black text/path textures) is equivalent
438 // to standard texture program (bitmaps, patches). Consider them equivalent.
439 key = PROGRAM_KEY_TEXTURE;
440 }
441
Romain Guyac670c02010-07-27 17:39:27 -0700442 ssize_t index = mCache.indexOfKey(key);
443 Program* program = NULL;
444 if (index < 0) {
Romain Guyee916f12010-09-20 17:53:08 -0700445 description.log("Could not find program");
Romain Guyac670c02010-07-27 17:39:27 -0700446 program = generateProgram(description, key);
447 mCache.add(key, program);
448 } else {
449 program = mCache.valueAt(index);
450 }
451 return program;
452}
453
454///////////////////////////////////////////////////////////////////////////////
455// Program generation
456///////////////////////////////////////////////////////////////////////////////
457
458Program* ProgramCache::generateProgram(const ProgramDescription& description, programid key) {
459 String8 vertexShader = generateVertexShader(description);
460 String8 fragmentShader = generateFragmentShader(description);
461
Romain Guy42e1e0d2012-07-30 14:47:51 -0700462 return new Program(description, vertexShader.string(), fragmentShader.string());
463}
464
465static inline size_t gradientIndex(const ProgramDescription& description) {
466 return description.gradientType * 2 + description.isSimpleGradient;
Romain Guyac670c02010-07-27 17:39:27 -0700467}
468
469String8 ProgramCache::generateVertexShader(const ProgramDescription& description) {
470 // Add attributes
471 String8 shader(gVS_Header_Attributes);
Romain Guyaa6c24c2011-04-28 18:40:04 -0700472 if (description.hasTexture || description.hasExternalTexture) {
Romain Guyac670c02010-07-27 17:39:27 -0700473 shader.append(gVS_Header_Attributes_TexCoords);
474 }
Chris Craik91a8c7c2014-08-12 14:31:35 -0700475 if (description.hasVertexAlpha) {
476 shader.append(gVS_Header_Attributes_VertexAlphaParameters);
Chet Haase5b0200b2011-04-13 17:58:08 -0700477 }
Romain Guyff316ec2013-02-13 18:39:43 -0800478 if (description.hasColors) {
479 shader.append(gVS_Header_Attributes_Colors);
480 }
Romain Guyac670c02010-07-27 17:39:27 -0700481 // Uniforms
482 shader.append(gVS_Header_Uniforms);
Romain Guy8f0095c2011-05-02 17:24:22 -0700483 if (description.hasTextureTransform) {
Romain Guyaa6c24c2011-04-28 18:40:04 -0700484 shader.append(gVS_Header_Uniforms_TextureTransform);
485 }
Romain Guyac670c02010-07-27 17:39:27 -0700486 if (description.hasGradient) {
Romain Guyb4880042013-04-05 11:17:55 -0700487 shader.append(gVS_Header_Uniforms_HasGradient);
Romain Guyac670c02010-07-27 17:39:27 -0700488 }
Romain Guy889f8d12010-07-29 14:37:42 -0700489 if (description.hasBitmap) {
490 shader.append(gVS_Header_Uniforms_HasBitmap);
491 }
Chris Craikdeeda3d2014-05-05 19:09:33 -0700492 if (description.hasRoundRectClip) {
493 shader.append(gVS_Header_Uniforms_HasRoundRectClip);
494 }
Romain Guyac670c02010-07-27 17:39:27 -0700495 // Varyings
Romain Guyaa6c24c2011-04-28 18:40:04 -0700496 if (description.hasTexture || description.hasExternalTexture) {
Romain Guyac670c02010-07-27 17:39:27 -0700497 shader.append(gVS_Header_Varyings_HasTexture);
498 }
Chris Craik91a8c7c2014-08-12 14:31:35 -0700499 if (description.hasVertexAlpha) {
500 shader.append(gVS_Header_Varyings_HasVertexAlpha);
Chet Haase5b0200b2011-04-13 17:58:08 -0700501 }
Romain Guyff316ec2013-02-13 18:39:43 -0800502 if (description.hasColors) {
503 shader.append(gVS_Header_Varyings_HasColors);
504 }
Romain Guyac670c02010-07-27 17:39:27 -0700505 if (description.hasGradient) {
Romain Guy42e1e0d2012-07-30 14:47:51 -0700506 shader.append(gVS_Header_Varyings_HasGradient[gradientIndex(description)]);
Romain Guyac670c02010-07-27 17:39:27 -0700507 }
508 if (description.hasBitmap) {
Chris Craik6d29c8d2013-05-08 18:35:44 -0700509 shader.append(gVS_Header_Varyings_HasBitmap);
Romain Guyac670c02010-07-27 17:39:27 -0700510 }
Chris Craikdeeda3d2014-05-05 19:09:33 -0700511 if (description.hasRoundRectClip) {
512 shader.append(gVS_Header_Varyings_HasRoundRectClip);
513 }
Romain Guyac670c02010-07-27 17:39:27 -0700514
515 // Begin the shader
516 shader.append(gVS_Main); {
Romain Guy8f0095c2011-05-02 17:24:22 -0700517 if (description.hasTextureTransform) {
Romain Guyaa6c24c2011-04-28 18:40:04 -0700518 shader.append(gVS_Main_OutTransformedTexCoords);
Romain Guy8f0095c2011-05-02 17:24:22 -0700519 } else if (description.hasTexture || description.hasExternalTexture) {
520 shader.append(gVS_Main_OutTexCoords);
Romain Guyaa6c24c2011-04-28 18:40:04 -0700521 }
Chris Craik91a8c7c2014-08-12 14:31:35 -0700522 if (description.hasVertexAlpha) {
523 shader.append(gVS_Main_VertexAlpha);
Chet Haase5b0200b2011-04-13 17:58:08 -0700524 }
Romain Guyff316ec2013-02-13 18:39:43 -0800525 if (description.hasColors) {
526 shader.append(gVS_Main_OutColors);
527 }
Romain Guy889f8d12010-07-29 14:37:42 -0700528 if (description.hasBitmap) {
Chris Craik6d29c8d2013-05-08 18:35:44 -0700529 shader.append(gVS_Main_OutBitmapTexCoords);
Romain Guy889f8d12010-07-29 14:37:42 -0700530 }
Romain Guyac670c02010-07-27 17:39:27 -0700531 // Output transformed position
532 shader.append(gVS_Main_Position);
Chet Haasea1d12dd2012-09-21 14:50:14 -0700533 if (description.hasGradient) {
534 shader.append(gVS_Main_OutGradient[gradientIndex(description)]);
535 }
Chris Craikdeeda3d2014-05-05 19:09:33 -0700536 if (description.hasRoundRectClip) {
537 shader.append(gVS_Main_HasRoundRectClip);
538 }
Romain Guyac670c02010-07-27 17:39:27 -0700539 }
540 // End the shader
541 shader.append(gVS_Footer);
542
543 PROGRAM_LOGD("*** Generated vertex shader:\n\n%s", shader.string());
544
545 return shader;
546}
547
Romain Guya938f562012-09-13 20:31:08 -0700548static bool shaderOp(const ProgramDescription& description, String8& shader,
549 const int modulateOp, const char** snippets) {
550 int op = description.hasAlpha8Texture ? MODULATE_OP_MODULATE_A8 : modulateOp;
551 op = op * 2 + description.hasGammaCorrection;
552 shader.append(snippets[op]);
553 return description.hasAlpha8Texture;
554}
555
Romain Guyac670c02010-07-27 17:39:27 -0700556String8 ProgramCache::generateFragmentShader(const ProgramDescription& description) {
Romain Guya5aed0d2010-09-09 14:42:43 -0700557 String8 shader;
558
Romain Guy707b2f72010-10-11 16:34:59 -0700559 const bool blendFramebuffer = description.framebufferMode >= SkXfermode::kPlus_Mode;
Romain Guya5aed0d2010-09-09 14:42:43 -0700560 if (blendFramebuffer) {
561 shader.append(gFS_Header_Extension_FramebufferFetch);
562 }
Romain Guyaa6c24c2011-04-28 18:40:04 -0700563 if (description.hasExternalTexture) {
564 shader.append(gFS_Header_Extension_ExternalTexture);
565 }
Romain Guya5aed0d2010-09-09 14:42:43 -0700566
567 shader.append(gFS_Header);
Romain Guyac670c02010-07-27 17:39:27 -0700568
569 // Varyings
Romain Guyaa6c24c2011-04-28 18:40:04 -0700570 if (description.hasTexture || description.hasExternalTexture) {
Romain Guyac670c02010-07-27 17:39:27 -0700571 shader.append(gVS_Header_Varyings_HasTexture);
572 }
Chris Craik91a8c7c2014-08-12 14:31:35 -0700573 if (description.hasVertexAlpha) {
574 shader.append(gVS_Header_Varyings_HasVertexAlpha);
Chet Haase5b0200b2011-04-13 17:58:08 -0700575 }
Romain Guyff316ec2013-02-13 18:39:43 -0800576 if (description.hasColors) {
577 shader.append(gVS_Header_Varyings_HasColors);
578 }
Romain Guyac670c02010-07-27 17:39:27 -0700579 if (description.hasGradient) {
Romain Guy42e1e0d2012-07-30 14:47:51 -0700580 shader.append(gVS_Header_Varyings_HasGradient[gradientIndex(description)]);
Romain Guyac670c02010-07-27 17:39:27 -0700581 }
582 if (description.hasBitmap) {
Chris Craik6d29c8d2013-05-08 18:35:44 -0700583 shader.append(gVS_Header_Varyings_HasBitmap);
Romain Guyac670c02010-07-27 17:39:27 -0700584 }
Chris Craikdeeda3d2014-05-05 19:09:33 -0700585 if (description.hasRoundRectClip) {
586 shader.append(gVS_Header_Varyings_HasRoundRectClip);
587 }
Romain Guyac670c02010-07-27 17:39:27 -0700588
Romain Guyac670c02010-07-27 17:39:27 -0700589 // Uniforms
Romain Guy707b2f72010-10-11 16:34:59 -0700590 int modulateOp = MODULATE_OP_NO_MODULATE;
Romain Guyaa6c24c2011-04-28 18:40:04 -0700591 const bool singleColor = !description.hasTexture && !description.hasExternalTexture &&
Romain Guy707b2f72010-10-11 16:34:59 -0700592 !description.hasGradient && !description.hasBitmap;
593
594 if (description.modulate || singleColor) {
595 shader.append(gFS_Uniforms_Color);
596 if (!singleColor) modulateOp = MODULATE_OP_MODULATE;
597 }
Romain Guyac670c02010-07-27 17:39:27 -0700598 if (description.hasTexture) {
599 shader.append(gFS_Uniforms_TextureSampler);
Romain Guy8f0095c2011-05-02 17:24:22 -0700600 } else if (description.hasExternalTexture) {
Romain Guyaa6c24c2011-04-28 18:40:04 -0700601 shader.append(gFS_Uniforms_ExternalTextureSampler);
602 }
Romain Guyac670c02010-07-27 17:39:27 -0700603 if (description.hasGradient) {
Romain Guyb4880042013-04-05 11:17:55 -0700604 shader.appendFormat(gFS_Uniforms_GradientSampler[description.isSimpleGradient],
605 gFS_Uniforms_Dither);
Romain Guyac670c02010-07-27 17:39:27 -0700606 }
Romain Guy41210632012-07-16 17:04:24 -0700607 if (description.hasGammaCorrection) {
608 shader.append(gFS_Uniforms_Gamma);
609 }
Chris Craikdeeda3d2014-05-05 19:09:33 -0700610 if (description.hasRoundRectClip) {
611 shader.append(gFS_Uniforms_HasRoundRectClip);
612 }
Romain Guy707b2f72010-10-11 16:34:59 -0700613
614 // Optimization for common cases
Chris Craik91a8c7c2014-08-12 14:31:35 -0700615 if (!description.hasVertexAlpha
Chris Craikdeeda3d2014-05-05 19:09:33 -0700616 && !blendFramebuffer
617 && !description.hasColors
618 && description.colorOp == ProgramDescription::kColorNone
619 && !description.hasDebugHighlight
620 && !description.emulateStencil
621 && !description.hasRoundRectClip) {
Romain Guy707b2f72010-10-11 16:34:59 -0700622 bool fast = false;
623
624 const bool noShader = !description.hasGradient && !description.hasBitmap;
Romain Guyaa6c24c2011-04-28 18:40:04 -0700625 const bool singleTexture = (description.hasTexture || description.hasExternalTexture) &&
Romain Guy707b2f72010-10-11 16:34:59 -0700626 !description.hasAlpha8Texture && noShader;
627 const bool singleA8Texture = description.hasTexture &&
628 description.hasAlpha8Texture && noShader;
Romain Guyaa6c24c2011-04-28 18:40:04 -0700629 const bool singleGradient = !description.hasTexture && !description.hasExternalTexture &&
Romain Guy707b2f72010-10-11 16:34:59 -0700630 description.hasGradient && !description.hasBitmap &&
631 description.gradientType == ProgramDescription::kGradientLinear;
632
633 if (singleColor) {
634 shader.append(gFS_Fast_SingleColor);
635 fast = true;
636 } else if (singleTexture) {
637 if (!description.modulate) {
638 shader.append(gFS_Fast_SingleTexture);
639 } else {
640 shader.append(gFS_Fast_SingleModulateTexture);
641 }
642 fast = true;
643 } else if (singleA8Texture) {
644 if (!description.modulate) {
Romain Guy41210632012-07-16 17:04:24 -0700645 if (description.hasGammaCorrection) {
646 shader.append(gFS_Fast_SingleA8Texture_ApplyGamma);
647 } else {
648 shader.append(gFS_Fast_SingleA8Texture);
649 }
Romain Guy707b2f72010-10-11 16:34:59 -0700650 } else {
Romain Guy41210632012-07-16 17:04:24 -0700651 if (description.hasGammaCorrection) {
652 shader.append(gFS_Fast_SingleModulateA8Texture_ApplyGamma);
653 } else {
654 shader.append(gFS_Fast_SingleModulateA8Texture);
655 }
Romain Guy707b2f72010-10-11 16:34:59 -0700656 }
657 fast = true;
658 } else if (singleGradient) {
659 if (!description.modulate) {
Romain Guyb4880042013-04-05 11:17:55 -0700660 shader.appendFormat(gFS_Fast_SingleGradient[description.isSimpleGradient],
661 gFS_Main_Dither[mHasES3]);
Romain Guy707b2f72010-10-11 16:34:59 -0700662 } else {
Romain Guyb4880042013-04-05 11:17:55 -0700663 shader.appendFormat(gFS_Fast_SingleModulateGradient[description.isSimpleGradient],
664 gFS_Main_Dither[mHasES3]);
Romain Guy707b2f72010-10-11 16:34:59 -0700665 }
666 fast = true;
667 }
668
669 if (fast) {
Romain Guyc15008e2010-11-10 11:59:15 -0800670#if DEBUG_PROGRAMS
Romain Guy707b2f72010-10-11 16:34:59 -0700671 PROGRAM_LOGD("*** Fast case:\n");
672 PROGRAM_LOGD("*** Generated fragment shader:\n\n");
673 printLongString(shader);
Romain Guyc15008e2010-11-10 11:59:15 -0800674#endif
Romain Guy707b2f72010-10-11 16:34:59 -0700675
676 return shader;
677 }
678 }
679
Romain Guyac670c02010-07-27 17:39:27 -0700680 if (description.hasBitmap) {
681 shader.append(gFS_Uniforms_BitmapSampler);
682 }
683 shader.append(gFS_Uniforms_ColorOp[description.colorOp]);
684
685 // Generate required functions
686 if (description.hasGradient && description.hasBitmap) {
Romain Guy48daa542010-08-10 19:21:34 -0700687 generateBlend(shader, "blendShaders", description.shadersMode);
Romain Guyac670c02010-07-27 17:39:27 -0700688 }
689 if (description.colorOp == ProgramDescription::kColorBlend) {
Romain Guy48daa542010-08-10 19:21:34 -0700690 generateBlend(shader, "blendColors", description.colorMode);
Romain Guyac670c02010-07-27 17:39:27 -0700691 }
Romain Guya5aed0d2010-09-09 14:42:43 -0700692 if (blendFramebuffer) {
693 generateBlend(shader, "blendFramebuffer", description.framebufferMode);
694 }
Romain Guy889f8d12010-07-29 14:37:42 -0700695 if (description.isBitmapNpot) {
696 generateTextureWrap(shader, description.bitmapWrapS, description.bitmapWrapT);
697 }
Romain Guyac670c02010-07-27 17:39:27 -0700698
699 // Begin the shader
700 shader.append(gFS_Main); {
Romain Guy78dd96d2013-05-03 14:24:16 -0700701 if (description.emulateStencil) {
702 shader.append(gFS_Main_EmulateStencil);
703 }
Romain Guyac670c02010-07-27 17:39:27 -0700704 // Stores the result in fragColor directly
Romain Guyaa6c24c2011-04-28 18:40:04 -0700705 if (description.hasTexture || description.hasExternalTexture) {
Romain Guyac670c02010-07-27 17:39:27 -0700706 if (description.hasAlpha8Texture) {
Romain Guy707b2f72010-10-11 16:34:59 -0700707 if (!description.hasGradient && !description.hasBitmap) {
Romain Guya938f562012-09-13 20:31:08 -0700708 shader.append(gFS_Main_FetchA8Texture[modulateOp * 2 +
709 description.hasGammaCorrection]);
Romain Guy707b2f72010-10-11 16:34:59 -0700710 }
Romain Guyac670c02010-07-27 17:39:27 -0700711 } else {
Romain Guy707b2f72010-10-11 16:34:59 -0700712 shader.append(gFS_Main_FetchTexture[modulateOp]);
Romain Guyac670c02010-07-27 17:39:27 -0700713 }
714 } else {
Romain Guya938f562012-09-13 20:31:08 -0700715 if (!description.hasGradient && !description.hasBitmap) {
Romain Guy707b2f72010-10-11 16:34:59 -0700716 shader.append(gFS_Main_FetchColor);
717 }
Romain Guyac670c02010-07-27 17:39:27 -0700718 }
719 if (description.hasGradient) {
Romain Guy42e1e0d2012-07-30 14:47:51 -0700720 shader.append(gFS_Main_FetchGradient[gradientIndex(description)]);
Romain Guyb4880042013-04-05 11:17:55 -0700721 shader.appendFormat(gFS_Main_AddDitherToGradient, gFS_Main_Dither[mHasES3]);
Romain Guyac670c02010-07-27 17:39:27 -0700722 }
723 if (description.hasBitmap) {
Romain Guy889f8d12010-07-29 14:37:42 -0700724 if (!description.isBitmapNpot) {
725 shader.append(gFS_Main_FetchBitmap);
726 } else {
727 shader.append(gFS_Main_FetchBitmapNpot);
728 }
Romain Guyac670c02010-07-27 17:39:27 -0700729 }
Romain Guy740bf2b2011-04-26 15:33:10 -0700730 bool applyModulate = false;
Romain Guyac670c02010-07-27 17:39:27 -0700731 // Case when we have two shaders set
732 if (description.hasGradient && description.hasBitmap) {
733 if (description.isBitmapFirst) {
734 shader.append(gFS_Main_BlendShadersBG);
735 } else {
736 shader.append(gFS_Main_BlendShadersGB);
737 }
Romain Guya938f562012-09-13 20:31:08 -0700738 applyModulate = shaderOp(description, shader, modulateOp,
739 gFS_Main_BlendShaders_Modulate);
Romain Guy889f8d12010-07-29 14:37:42 -0700740 } else {
741 if (description.hasGradient) {
Romain Guya938f562012-09-13 20:31:08 -0700742 applyModulate = shaderOp(description, shader, modulateOp,
743 gFS_Main_GradientShader_Modulate);
Romain Guy889f8d12010-07-29 14:37:42 -0700744 } else if (description.hasBitmap) {
Romain Guya938f562012-09-13 20:31:08 -0700745 applyModulate = shaderOp(description, shader, modulateOp,
746 gFS_Main_BitmapShader_Modulate);
Romain Guy889f8d12010-07-29 14:37:42 -0700747 }
Romain Guyac670c02010-07-27 17:39:27 -0700748 }
Romain Guya938f562012-09-13 20:31:08 -0700749
Romain Guy740bf2b2011-04-26 15:33:10 -0700750 if (description.modulate && applyModulate) {
Romain Guya938f562012-09-13 20:31:08 -0700751 shader.append(gFS_Main_ModulateColor);
Romain Guy740bf2b2011-04-26 15:33:10 -0700752 }
Romain Guya938f562012-09-13 20:31:08 -0700753
Romain Guyac670c02010-07-27 17:39:27 -0700754 // Apply the color op if needed
755 shader.append(gFS_Main_ApplyColorOp[description.colorOp]);
Chris Craik9f44a132012-09-13 18:34:55 -0700756
Chris Craik91a8c7c2014-08-12 14:31:35 -0700757 if (description.hasVertexAlpha) {
758 if (description.useShadowAlphaInterp) {
759 shader.append(gFS_Main_ApplyVertexAlphaShadowInterp);
Chris Craikbf759452014-08-11 16:00:44 -0700760 } else {
Chris Craik91a8c7c2014-08-12 14:31:35 -0700761 shader.append(gFS_Main_ApplyVertexAlphaLinearInterp);
Chris Craikbf759452014-08-11 16:00:44 -0700762 }
Chris Craik9f44a132012-09-13 18:34:55 -0700763 }
764
Romain Guyac670c02010-07-27 17:39:27 -0700765 // Output the fragment
Romain Guya5aed0d2010-09-09 14:42:43 -0700766 if (!blendFramebuffer) {
767 shader.append(gFS_Main_FragColor);
768 } else {
Romain Guyf607bdc2010-09-10 19:20:06 -0700769 shader.append(!description.swapSrcDst ?
770 gFS_Main_FragColor_Blend : gFS_Main_FragColor_Blend_Swap);
Romain Guya5aed0d2010-09-09 14:42:43 -0700771 }
Romain Guyff316ec2013-02-13 18:39:43 -0800772 if (description.hasColors) {
773 shader.append(gFS_Main_FragColor_HasColors);
774 }
Chris Craikdeeda3d2014-05-05 19:09:33 -0700775 if (description.hasRoundRectClip) {
776 shader.append(gFS_Main_FragColor_HasRoundRectClip);
777 }
Romain Guy3ff0bfd2013-02-25 14:15:37 -0800778 if (description.hasDebugHighlight) {
779 shader.append(gFS_Main_DebugHighlight);
780 }
Romain Guyac670c02010-07-27 17:39:27 -0700781 }
Romain Guy78dd96d2013-05-03 14:24:16 -0700782 if (description.emulateStencil) {
783 shader.append(gFS_Footer_EmulateStencil);
784 }
Romain Guyac670c02010-07-27 17:39:27 -0700785 // End the shader
786 shader.append(gFS_Footer);
787
Romain Guyc15008e2010-11-10 11:59:15 -0800788#if DEBUG_PROGRAMS
Romain Guydb1938e2010-08-02 18:50:22 -0700789 PROGRAM_LOGD("*** Generated fragment shader:\n\n");
790 printLongString(shader);
Romain Guyc15008e2010-11-10 11:59:15 -0800791#endif
Romain Guydb1938e2010-08-02 18:50:22 -0700792
Romain Guyac670c02010-07-27 17:39:27 -0700793 return shader;
794}
795
Romain Guy48daa542010-08-10 19:21:34 -0700796void ProgramCache::generateBlend(String8& shader, const char* name, SkXfermode::Mode mode) {
Romain Guyac670c02010-07-27 17:39:27 -0700797 shader.append("\nvec4 ");
798 shader.append(name);
799 shader.append("(vec4 src, vec4 dst) {\n");
800 shader.append(" ");
Romain Guy48daa542010-08-10 19:21:34 -0700801 shader.append(gBlendOps[mode]);
Romain Guyac670c02010-07-27 17:39:27 -0700802 shader.append("}\n");
803}
804
Romain Guy889f8d12010-07-29 14:37:42 -0700805void ProgramCache::generateTextureWrap(String8& shader, GLenum wrapS, GLenum wrapT) {
Romain Guy63553472012-07-18 20:04:14 -0700806 shader.append("\nhighp vec2 wrap(highp vec2 texCoords) {\n");
Romain Guy889f8d12010-07-29 14:37:42 -0700807 if (wrapS == GL_MIRRORED_REPEAT) {
Romain Guy63553472012-07-18 20:04:14 -0700808 shader.append(" highp float xMod2 = mod(texCoords.x, 2.0);\n");
Romain Guy889f8d12010-07-29 14:37:42 -0700809 shader.append(" if (xMod2 > 1.0) xMod2 = 2.0 - xMod2;\n");
810 }
811 if (wrapT == GL_MIRRORED_REPEAT) {
Romain Guy63553472012-07-18 20:04:14 -0700812 shader.append(" highp float yMod2 = mod(texCoords.y, 2.0);\n");
Romain Guy889f8d12010-07-29 14:37:42 -0700813 shader.append(" if (yMod2 > 1.0) yMod2 = 2.0 - yMod2;\n");
814 }
815 shader.append(" return vec2(");
816 switch (wrapS) {
Romain Guy61c8c9c2010-08-09 20:48:09 -0700817 case GL_CLAMP_TO_EDGE:
818 shader.append("texCoords.x");
819 break;
Romain Guy889f8d12010-07-29 14:37:42 -0700820 case GL_REPEAT:
821 shader.append("mod(texCoords.x, 1.0)");
822 break;
823 case GL_MIRRORED_REPEAT:
824 shader.append("xMod2");
825 break;
826 }
827 shader.append(", ");
828 switch (wrapT) {
Romain Guy61c8c9c2010-08-09 20:48:09 -0700829 case GL_CLAMP_TO_EDGE:
830 shader.append("texCoords.y");
831 break;
Romain Guy889f8d12010-07-29 14:37:42 -0700832 case GL_REPEAT:
833 shader.append("mod(texCoords.y, 1.0)");
834 break;
835 case GL_MIRRORED_REPEAT:
836 shader.append("yMod2");
837 break;
838 }
839 shader.append(");\n");
840 shader.append("}\n");
841}
842
Romain Guydb1938e2010-08-02 18:50:22 -0700843void ProgramCache::printLongString(const String8& shader) const {
844 ssize_t index = 0;
845 ssize_t lastIndex = 0;
846 const char* str = shader.string();
847 while ((index = shader.find("\n", index)) > -1) {
848 String8 line(str, index - lastIndex);
849 if (line.length() == 0) line.append("\n");
850 PROGRAM_LOGD("%s", line.string());
851 index++;
852 str += (index - lastIndex);
853 lastIndex = index;
854 }
855}
856
Romain Guyac670c02010-07-27 17:39:27 -0700857}; // namespace uirenderer
858}; // namespace android