diff options
author | llyyr <llyyr.public@gmail.com> | 2023-02-26 16:12:19 +0530 |
---|---|---|
committer | Simon Zeni <simon@bl4ckb0ne.ca> | 2023-02-27 13:55:08 -0500 |
commit | b757ef94ef15093b8851598f85ef047379c341b5 (patch) | |
tree | 9dc46fba788ac87e197546e47a04afb067120e3b /swaybar | |
parent | d63497698b2133d217267d3ab3e9c00927955e7b (diff) |
sway{,bar}: use default font hint style
CAIRO_HINT_STYLE_FULL attempts to maximize contrast at the expense
of fidelity, this makes most fonts that haven't been hand hinted,
which makes up the majority of fonts out there, appear much worse.
In the absence of explicitly set hint style, cairo will default to
CAIRO_HINT_STYLE_SLIGHT, which attempts to improve contrast while
retaining fidelity to the original shapes, which is what we want.
Diffstat (limited to 'swaybar')
-rw-r--r-- | swaybar/render.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/swaybar/render.c b/swaybar/render.c index ccf36563..6a983e97 100644 --- a/swaybar/render.c +++ b/swaybar/render.c @@ -774,14 +774,12 @@ void render_frame(struct swaybar_output *output) { ctx.cairo = cairo; cairo_font_options_t *fo = cairo_font_options_create(); - cairo_font_options_set_hint_style(fo, CAIRO_HINT_STYLE_FULL); cairo_font_options_set_antialias(fo, CAIRO_ANTIALIAS_GRAY); ctx.textaa_safe = fo; if (output->subpixel == WL_OUTPUT_SUBPIXEL_NONE) { ctx.textaa_sharp = ctx.textaa_safe; } else { fo = cairo_font_options_create(); - cairo_font_options_set_hint_style(fo, CAIRO_HINT_STYLE_FULL); cairo_font_options_set_antialias(fo, CAIRO_ANTIALIAS_SUBPIXEL); cairo_font_options_set_subpixel_order(fo, to_cairo_subpixel_order(output->subpixel)); |