Ignore:
Timestamp:
2020-07-21T22:48:59Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5592c56
Parents:
703c743
Message:

Flesh out most of font, glyph and glyph bitmap implementation and tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/gfxfont/include/gfx/glyph.h

    r703c743 rc78a03d  
    4040#include <types/gfx/font.h>
    4141#include <types/gfx/glyph.h>
    42 #include <types/gfx/glyph_bmp.h>
     42#include <stdbool.h>
     43#include <stddef.h>
    4344
    4445extern void gfx_glyph_metrics_init(gfx_glyph_metrics_t *);
     
    5051extern errno_t gfx_glyph_set_pattern(gfx_glyph_t *, const char *);
    5152extern void gfx_glyph_clear_pattern(gfx_glyph_t *, const char *);
    52 extern errno_t gfx_glyph_open_bmp(gfx_glyph_t *, gfx_glyph_bmp_t **);
     53extern bool gfx_glyph_matches(gfx_glyph_t *, const char *, size_t *);
     54extern gfx_glyph_pattern_t *gfx_glyph_first_pattern(gfx_glyph_t *);
     55extern gfx_glyph_pattern_t *gfx_glyph_next_pattern(gfx_glyph_pattern_t *);
     56extern const char *gfx_glyph_pattern_str(gfx_glyph_pattern_t *);
    5357
    5458#endif
Note: See TracChangeset for help on using the changeset viewer.