This file is indexed.

/usr/share/kde4/apps/kwin/blinking-startup-fragment.glsl is in kde-window-manager-common 4:4.11.8-0ubuntu6.

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
uniform sampler2D sampler;
uniform vec4 u_color;

varying vec2 varyingTexCoords;

void main()
{
    vec4 tex = texture2D(sampler, varyingTexCoords);
    if (tex.a != 1.0) {
        tex = u_color;
    }
    gl_FragColor = tex;
}