shithub: freetype+ttf2subf

Download patch

ref: 8406ae53244de1e4439802804c44aebccb66bb8e
parent: 0b92c56c3405f5515c32ecf7dee677710309a58f
author: Ben Wagner <bungeman@chromium.org>
date: Fri Oct 15 10:16:30 EDT 2021

[truetype] Reload context after re-executing `prep`.

When a different hinting mode from the current is selected, the `prep` table
must be re-executed with the new mode.  After this happens the context must
be re-loaded in preparation for the glyph program to be run.

Fixes #1104.

* truetype/ttgload.c (tt_loader_init): Add call to `TT_Load_Context`.

git/fs: mount .git/fs: mount/attach disallowed
--- a/src/truetype/ttgload.c
+++ b/src/truetype/ttgload.c
@@ -2717,6 +2717,9 @@
         error = tt_size_run_prep( size, pedantic );
         if ( error )
           return error;
+        error = TT_Load_Context( exec, face, size );
+        if ( error )
+          return error;
       }
 
       /* check whether the cvt program has disabled hinting */