diff options
author | Marvin Borner | 2021-06-23 22:05:11 +0200 |
---|---|---|
committer | Marvin Borner | 2021-06-23 22:05:11 +0200 |
commit | af338d77ee7f6469530233a70ccb450171ec5c66 (patch) | |
tree | c02c86bc53908e62fee829ea8416854f229c7233 /libs/libgui/gfx.h | |
parent | 73a55007a44d23be40be681c4882fd6ad1e30b60 (diff) |
Started widgets and layout stuff
Diffstat (limited to 'libs/libgui/gfx.h')
-rw-r--r-- | libs/libgui/gfx.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libs/libgui/gfx.h b/libs/libgui/gfx.h index cb89ff5..899bf4d 100644 --- a/libs/libgui/gfx.h +++ b/libs/libgui/gfx.h @@ -103,8 +103,7 @@ void gfx_write_char(struct gfx_context *ctx, vec2 pos, enum font_type font_type, void gfx_write(struct gfx_context *ctx, vec2 pos, enum font_type font_type, u32 c, const char *text) NONNULL; -int gfx_font_height(enum font_type); -int gfx_font_width(enum font_type); +vec2 gfx_font_size(enum font_type font_type); /** * Image loading |