This file is indexed.

/usr/share/games/pink-pony/GLSL/water_fallback.vert is in pink-pony-data 1.4.1-2.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
8
uniform vec3 water_color;
varying vec4 color;

void main (void)
{   
    gl_Position = ftransform();
    color = vec4(water_color, gl_Color.a);
}