Changeset 1433ecda in mainline for uspace/lib/draw
- Timestamp:
- 2018-04-04T15:42:37Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2c4e1cc
- Parents:
- 47b2d7e3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/draw/font.c
r47b2d7e3 r1433ecda 60 60 } 61 61 62 errno_t font_get_metrics(font_t *font, font_metrics_t *metrics) { 62 errno_t font_get_metrics(font_t *font, font_metrics_t *metrics) 63 { 63 64 return font->backend->get_font_metrics(font->backend_data, metrics); 64 65 } 65 66 66 errno_t font_resolve_glyph(font_t *font, wchar_t c, glyph_id_t *glyph_id) { 67 errno_t font_resolve_glyph(font_t *font, wchar_t c, glyph_id_t *glyph_id) 68 { 67 69 return font->backend->resolve_glyph(font->backend_data, c, glyph_id); 68 70 }
Note:
See TracChangeset
for help on using the changeset viewer.