|
SBgl 0.1.0
A graphics framework in C99
|
A single block of memory in the arena. More...
#include <sbl_arena.h>

Data Fields | |
| uint64_t | size |
| uint64_t | offset |
| struct SblArenaBlock * | next |
| uint64_t | _padding |
A single block of memory in the arena.
Definition at line 34 of file sbl_arena.h.
| uint64_t SblArenaBlock::_padding |
Ensure 16-byte alignment of header.
Definition at line 38 of file sbl_arena.h.
| struct SblArenaBlock* SblArenaBlock::next |
Pointer to the next block in the chain.
Definition at line 37 of file sbl_arena.h.
| uint64_t SblArenaBlock::offset |
Current allocation offset.
Definition at line 36 of file sbl_arena.h.
| uint64_t SblArenaBlock::size |
Total capacity of this block.
Definition at line 35 of file sbl_arena.h.