Add Text rendering

- Add FreeType as dependency
- Add MsdfGen as dependency
- Add MsdfAtlasGen as dependency
This commit is contained in:
Thraix
2023-05-08 22:12:19 +02:00
parent ad69293faa
commit 4e466a1fce
190 changed files with 44693 additions and 46 deletions
-9
View File
@@ -13,19 +13,10 @@ int main(int argc, char** argv)
Copium::Vulkan::Initialize();
{
Copium::Application application;
Copium::Timer timer;
int frames = 0;
while (application.Update())
{
glfwPollEvents();
Copium::EventDispatcher::Dispatch();
if (timer.Elapsed() >= 1.0)
{
CP_DEBUG("%d fps", frames);
frames = 0;
timer.Start();
}
frames++;
}
}
Copium::Vulkan::Destroy();