diff options
author | Omniscient <omniscient.oce@gmail.com> | 2024-05-20 11:07:58 +1000 |
---|---|---|
committer | Omniscient <omniscient.oce@gmail.com> | 2024-05-20 11:07:58 +1000 |
commit | 74bb80d54f48a8576a796b15ccdf044cde435e79 (patch) | |
tree | 487d57ddd05fb3b42551ee1232811d6cc8acf0d7 /src/std/mem.h | |
parent | e904c22003c3a134201b222e6619e782fbe63947 (diff) |
use pool allocator for other gpu backend entities
Diffstat (limited to 'src/std/mem.h')
-rw-r--r-- | src/std/mem.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/std/mem.h b/src/std/mem.h index 26da778..1d508ce 100644 --- a/src/std/mem.h +++ b/src/std/mem.h @@ -57,6 +57,7 @@ bool void_pool_is_full(void_pool* pool); void* void_pool_get(void_pool* pool, u32 raw_handle); void* void_pool_alloc(void_pool* pool, u32* out_raw_handle); void void_pool_dealloc(void_pool* pool, u32 raw_handle); +// TODO: fn to dealloc from the pointer that was handed out // TODO: macro that lets us specialise |