summaryrefslogtreecommitdiff
path: root/src/core.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core.hpp')
-rw-r--r--src/core.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core.hpp b/src/core.hpp
index 660af27..ad5d136 100644
--- a/src/core.hpp
+++ b/src/core.hpp
@@ -1,5 +1,5 @@
/*
- * Copyright 2022 Frederico de Oliveira Linhares
+ * Copyright 2022-2023 Frederico de Oliveira Linhares
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -39,6 +39,9 @@
#include <SDL2/SDL_vulkan.h>
#include <SDL2/SDL_mixer.h>
+#include <ft2build.h>
+#include FT_FREETYPE_H
+
#include "command.hpp"
#include "job_queue.hpp"
#include "log.hpp"
@@ -98,6 +101,8 @@ struct cg_sCore
SDL_Window *window;
+ FT_Library font_library;
+
VkSurfaceKHR window_surface;
VkInstance vk_instance;