This file is indexed.

/usr/share/oce-0.18/src/Shaders/RaytraceBase.vs is in liboce-visualization11 0.18.2-2build1.

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
in vec4 occVertex;

//! Normalized pixel coordinates.
out vec2 vPixel;

void main (void)
{
  vPixel = vec2 ((occVertex.x + 1.f) * 0.5f,
                 (occVertex.y + 1.f) * 0.5f);

  gl_Position = occVertex;
}