Some problems with OpenAL under Linux
Vladislav Turbanov <[email protected]>
| Newsgroups | gmane.comp.lib.openal |
|---|---|
| Message-ID | <[email protected]> |
Running 64 bit Ubuntu... Using the free software implementation of OpenAL. Using ALSA as a device. I have two issues while using the library. 1. When I create a context using alcCreateContext function the CPU usage of the process suddenly pops to about 90% (it's about 2% without calling the function). 2. The alcCloseDevice function never returns. I'm using the following initialization and shutdown code: // Initialization... device = alcOpenDevice(NULL); context = alcCreateContext(device, NULL); alcMakeContextCurrent(context); // Shutdown... alcMakeContextCurrent(NULL); alcDestroyContext(context); alcGetError(device); alcCloseDevice(device); _______________________________________________ Openal mailing list [email protected] http://opensource.creative.com/mailman/listinfo/openal