2020-12-12 12:06:59 +00:00
|
|
|
// This file is part of meshoptimizer library; see meshoptimizer.h for version/license details
|
|
|
|
#include "meshoptimizer.h"
|
|
|
|
|
2022-05-17 21:24:52 +00:00
|
|
|
void meshopt_setAllocator(void* (MESHOPTIMIZER_ALLOC_CALLCONV *allocate)(size_t), void (MESHOPTIMIZER_ALLOC_CALLCONV *deallocate)(void*))
|
2020-12-12 12:06:59 +00:00
|
|
|
{
|
|
|
|
meshopt_Allocator::Storage::allocate = allocate;
|
|
|
|
meshopt_Allocator::Storage::deallocate = deallocate;
|
|
|
|
}
|