From bca7c75393f1b05566da4c6422a8b68eabdfbf14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 27 Dec 2020 18:42:23 +0100 Subject: [PATCH] box-drawing: RIGHT HALF, UPPER ONE EIGHTH and RIGHT ONE EIGTH * U+2590 * U+2594 * U+2595 --- box-drawing.c | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/box-drawing.c b/box-drawing.c index 5e3caf5a..1cdf0e06 100644 --- a/box-drawing.c +++ b/box-drawing.c @@ -803,6 +803,24 @@ draw_left_one_eighth_block(uint8_t *buf, int width, int height, int stride, int rect(0, 0, round(width / 8.), height); } +static void +draw_right_half_block(uint8_t *buf, int width, int height, int stride, int dpi) +{ + rect(round(width / 2.), 0, width, height); +} + +static void +draw_upper_one_eighth_block(uint8_t *buf, int width, int height, int stride, int dpi) +{ + rect(0, 0, width, round(height / 8.)); +} + +static void +draw_right_one_eighth_block(uint8_t *buf, int width, int height, int stride, int dpi) +{ + rect(width - round(width / 8.), 0, width, height); +} + static void draw_glyph(wchar_t wc, uint8_t *buf, int width, int height, int stride, int dpi) { @@ -973,12 +991,12 @@ draw_glyph(wchar_t wc, uint8_t *buf, int width, int height, int stride, int dpi) case 0x258e: draw_left_one_quarter_block(buf, width, height, stride, dpi); break; case 0x258f: draw_left_one_eighth_block(buf, width, height, stride, dpi); break; - case 0x2590: + case 0x2590: draw_right_half_block(buf, width, height, stride, dpi); break; + case 0x2594: draw_upper_one_eighth_block(buf, width, height, stride, dpi); break; + case 0x2595: draw_right_one_eighth_block(buf, width, height, stride, dpi); break; case 0x2591: case 0x2592: case 0x2593: - case 0x2594: - case 0x2595: case 0x2596: case 0x2597: case 0x2598: