Skip to content

Commit

Permalink
BF: Fixed bits argument being specified which causes the Rift backe…
Browse files Browse the repository at this point in the history
…nd to fail.
  • Loading branch information
mdcutone committed Mar 12, 2021
1 parent 1cbc2af commit 428f62f
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 428f62f

Please sign in to comment.