1#version 120
2
3varying vec2 UV;
4uniform sampler2D image_texture;
5
6void main()
7{
8    gl_FragColor = texture2D(image_texture, UV);
9}