axmol/core/renderer/shaders/positionTexture.frag

16 lines
272 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 = TEXCOORD0) in vec2 v_texCoord;
layout(binding = 0) uniform sampler2D u_tex0;
layout(location = SV_Target0) out vec4 FragColor;
2019-11-23 20:27:39 +08:00
void main()
{
FragColor = texture(u_tex0, v_texCoord);
2019-11-23 20:27:39 +08:00
}