This file is indexed.

/usr/share/movit/header.comp is in libmovit8 1.6.1-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
10
11
12
13
14
15
16
17
18
#version 150
#extension GL_ARB_compute_shader : enable
#extension GL_ARB_shader_image_load_store : enable
#extension GL_ARB_shader_image_size : enable

// The texture the compute shader is writing to.
uniform restrict writeonly image2D tex_outbuf;

// Defined in footer.comp.
vec4 tex2D(sampler2D s, vec2 coord);
void cs_output(uvec2 coord, vec4 val);
void cs_output(ivec2 coord, vec4 val);

// Used if there are any steps used to postprocess compute shader output.
// Initialized due to https://bugs.freedesktop.org/show_bug.cgi?id=103895.
vec4 CS_OUTPUT_VAL = vec4(0.0);

#define OUTPUT(tc, val) cs_output(tc, val)