diff options
| author | Riley Beckett <rbeckettvt@gmail.com> | 2025-10-12 00:35:52 -0400 |
|---|---|---|
| committer | Riley Beckett <rbeckettvt@gmail.com> | 2025-10-12 01:53:54 -0400 |
| commit | 91759767b0c7793060f447fd545b639cf91b7ae3 (patch) | |
| tree | 352721239f5fccde336aec48d6ff6acdb3fbd6ed /state.h | |
| parent | d58f2e870b8f998262609b98f91d290b65ab80d3 (diff) | |
freetype/fontconfig base
Diffstat (limited to 'state.h')
| -rw-r--r-- | state.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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; |
