This file is indexed.

/usr/share/kde4/apps/kwin/shaders/1.40/cube-reflection.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
#version 140
uniform float u_alpha;

in vec2 varyingTexCoords;

out vec4 fragColor;

void main()
{
    fragColor = vec4(0.0, 0.0, 0.0, u_alpha*varyingTexCoords.s);
}