Epok Engine

EPOK RUNTIME

epok::debug_hud::initialize

Function · 1 overload

Function

Performs `initialize` as part of native HUD layout, drawing and focus navigation.

Belongs to
epok::debug_hud
Header
debug_hud.hpp
Overloads
1

Declaration

Declaration
inline void initialize(psyqo::GPU& gpu)

Performs `initialize` as part of native HUD layout, drawing and focus navigation.

ParameterTypeMeaning
gpupsyqo::GPU &Value supplied for gpu. Keep referenced or pointed-to data valid for the complete call.

Returns: Nothing (void).

Example

C++ example
#include "debug_hud.hpp"

// Assume these named values have been initialized with valid data:
// psyqo::GPU & gpu

epok::debug_hud::initialize(gpu);

Why use it

It provides direct, allocation-conscious access to native HUD layout, drawing and focus navigation. No exception-based error path is implied by the signature.

Trade-offs and warnings

Pointer/reference arguments are borrowed unless the source contract says otherwise; keep them valid for the complete operation and never assume null is accepted.

Declared in runtime/debug_hud.hpp:41

Related members