Changeset 46577995 in mainline for uspace/lib/draw/font/embedded.c
- Timestamp:
- 2018-01-04T20:50:52Z (7 years ago)
- Children:
- e211ea04
- Parents:
- facacc71
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:47:53)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:50:52)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/draw/font/embedded.c
rfacacc71 r46577995 44 44 #include "bitmap_backend.h" 45 45 46 static int fde_resolve_glyph(void *unused, const wchar_t chr,46 static errno_t fde_resolve_glyph(void *unused, const wchar_t chr, 47 47 glyph_id_t *glyph_id) 48 48 { … … 56 56 } 57 57 58 static int fde_load_glyph_surface(void *unused, glyph_id_t glyph_id,58 static errno_t fde_load_glyph_surface(void *unused, glyph_id_t glyph_id, 59 59 surface_t **out_surface) 60 60 { … … 75 75 } 76 76 77 static int fde_load_glyph_metrics(void *unused, glyph_id_t glyph_id,77 static errno_t fde_load_glyph_metrics(void *unused, glyph_id_t glyph_id, 78 78 glyph_metrics_t *gm) 79 79 { … … 106 106 }; 107 107 108 int embedded_font_create(font_t **font, uint16_t points)108 errno_t embedded_font_create(font_t **font, uint16_t points) 109 109 { 110 110 return bitmap_font_create(&fd_embedded, NULL, FONT_GLYPHS, font_metrics,
Note:
See TracChangeset
for help on using the changeset viewer.