axmol/core/renderer/shaders/ui_Gray.frag

21 lines
419 B
GLSL
Raw Normal View History

#version 310 es
precision highp float;
precision highp int;
2019-11-23 20:27:39 +08:00
layout(location = 0) in vec4 v_fragmentColor;
layout(location = 1) in vec2 v_texCoord;
2019-11-23 20:27:39 +08:00
layout(binding = 0) uniform sampler2D u_tex0;
2019-11-23 20:27:39 +08:00
layout(location = 0) out vec4 FragColor;
2019-11-23 20:27:39 +08:00
void main(void)
{
vec4 c = texture(u_tex0, v_texCoord);
2019-11-23 20:27:39 +08:00
c = v_fragmentColor * c;
FragColor.xyz = vec3(0.2126*c.r + 0.7152*c.g + 0.0722*c.b);
FragColor.w = c.w;
2019-11-23 20:27:39 +08:00
}