axmol/core/renderer/shaders/positionTexture.frag

16 lines
255 B
GLSL
Raw Normal View History

2023-07-19 18:35:05 +08:00
#version 310 es
precision highp float;
precision highp int;
2019-11-23 20:27:39 +08:00
2023-07-19 18:35:05 +08:00
layout(location = 0) in vec2 v_texCoord;
2023-07-19 18:35:05 +08:00
layout(binding = 0) uniform sampler2D u_tex0;
layout(location = 0) out vec4 FragColor;
2019-11-23 20:27:39 +08:00
void main()
{
2023-07-19 18:35:05 +08:00
FragColor = texture(u_tex0, v_texCoord);
2019-11-23 20:27:39 +08:00
}