Added internal function VmaIsPow2 and asserts checking if various alignment parameters are power of 2.

This commit is contained in:
Adam Sawicki 2018-09-07 14:12:37 +02:00
parent a70e05dbc5
commit 4338f6667d
3 changed files with 22 additions and 2 deletions

View file

@ -4149,7 +4149,7 @@ void Test()
{
wprintf(L"TESTING:\n");
if(true)
if(false)
{
// # Temporarily insert custom tests here
// ########################################
@ -4176,6 +4176,8 @@ void Test()
ManuallyTestLinearAllocator();
TestLinearAllocatorMultiBlock();
BasicTestBuddyAllocator();
{
FILE* file;
fopen_s(&file, "LinearAllocator.csv", "w");