This file is indexed.

/usr/share/gource/shaders/bloom.vert is in gource 0.38-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
9
varying vec3 pos;

void main()
{
    pos = gl_Vertex.xyz - gl_MultiTexCoord0.yzw;
    gl_TexCoord[0] = gl_MultiTexCoord0;
    gl_FrontColor = gl_Color;
    gl_Position = ftransform();
}