1#version 140
2
3uniform sampler2D s2D;
4centroid vec2 centTexCoord;
5
6void main()
7{
8    gl_FragColor = texture2D(s2D, centTexCoord);
9}
10
11