Changeset 06b8383 in mainline for uspace/lib/gfxfont/include/gfx/font.h
- Timestamp:
- 2020-08-18T11:32:59Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 20d0098
- Parents:
- d2100e2
- git-author:
- Jiri Svoboda <jiri@…> (2020-08-17 18:32:40)
- git-committer:
- Jiri Svoboda <jiri@…> (2020-08-18 11:32:59)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/gfxfont/include/gfx/font.h
rd2100e2 r06b8383 42 42 #include <types/gfx/font.h> 43 43 #include <types/gfx/glyph.h> 44 #include <types/gfx/typeface.h> 44 45 45 46 extern void gfx_font_metrics_init(gfx_font_metrics_t *); 46 extern errno_t gfx_font_create(gfx_context_t *, gfx_font_metrics_t *, 47 gfx_font_t **); 48 extern void gfx_font_destroy(gfx_font_t *); 47 extern void gfx_font_props_init(gfx_font_props_t *); 48 extern void gfx_font_get_props(gfx_font_info_t *, gfx_font_props_t *); 49 extern errno_t gfx_font_create(gfx_typeface_t *, gfx_font_props_t *, 50 gfx_font_metrics_t *, gfx_font_t **); 51 extern errno_t gfx_font_open(gfx_font_info_t *, gfx_font_t **); 52 extern void gfx_font_close(gfx_font_t *); 49 53 extern void gfx_font_get_metrics(gfx_font_t *, gfx_font_metrics_t *); 50 extern errno_t gfx_font_set_metrics(gfx_font_t *, gfx_font_metrics_t *); 54 extern errno_t gfx_font_set_metrics(gfx_font_t *, 55 gfx_font_metrics_t *); 51 56 extern gfx_glyph_t *gfx_font_first_glyph(gfx_font_t *); 52 57 extern gfx_glyph_t *gfx_font_next_glyph(gfx_glyph_t *);
Note:
See TracChangeset
for help on using the changeset viewer.