VAE - Virtual Audio Engine 1
Small Data Driven Audio Engine
tklb::wave::_ Namespace Reference

redirects malloc for drwav, not really needed since loading and saving wavs doesn't seem to allocate anything on the heap More...

Functions

void * drwaveMalloc (size_t size, void *userData)
 
void drwaveFree (void *ptr, void *userData)
 

Detailed Description

redirects malloc for drwav, not really needed since loading and saving wavs doesn't seem to allocate anything on the heap

Function Documentation

◆ drwaveFree()

void tklb::wave::_::drwaveFree ( void *  ptr,
void *  userData 
)

Definition at line 10 of file TWaveFile.cpp.

10 {
11 TKLB_FREE(ptr);
12 }
#define TKLB_FREE(ptr)
Definition: TMemory.hpp:31
Here is the caller graph for this function:

◆ drwaveMalloc()

void * tklb::wave::_::drwaveMalloc ( size_t  size,
void *  userData 
)

Definition at line 6 of file TWaveFile.cpp.

6 {
7 return TKLB_MALLOC(size);
8 }
#define TKLB_MALLOC(size)
Definition: TMemory.hpp:30
Here is the caller graph for this function: