1#version 100
2
3mediump vec4 calculateColor();
4
5void main()
6{
7    gl_FragColor = calculateColor();
8}
9