diff options
| author | Geoff Greer <[email protected]> | 2018-09-20 20:37:08 -0700 | 
|---|---|---|
| committer | Geoff Greer <[email protected]> | 2018-09-22 11:34:21 -0700 | 
| commit | c495164f6059d8f352afeead86a510365cc802a1 (patch) | |
| tree | ee7316a573d5feb5332bb5cef509bd37faf5bcf7 /swaylock/render.c | |
| parent | eae42606e2f6956013c0f68c090b4c0fbc3bee72 (diff) | |
swaybar, swaylock, & tree/container: Set cairo font options to render text and lines with subpixel hinting (if available).
Diffstat (limited to 'swaylock/render.c')
| -rw-r--r-- | swaylock/render.c | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/swaylock/render.c b/swaylock/render.c index 66c55965..fa8832bd 100644 --- a/swaylock/render.c +++ b/swaylock/render.c @@ -39,6 +39,13 @@ void render_frame(struct swaylock_surface *surface) {  	}  	cairo_t *cairo = surface->current_buffer->cairo; +	cairo_set_antialias(cairo, CAIRO_ANTIALIAS_BEST); +	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_SUBPIXEL); +	cairo_font_options_set_subpixel_order(fo, to_cairo_subpixel_order(surface->subpixel)); +	cairo_set_font_options(cairo, fo); +	cairo_font_options_destroy(fo);  	cairo_identity_matrix(cairo);  	cairo_save(cairo); | 
