UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
RecastAlloc.cpp File Reference

Functions

void rcMemCpy (void *dst, void *src, int size)
 
void rcAllocSetCustom (rcAllocFunc *allocFunc, rcFreeFunc *freeFunc)
 
voidrcAlloc (int size, rcAllocHint hint)
 
void rcFree (void *ptr)
 

Function Documentation

◆ rcAlloc()

void * rcAlloc ( int  size,
rcAllocHint  hint 
)

◆ rcAllocSetCustom()

void rcAllocSetCustom ( rcAllocFunc allocFunc,
rcFreeFunc freeFunc 
)
See also
rcAlloc, rcFree

◆ rcFree()

void rcFree ( void ptr)
Warning
This function leaves the value of ptr unchanged. So it still points to the same (now invalid) location, and not to null.
See also
rcAllocSetCustom

◆ rcMemCpy()

void rcMemCpy ( void dst,
void src,
int  size 
)