Skip to content

Commit

Permalink
BitsPlusPlus: Handle Apple macOS Retina displays properly for imaging…
Browse files Browse the repository at this point in the history
… pipeline validation runs.

Obviously meaningless for normal use with standard DPI CRS and VPixx devices, but needed
for imaging pipeline validation on Apple Retina machines.
  • Loading branch information
kleinerm committed Jun 3, 2024
1 parent e32fc01 commit 9eecb5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Psychtoolbox/PsychGLImageProcessing/BitsPlusPlus.m
Original file line number Diff line number Diff line change
Expand Up @@ -1287,7 +1287,7 @@
end

% Imagingmode must at least include the following:
imagingmode = mor(imagingmode, kPsychNeedFastBackingStore, kPsychNeedOutputConversion, ourspec);
imagingmode = mor(imagingmode, kPsychNeedFastBackingStore, kPsychNeedOutputConversion, kPsychNeedRetinaResolution, ourspec);

if strcmpi(cmd, 'OpenWindowColor++')
if isempty(colorConversionMode)
Expand Down

0 comments on commit 9eecb5b

Please sign in to comment.