blob: 2cd3c607a663da48af1849244a54f756b4f12b9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#version 300 es
precision highp float;
uniform sampler2D texture_data;
in vec2 vertex_texcoord;
out vec4 frag_color;
void main()
{
vec4 texel = texture(texture_data, vertex_texcoord);
frag_color = texel;
}
|