2023-09-02 19:56:50 +08:00
|
|
|
#version 310 es
|
|
|
|
precision highp float;
|
|
|
|
precision highp int;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2023-09-02 19:56:50 +08:00
|
|
|
layout(location = COLOR0) in vec4 v_color;
|
|
|
|
layout(location = TEXCOORD0) in vec2 v_texCoord;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2023-09-02 19:56:50 +08:00
|
|
|
layout(binding = 0) uniform sampler2D u_tex0;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2023-09-02 19:56:50 +08:00
|
|
|
layout(std140) uniform fs_ub {
|
|
|
|
vec4 u_effectColor;
|
|
|
|
vec4 u_textColor;
|
|
|
|
int u_effectType;
|
|
|
|
};
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2023-09-02 19:56:50 +08:00
|
|
|
layout(location = SV_Target0) out vec4 FragColor;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
2023-09-02 19:56:50 +08:00
|
|
|
vec4 texColor = texture(u_tex0, v_texCoord);
|
2019-11-23 20:27:39 +08:00
|
|
|
// fontAlpha == 1 means the area of solid text (without edge)
|
|
|
|
// fontAlpha == 0 means the area outside text, including outline area
|
|
|
|
// fontAlpha == (0, 1) means the edge of text
|
2023-09-02 19:56:50 +08:00
|
|
|
#ifndef GLES2
|
|
|
|
float fontAlpha = texColor.y;
|
|
|
|
#else
|
|
|
|
float fontAlpha = texColor.w;
|
|
|
|
#endif
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
// outlineAlpha == 1 means the area of 'solid text' and 'solid outline'
|
|
|
|
// outlineAlpha == 0 means the transparent area outside text and outline
|
|
|
|
// outlineAlpha == (0, 1) means the edge of outline
|
2023-09-02 19:56:50 +08:00
|
|
|
float outlineAlpha = texColor.x;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
if (u_effectType == 0) // draw text
|
|
|
|
{
|
2023-09-02 19:56:50 +08:00
|
|
|
FragColor = v_color * vec4(u_textColor.rgb, u_textColor.a * fontAlpha);
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
else if (u_effectType == 1) // draw outline
|
|
|
|
{
|
|
|
|
// multipy (1.0 - fontAlpha) to make the inner edge of outline smoother and make the text itself transparent.
|
2023-09-02 19:56:50 +08:00
|
|
|
FragColor = v_color * vec4(u_effectColor.rgb, u_effectColor.a * outlineAlpha * (1.0 - fontAlpha));
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
else // draw shadow
|
|
|
|
{
|
2023-09-02 19:56:50 +08:00
|
|
|
FragColor = v_color * vec4(u_effectColor.rgb, u_effectColor.a * outlineAlpha);
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
}
|