fcft: adjust to fcft-2.0 API changes

* font_*() -> fcft_*()
* struct font -> struct fcft_font
* struct glyph -> struct fcft_glyph
* enum subpixel_order -> enum fcft_subpixel
This commit is contained in:
Daniel Eklöf 2020-04-21 19:29:36 +02:00
parent e2c48c0c2e
commit 7194f65ae9
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 48 additions and 48 deletions

View file

@ -214,10 +214,10 @@ struct terminal {
struct grid alt;
struct grid *grid;
struct font *fonts[4];
struct fcft_font *fonts[4];
int font_dpi;
int font_adjustments;
enum subpixel_order font_subpixel;
enum fcft_subpixel font_subpixel;
tll(struct ptmx_buffer) ptmx_buffer;