Why use it
The API exposes the hardware service without hiding latency or bounded memory.
EPOK RUNTIME
Method · 1 overload
Performs `native advance` as part of the sequence service module.
void native_advance(uint32_t elapsed)Performs `native advance` as part of the sequence service module.
| Parameter | Type | Meaning |
|---|---|---|
elapsed | uint32_t | Value supplied for elapsed. Keep referenced or pointed-to data valid for the complete call. |
Returns: Nothing (void).
#include "sequence_service.hpp"
// Assume these named values have been initialized with valid data:
// uint32_t elapsed
epok::psx_audio::Instance& object = /* obtain a valid instance */;
object.native_advance(elapsed);The API exposes the hardware service without hiding latency or bounded memory.
Treat device absence, busy state and I/O failure as expected outcomes; do not block the frame loop waiting for hardware.
Declared in runtime/sequence_service.hpp:94
advance_libraryPerforms `advance library` as part of the sequence service module.MethodcutPerforms `cut` as part of the sequence service module.Methoddefer_notePerforms `defer note` as part of the sequence service module.Methodfinish_layerPerforms `finish layer` as part of the sequence service module.Methodnative_beginPerforms `native begin` as part of the sequence service module.Methodnative_parametersPerforms `native parameters` as part of the sequence service module.MethodownsPerforms `owns` as part of the sequence service module.MethodreleasePerforms `release` as part of the sequence service module.Methodrelease_libraryPerforms `release library` as part of the sequence service module.MethodstartStarts start as part of the sequence service module.Methodstart_libraryStarts library as part of the sequence service module.MethodupdateUpdates update as part of the sequence service module.Method