tfontsrv: scale f->originy to match f->height on x11 - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 2c70acc3ab751ab1ccb1999f1d22310ad8c35b27
 (DIR) parent 5f0fa185d0a978b45de5bf206193769596c056b5
 (HTM) Author: dzklaim <smooth.rp@gmail.com>
       Date:   Sat, 30 May 2020 01:02:10 +0000
       
       fontsrv: scale f->originy to match f->height on x11
       
       Co-authored-by: dzklaim <smmoth.rp@gmail.com>
       Diffstat:
         M src/cmd/fontsrv/x11.c               |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/src/cmd/fontsrv/x11.c b/src/cmd/fontsrv/x11.c
       t@@ -78,7 +78,7 @@ load(XFont *f)
                }
                f->unit = face->units_per_EM;
                f->height = (int)((face->ascender - face->descender) * 1.35);
       -        f->originy = face->descender; // bbox.yMin (or descender)  is negative, becase the baseline is y-coord 0
       +        f->originy = face->descender * 1.35; // bbox.yMin (or descender)  is negative, because the baseline is y-coord 0
        
                for(charcode=FT_Get_First_Char(face, &glyph_index); glyph_index != 0;
                        charcode=FT_Get_Next_Char(face, charcode, &glyph_index)) {