| 335 | // Playback control |
| 336 | |
| 337 | void play(AudioHandle handle) |
| 338 | { |
| 339 | auto* inst = getInstance(handle); |
| 340 | if (inst != nullptr) |
| 341 | { |
| 342 | alSourcePlay(inst->sourceId); |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | void stop(AudioHandle handle) |
| 347 | { |
nothing calls this directly
no test coverage detected