1 2 3 4 5 6 7
uniform sampler2D texture_data; void main() { vec4 texel = texture(texture_data, vertex_texcoord); frag_color = texel; }