From e4907855d2675e4fa39063ee95df23f7cfbdcf58 Mon Sep 17 00:00:00 2001 From: nick black Date: Wed, 11 Nov 2020 03:13:46 -0500 Subject: [PATCH] blitter POC: add 3x2 --- src/poc/blitters.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/poc/blitters.c b/src/poc/blitters.c index 087a44159..f4dc4e361 100644 --- a/src/poc/blitters.c +++ b/src/poc/blitters.c @@ -23,14 +23,14 @@ int main(int argc, char** argv){ // FIXME not all work yet; this subset does const int blitters[] = { NCBLIT_DEFAULT, // let the ncvisual pick - NCBLIT_1x1, // full block █ - NCBLIT_2x1, // full/(upper|left) blocks ▄█ - // NCBLIT_1x1x4, // shaded full blocks ▓▒░█ - NCBLIT_2x2, // quadrants ▗▐ ▖▄▟▌▙█ - // NCBLIT_4x1, // four vert/horz levels █▆▄▂ / ▎▌▊█ - NCBLIT_BRAILLE, // 4 rows, 2 cols (braille) ⡀⡄⡆⡇⢀⣀⣄⣆⣇⢠⣠⣤⣦⣧⢰⣰⣴⣶⣷⢸⣸⣼⣾⣿ - // NCBLIT_8x1, // eight vert/horz levels █▇▆▅▄▃▂▁ / ▏▎▍▌▋▊▉█ - // NCBLIT_SIXEL, // 6 rows, 1 col (RGB), spotty support among terminals + NCBLIT_1x1, // full block + NCBLIT_2x1, // full/(upper|left) blocks + NCBLIT_2x2, // quadrants + NCBLIT_3x2, // sextants + // NCBLIT_4x1, // four vert/horz levels + NCBLIT_BRAILLE, // 4 rows, 2 cols (braille) + // NCBLIT_8x1, // eight vert/horz levels + // NCBLIT_SIXEL, // not yet implemented -1, }; for(const int* blitter = blitters ; *blitter >= 0 ; ++blitter){