We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
bits
1 parent 1cbc2af commit 428f62fCopy full SHA for 428f62f
psychopy/visual/rift.py
@@ -439,12 +439,10 @@ def __init__(
439
kwargs['waitBlanking'] = False
440
441
# force checkTiming and quad-buffer stereo off
442
- kwargs["checkTiming"] = False
443
- kwargs["stereo"] = False
444
- kwargs['useFBO'] = True
445
- kwargs['multiSample'] = False
446
- kwargs['bits'] = False
447
- # kwargs['waitBlanking'] = False
+ kwargs["checkTiming"] = False # not used here for now
+ kwargs["stereo"] = False # false, using our own stuff for stereo
+ kwargs['useFBO'] = True # true, but uses it's ow FBO logic
+ kwargs['multiSample'] = False # not for the back buffer of the widow
448
449
# do not allow 'endFrame' to be called until _startOfFlip is called
450
self._allowHmdRendering = False
0 commit comments