From 4757465cdea520dd047528bdfa7d9225e3a33995 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sun, 2 Jun 2024 17:55:08 +0100 Subject: [PATCH] Stop trying to create a 'gasp' table As far as I can tell, the "GaspTable" line that I put in the SFD file has never actually worked. I don't think I want it to anyway: even when the source pixels line up precisely with the display pixels, it's still worth having anti-aliasing on the diagonal lines. And of course none of this would work properly for any width other than the default one. So overall, it doesn't work, and if it did I'd want it to stop. So let's remove it. --- bedstead.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/bedstead.c b/bedstead.c index adf33ad..ccd88a0 100644 --- a/bedstead.c +++ b/bedstead.c @@ -2577,8 +2577,6 @@ main(int argc, char **argv) (double)(YPIX * 1), (double)(YPIX * 1)); printf(" BlueFuzz 1 0\n"); printf("EndPrivate\n"); - /* Force monochrome at 10 and 20 pixels, and greyscale elsewhere. */ - printf("GaspTable: 5 9 2 10 0 19 3 20 0 65535 3\n"); printf("Lookup: 3 0 0 \"aalt: all alternates\" {\"aalt\"} " "['aalt' ('DFLT' <'dflt'> 'latn' <'dflt'>)]\n"); printf("Lookup: 1 0 0 \"ss01: SAA5051 forms\" {\"ss01\" (\"saa5051\")} " -- 2.30.2