MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / Load

Method Load

include/AutomationEventList.hpp:74–80  ·  view source on GitHub ↗

* Load audio stream (to stream raw audio pcm data) * * @throws raylib::RaylibException Throws if the AutomationEventList failed to load. */

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

RaylibExceptionClass · 0.85
IsValidFunction · 0.70

Tested by

no test coverage detected