aboutsummaryrefslogtreecommitdiff
path: root/state.h
diff options
context:
space:
mode:
authorRiley Beckett <rbeckettvt@gmail.com>2025-10-12 00:35:52 -0400
committerRiley Beckett <rbeckettvt@gmail.com>2025-10-12 01:53:54 -0400
commit91759767b0c7793060f447fd545b639cf91b7ae3 (patch)
tree352721239f5fccde336aec48d6ff6acdb3fbd6ed /state.h
parentd58f2e870b8f998262609b98f91d290b65ab80d3 (diff)
freetype/fontconfig base
Diffstat (limited to 'state.h')
-rw-r--r--state.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/state.h b/state.h
index 352236d..465e9b6 100644
--- a/state.h
+++ b/state.h
@@ -11,6 +11,9 @@
#include <cursor-shape-v1.h>
#include <sys/timerfd.h>
+#include <ft2build.h>
+#include FT_FREETYPE_H
+
#include "./glad/glad.h"
typedef struct {
@@ -46,6 +49,10 @@ typedef struct {
// state
char* input_buffer;
uint32_t width, height;
+
+ FT_Library ft_library;
+ FT_Face ft_face;
+
bool running;
} client_state;