diff options
Diffstat (limited to 'font.h')
| -rw-r--r-- | font.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -4,7 +4,10 @@ char* get_font(const char* font_name); -bool init_freetype(client_state* state, const char* font); -bool init_atlas(client_state* state); +bool freetype_init(client_state* state, const char* font); +void atlas_init(client_state* state); +void atlas_create_texture(client_state* state); + +int atlas_get_strwidth(client_state* state, const char* str); #endif // FONT_H_ |
