Epok Engine

EPOK RUNTIME

epok::streaming_release

Function · 1 overload

Function

Performs `streaming release` as part of bounded CD or PC geometry-page streaming.

Belongs to
epok
Header
streaming.hpp
Overloads
1

Declaration

Declaration
inline void streaming_release(uint32_t page)

Performs `streaming release` as part of bounded CD or PC geometry-page streaming.

ParameterTypeMeaning
pageuint32_tValue supplied for page. Keep referenced or pointed-to data valid for the complete call.

Returns: Nothing (void).

Example

C++ example
#include "streaming.hpp"

// Assume these named values have been initialized with valid data:
// uint32_t page

epok::streaming_release(page);

Why use it

It provides direct, allocation-conscious access to bounded CD or PC geometry-page streaming. No exception-based error path is implied by the signature.

Trade-offs and warnings

Call it only in the lifecycle phase described by the module. Validate indices, capacities and object state before use.

Declared in runtime/streaming.hpp:194

Related members