1#version 120
2
3varying vec3 fragment_color;
4
5void main()
6{
7    gl_FragColor = vec4(fragment_color, 1);
8}