summaryrefslogtreecommitdiff
path: root/thirdparty/meshoptimizer/allocator.cpp
blob: da7cc540b29ab49b36e197a36554d4d09eeb181d (plain)
1
2
3
4
5
6
7
8
// This file is part of meshoptimizer library; see meshoptimizer.h for version/license details
#include "meshoptimizer.h"

void meshopt_setAllocator(void* (*allocate)(size_t), void (*deallocate)(void*))
{
	meshopt_Allocator::Storage::allocate = allocate;
	meshopt_Allocator::Storage::deallocate = deallocate;
}