Changes in uspace/lib/draw/font.c [28a5ebd:2bb6d04] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/draw/font.c

    r28a5ebd r2bb6d04  
    6464}
    6565
    66 errno_t font_resolve_glyph(font_t *font, char32_t c, glyph_id_t *glyph_id)
     66errno_t font_resolve_glyph(font_t *font, wchar_t c, glyph_id_t *glyph_id)
    6767{
    6868        return font->backend->resolve_glyph(font->backend_data, c, glyph_id);
     
    9595        size_t off = 0;
    9696        while (true) {
    97                 char32_t c = str_decode(text, &off, STR_NO_LIMIT);
     97                wchar_t c = str_decode(text, &off, STR_NO_LIMIT);
    9898                if (c == 0)
    9999                        break;
     
    138138        size_t off = 0;
    139139        while (true) {
    140                 char32_t c = str_decode(text, &off, STR_NO_LIMIT);
     140                wchar_t c = str_decode(text, &off, STR_NO_LIMIT);
    141141                if (c == 0)
    142142                        break;
Note: See TracChangeset for help on using the changeset viewer.