Changeset d2100e2 in mainline for uspace/lib/gfxfont/private/glyph.h
- Timestamp:
- 2020-08-09T18:40:28Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 06b8383
- Parents:
- 5592c56
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/gfxfont/private/glyph.h
r5592c56 rd2100e2 39 39 40 40 #include <adt/list.h> 41 #include <gfx/coord.h> 41 42 #include <types/gfx/glyph.h> 42 43 … … 54 55 /** Text patterns (of gfx_glyph_pattern_t) */ 55 56 list_t patterns; 57 /** Rectangle within font bitmap containing the glyph */ 58 gfx_rect_t rect; 59 /** Glyph origin within font bitmap (pen start point) */ 60 gfx_coord2_t origin; 56 61 }; 57 62 … … 69 74 }; 70 75 76 extern errno_t gfx_glyph_transfer(gfx_glyph_t *, gfx_coord_t, gfx_bitmap_t *, 77 gfx_rect_t *); 78 71 79 #endif 72 80
Note:
See TracChangeset
for help on using the changeset viewer.