| 143 | } |
| 144 | |
| 145 | static void openal_thread(void *aParam) |
| 146 | { |
| 147 | Soloud *soloud = (Soloud *)aParam; |
| 148 | while (threadrun == 0) |
| 149 | { |
| 150 | openal_iterate(soloud); |
| 151 | Thread::sleep(1); |
| 152 | } |
| 153 | threadrun++; |
| 154 | } |
| 155 | |
| 156 | result openal_init(SoLoud::Soloud *aSoloud, unsigned int aFlags, unsigned int aSamplerate, unsigned int aBuffer, unsigned int aChannels) |
| 157 | { |
nothing calls this directly
no test coverage detected