()
| 83 | System.out.println(" init openal :" + AL10.alGetError() + " " |
| 84 | + sources.size() + " sources"); |
| 85 | |
| 86 | return this; |
| 87 | } |
| 88 | |
| 89 | public Source allocate() { |
| 90 | if (free.size() == 0) |
| 91 | return null; |
| 92 | return free.remove(0); |
no test coverage detected