Disable threaded buffer swap to see if it causes "invalid context"

This commit is contained in:
David Vierra 2017-06-29 11:13:19 -10:00
parent 12004846e1
commit 3ac859d286

View File

@ -70,7 +70,7 @@ def anglesToVector(yaw, pitch):
dz = math.cos(math.radians(yaw)) * math.cos(math.radians(pitch))
return Vector(*map(nanzero, [dx, dy, dz]))
THREADED_BUFFER_SWAP = True
THREADED_BUFFER_SWAP = False
class BufferSwapper(QtCore.QObject):
def __init__(self, view):