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

Method AudioDevice

include/AudioDevice.hpp:21–25  ·  view source on GitHub ↗

* Initialize audio device and context. * * @param lateInit Whether or not to post-pone initializing the context. * * @throws raylib::RaylibException Throws if the AudioDevice failed to initialize. */

Source from the content-addressed store, hash-verified

19 * @throws raylib::RaylibException Throws if the AudioDevice failed to initialize.
20 */
21 explicit AudioDevice(bool lateInit = false) {
22 if (!lateInit) {
23 Init();
24 }
25 }
26
27 AudioDevice(const AudioDevice&) = delete;
28 AudioDevice& operator=(const AudioDevice&) = delete;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected