This file is indexed.

/usr/share/psychtoolbox-3/PsychOpenGL/PsychGLSLShaders/KinectShaderStandard.vert.txt is in psychtoolbox-3-common 3.0.11.20140816.dfsg1-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
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
 * File: KinectShader.vert.txt
 * Shader for conversion of Microsoft Kinect raw sensor data to
 * 3D vertex and texture coordinate stream for realtime rendering.
 *
 * This implements mapping of raw depths sensor values to (x,y,z)
 * vertex positions, plus standard modelview+projection transforms
 * of the reconstructed vertex.
 *
 * It also implements generation of proper 2D texture coordinates
 * for mapping the image of the color camera onto the 3D point cloud/
 * mesh, plus standard texture matrix transforms on the reconstructed
 * texture coordinates.
 *
 * This vertex shader is setup and used by PsychKinect.m.
 *
 * (c) 2010 by Mario Kleiner, licensed under MIT license.
 *		 
 */

uniform vec4 depth_intrinsic;
uniform vec4 rgb_intrinsic;
uniform vec3 T;
uniform mat3 R;

void main()
{
    vec4 v, t;
    vec3 tm;

    /* Get (x,y) position in depth sensor matrix and z as pixels depth: */
    vec3 inpos = gl_Vertex.xyz;

    /* Map back to 3D Vertex in depth cams reference frame: */
    v.x = (inpos.x - depth_intrinsic.z) * inpos.z / depth_intrinsic.x;
    v.y = (inpos.y - depth_intrinsic.w) * inpos.z / depth_intrinsic.y;
    v.z = inpos.z;
    v.w = 1.0;

    /* Map to color cameras frame of reference: */
    tm = (R * v.xyz) + T;

    /* Map to (x,y) texture coordinates in color cameras sensor plane: */
    t.x = ( tm.x * rgb_intrinsic.x / tm.z ) + rgb_intrinsic.z;
    t.y = ( tm.y * rgb_intrinsic.y / tm.z ) + rgb_intrinsic.w;
    t.z = 0.0;
    t.w = 1.0;

    /* Apply standard geometric transformations to 3D vertex: */
    gl_Position = gl_ModelViewProjectionMatrix * v;

    /* Apply standard texture matrix transformation to texcoords: */
    gl_TexCoord[0] = gl_TextureMatrix[0] * t;
}