* Load audio stream (to stream raw audio pcm data) * * @throws raylib::RaylibException Throws if the AutomationEventList failed to load. */
| 72 | * @throws raylib::RaylibException Throws if the AutomationEventList failed to load. |
| 73 | */ |
| 74 | void Load(const char* fileName) { |
| 75 | Unload(); |
| 76 | set(::LoadAutomationEventList(fileName)); |
| 77 | if (!IsValid()) { |
| 78 | throw RaylibException("Failed to load automation event list"); |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * Update audio stream buffers with data |
nothing calls this directly
no test coverage detected