This file is indexed.

/usr/share/psychtoolbox-3/PsychGLImageProcessing/kPsychNeedOtherStreamInput.m is in psychtoolbox-3-common 3.0.14.20170103+git6-g605ff5c.dfsg1-1build1.

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
function rval = kPsychNeedOtherStreamInput
% rval = kPsychNeedOtherStreamInput
%
% Return a flag that you can pass to the 'imagingmode' parameter of
% Screen('OpenWindow') in order to allow shaders in stereo configurations
% to access both eyes input images.
%
% Normally only the stereo compositing chain of the pipeline can access
% both image buffers for left-eye and right-eye view. This flag also enables
% access during the per-view image processing chain, and during the per
% view output formatting/post-processing chain. Logic for these chains is
% that the primary image channel is bound to texture unit 0 as usual, but
% additionally now the other channel (right channel for left view processing,
% and left channel for right view processing) is bound to texture unit 1.
%
% Caution: The secondary channel is bound with nearest neighbour filtering.
% Caution: The shaders in one of these chains will only have access to the
% secondary channels initial input image for their chains (inputimageFBO in case
% of the image processing chain, preConversionFBO in case of output conversion
% / final formatting). Multi-Pass chains have to take this into account that the
% secondary channel won't update during multi-stage processing, but stays static.
%
rval = 2^17;
return