2023-07-20 17:55:16 +08:00
|
|
|
#version 310 es
|
|
|
|
|
|
|
|
precision mediump float;
|
|
|
|
|
2023-07-25 19:06:12 +08:00
|
|
|
layout(location = COLOR0) in vec4 v_color;
|
|
|
|
layout(location = TEXCOORD0) in vec2 v_texCoord;
|
2023-07-20 17:55:16 +08:00
|
|
|
|
|
|
|
layout(binding = 0) uniform sampler2D u_tex0;
|
|
|
|
|
2023-07-25 19:06:12 +08:00
|
|
|
layout(location = SV_Target0) out vec4 FragColor;
|
2023-07-20 17:55:16 +08:00
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
float x = texture(u_tex0, v_texCoord).x;
|
2023-07-25 19:06:12 +08:00
|
|
|
FragColor = vec4(v_color.rgb, v_color.a * x);
|
2023-07-20 17:55:16 +08:00
|
|
|
}
|