srp
software rendering pipeline
Loading...
Searching...
No Matches
alloc.h
Go to the documentation of this file.
1// Software Rendering Pipeline (SRP) library
2// Licensed under GNU GPLv3
3
7#pragma once
8
14void* srpMalloc(unsigned long size);
15
18void srpFree(void* p);
19
22void* srpRealloc(void* p, unsigned long size);
23
// ingroup Memory_allocation
25
void * srpMalloc(unsigned long size)
Definition alloc.c:8
void srpFree(void *p)
Definition alloc.c:17
void * srpRealloc(void *p, unsigned long size)
Definition alloc.c:22