This file is indexed.

/usr/share/pymol/data/shaders/indicator.fs is in pymol-data 1.8.4.0+dfsg-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
#ifdef PYMOL_IOS
precision mediump float;
#else
#version 120
#endif

uniform sampler2D textureMap;
uniform vec2 textureLookup ;
uniform vec2 textureScale ;

#include ANAGLYPH_HEADER

void main()
{
  vec4 fColor = texture2D(textureMap, textureLookup + gl_PointCoord * textureScale);
#include ANAGLYPH_BODY
}