/usr/share/psychtoolbox-3/PsychCal/CalToggleBitsPlusPlus.m is in psychtoolbox-3-common 3.0.11.20131230.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 | function CalToggleBitsPlusPlus(enableBitsPP)
% CalToggleBitsPlusPlus(enableBitsPP)
% This function toggles the use of Bits++ in the calibration functions.
% Currently, this is only a temporary way of doing things until the Bits++
% code built into Screen is tested more.
%
% 'enableBitsPP' is a true/false value that turns on/off Bits++
% functionality in the Calibrate functions.
global g_usebitspp;
if nargin ~= 1
error('Usage: CalToggleBitsPlusPlus(enableBitsPP)');
end
g_usebitspp = enableBitsPP;
|