1#version 150
2
3in vec4 BaseColor;
4
5vec4 foo()
6{
7    return BaseColor;
8}
9
10void main()
11{
12    gl_FragColor = foo();
13}
14