Epok Engine

EPOK RUNTIME

epok::VertexFrame::seek

Field

Field

Exposes `seek` on `epok::VertexFrame` for the epok module.

Belongs to
epok::VertexFrame
Header
epok.hpp

Declaration

Declaration
const uint32_t * seek

Exposes `seek` on `epok::VertexFrame` for the epok module.

Type
const uint32_t *
Storage
Per instance

Example

C++ example
#include "epok.hpp"

epok::VertexFrame& object = /* obtain a valid instance */;
auto value = object.seek;

When it helps

Use this member when you need direct access to the state represented by its declared type.

Trade-offs and warnings

Direct field access has no validation step. Keep the owning object alive, respect units and ranges, and do not mutate state while hardware or another subsystem is consuming it.

Declared in runtime/epok.hpp:143