2020-12-12 09:06:59 -03:00
|
|
|
// This file is part of meshoptimizer library; see meshoptimizer.h for version/license details
|
|
|
|
#include "meshoptimizer.h"
|
|
|
|
|
2025-08-22 20:25:02 -07:00
|
|
|
#ifdef MESHOPTIMIZER_ALLOC_EXPORT
|
|
|
|
meshopt_Allocator::Storage& meshopt_Allocator::storage()
|
|
|
|
{
|
|
|
|
static Storage s = {::operator new, ::operator delete };
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2024-10-25 10:41:51 -07:00
|
|
|
void meshopt_setAllocator(void* (MESHOPTIMIZER_ALLOC_CALLCONV* allocate)(size_t), void (MESHOPTIMIZER_ALLOC_CALLCONV* deallocate)(void*))
|
2020-12-12 09:06:59 -03:00
|
|
|
{
|
2025-08-22 20:25:02 -07:00
|
|
|
meshopt_Allocator::Storage& s = meshopt_Allocator::storage();
|
|
|
|
s.allocate = allocate;
|
|
|
|
s.deallocate = deallocate;
|
2020-12-12 09:06:59 -03:00
|
|
|
}
|