fixing compilation issues

This commit is contained in:
2024-10-22 12:09:49 +02:00
parent 92743b0b03
commit a86f26f0f3
13 changed files with 72 additions and 97 deletions

View File

@@ -1,6 +1,12 @@
#include <PreCompiled.h>
#include <Graphics/Font.h>
#include <Core/Memory.h>
#define STB_TRUETYPE_IMPLEMENTATION
#define STB_malloc(x, u) ((void)(u), MemManager::Get().Malloc(x))
#define STB_free(x, u) ((void)(u), MemManager::Get().Free(x))
#include <stb_truetype.h>
namespace mlx
{