mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-08-26 21:18:20 +00:00
8 lines
216 B
C++
8 lines
216 B
C++
#include "meshoptimizer.h"
|
|
|
|
void meshopt_setAllocator(void* (*allocate)(size_t), void (*deallocate)(void*))
|
|
{
|
|
meshopt_Allocator::Storage::allocate = allocate;
|
|
meshopt_Allocator::Storage::deallocate = deallocate;
|
|
}
|