This file is indexed.

/usr/share/gem/examples/10.glsl/game.vert is in gem-doc 1:0.93.3-7.

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
 9
10
11
12
13
// Cyrille Henry 2007

uniform float K1;
uniform float K2;
uniform float K3;

uniform vec2 offset;

void main()
{	
	gl_TexCoord[0] = gl_MultiTexCoord0;
	gl_Position = ftransform();		
}