Changeset 5c27e77 in mainline for uspace/lib/gfxfont/src/font.c
- Timestamp:
- 2022-03-06T22:37:06Z (3 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4583015
- Parents:
- af259da
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/gfxfont/src/font.c
raf259da r5c27e77 1 1 /* 2 * Copyright (c) 202 0Jiri Svoboda2 * Copyright (c) 2022 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 546 546 metrics->descent = uint16_t_le2host(tmetrics.descent); 547 547 metrics->leading = uint16_t_le2host(tmetrics.leading); 548 metrics->underline_y0 = uint16_t_le2host(tmetrics.underline_y0); 549 metrics->underline_y1 = uint16_t_le2host(tmetrics.underline_y1); 548 550 return EOK; 549 551 } … … 565 567 tmetrics.descent = host2uint16_t_le(metrics->descent); 566 568 tmetrics.leading = host2uint16_t_le(metrics->leading); 569 tmetrics.underline_y0 = host2uint16_t_le(metrics->underline_y0); 570 tmetrics.underline_y1 = host2uint16_t_le(metrics->underline_y1); 567 571 568 572 rc = riff_wchunk_start(riffw, CKID_fmtr, &mtrck);
Note:
See TracChangeset
for help on using the changeset viewer.