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
In the official example openal does not check for errors before creating the context (OpenAL Programmers Guide - see page 10.
The alGetError function of openal-soft seems to set error to AL_INVALID_OPERATION if no context was selected. OpenAL Soft is the standard openal implementation in many linux distros, this explains why the error does only appear on my system.
Catching up on issues - apologies for the delay! I've known about this for a while. It doesn't affect the operation of the sound, so it hasn't been a priority to fix. It is on my list to revisit though.
Describe the bug
I tried to use the new audio plugin (openal). On my system i get this error:
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Audio plugin should not throw this error
Screenshots
Desktop (please complete the following information):
Additional context
I debugged the audio plugin with a few breakpoints. The first error is issued by
plugin->internal_state->device = alcOpenDevice(0);
.The text was updated successfully, but these errors were encountered: