]> git.sesse.net Git - movit/blob - texture1d.150.frag
Fix a crash in a unit test if nb_NO.UTF-8 is not available.
[movit] / texture1d.150.frag
1 #version 150
2
3 uniform sampler2D tex;
4 in vec2 tc;
5
6 out vec4 FragColor;
7
8 void main()
9 {
10         FragColor = texture(tex, tc);  // Second component is irrelevant.
11 }