box-drawing: RIGHT HALF, UPPER ONE EIGHTH and RIGHT ONE EIGTH

* U+2590
* U+2594
* U+2595
This commit is contained in:
Daniel Eklöf 2020-12-27 18:42:23 +01:00
parent 08280553b5
commit bca7c75393
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -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: