You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The above line leaves dangling references in python 3.8 which causes OpenAL to crash.
To reproduce:
for iteration in range(2):
if not openal.oalGetInit():
openal.oalInit()
source1 = openal.oalOpen(path_to_a_sound)
source2 = openal.oalOpen(path_to_a_sound)
source1.play()
source2.play()
openal.oalQuit()
print(len(openal._buffers)) # This will have length 1.
The above code will crash on iteration 2 with INVALID_OPERATION.
The text was updated successfully, but these errors were encountered:
PyOpenAL/openal/__init__.py
Line 815 in b49212c
The above line leaves dangling references in python 3.8 which causes OpenAL to crash.
To reproduce:
The above code will crash on iteration 2 with INVALID_OPERATION.
The text was updated successfully, but these errors were encountered: