aboutsummaryrefslogtreecommitdiffstats
path: root/swaybar/render.c
diff options
context:
space:
mode:
authorLibravatar Geoff Greer <geoff@greer.fm>2018-09-20 20:37:08 -0700
committerLibravatar Geoff Greer <geoff@greer.fm>2018-09-22 11:34:21 -0700
commitc495164f6059d8f352afeead86a510365cc802a1 (patch)
treeee7316a573d5feb5332bb5cef509bd37faf5bcf7 /swaybar/render.c
parentMerge pull request #2660 from RyanDwyer/fix-scratchpad-iteration (diff)
downloadsway-c495164f6059d8f352afeead86a510365cc802a1.tar.gz
sway-c495164f6059d8f352afeead86a510365cc802a1.tar.zst
sway-c495164f6059d8f352afeead86a510365cc802a1.zip
swaybar, swaylock, & tree/container: Set cairo font options to render text and lines with subpixel hinting (if available).
Diffstat (limited to 'swaybar/render.c')
-rw-r--r--swaybar/render.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/swaybar/render.c b/swaybar/render.c
index 26db80cb..9413dc57 100644
--- a/swaybar/render.c
+++ b/swaybar/render.c
@@ -495,6 +495,13 @@ void render_frame(struct swaybar *bar, struct swaybar_output *output) {
495 cairo_surface_t *recorder = cairo_recording_surface_create( 495 cairo_surface_t *recorder = cairo_recording_surface_create(
496 CAIRO_CONTENT_COLOR_ALPHA, NULL); 496 CAIRO_CONTENT_COLOR_ALPHA, NULL);
497 cairo_t *cairo = cairo_create(recorder); 497 cairo_t *cairo = cairo_create(recorder);
498 cairo_set_antialias(cairo, CAIRO_ANTIALIAS_BEST);
499 cairo_font_options_t *fo = cairo_font_options_create();
500 cairo_font_options_set_hint_style(fo, CAIRO_HINT_STYLE_FULL);
501 cairo_font_options_set_antialias(fo, CAIRO_ANTIALIAS_SUBPIXEL);
502 cairo_font_options_set_subpixel_order(fo, to_cairo_subpixel_order(output->subpixel));
503 cairo_set_font_options(cairo, fo);
504 cairo_font_options_destroy(fo);
498 cairo_save(cairo); 505 cairo_save(cairo);
499 cairo_set_operator(cairo, CAIRO_OPERATOR_CLEAR); 506 cairo_set_operator(cairo, CAIRO_OPERATOR_CLEAR);
500 cairo_paint(cairo); 507 cairo_paint(cairo);