Skip to content

Commit

Permalink
Merge pull request #3678 from mdcutone/release-rift-hotfix
Browse files Browse the repository at this point in the history
BF: Fix crash whe starting the Rift
  • Loading branch information
peircej committed Mar 17, 2021
2 parents 588632e + 428f62f commit 27234f1
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions psychopy/visual/rift.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,12 +439,10 @@ def __init__(
kwargs['waitBlanking'] = False

# force checkTiming and quad-buffer stereo off
kwargs["checkTiming"] = False
kwargs["stereo"] = False
kwargs['useFBO'] = True
kwargs['multiSample'] = False
kwargs['bits'] = False
# 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

# do not allow 'endFrame' to be called until _startOfFlip is called
self._allowHmdRendering = False
Expand Down

0 comments on commit 27234f1

Please sign in to comment.