blob: 5fce547a902f71f47a7d25dc43dc80c963504fda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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;
}
|