| 344 | } |
| 345 | |
| 346 | void stop(AudioHandle handle) |
| 347 | { |
| 348 | auto* inst = getInstance(handle); |
| 349 | if (inst != nullptr) |
| 350 | { |
| 351 | alSourceStop(inst->sourceId); |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | void pause(AudioHandle handle) |
| 356 | { |
nothing calls this directly
no test coverage detected