> Rebased against master for the change to the property setter.

Committed, thanks :-)

There's one issue, though.  Have a look at Ins_MIAP: I have changed
your diff

  -#ifdef TT_CONFIG_OPTION_SUBPIXEL_HINTING
  +#ifdef TT_SUPPORT_SUBPIXEL_HINTING_INFINALITY
         /* Only adjust if not in sph_compatibility_mode or ignore_x_mode. */
         /* Determined via experimentation and may be incorrect...         */
  -      if ( !SUBPIXEL_HINTING                      ||
  +      if ( SUBPIXEL_HINTING_INFINALITY            &&
              ( !exc->ignore_x_mode                ||
                !exc->face->sph_compatibility_mode ) )
  -#endif /* TT_CONFIG_OPTION_SUBPIXEL_HINTING */
  +#endif /* TT_SUPPORT_SUBPIXEL_HINTING_INFINALITY */

to

  -#ifdef TT_CONFIG_OPTION_SUBPIXEL_HINTING
  +#ifdef TT_SUPPORT_SUBPIXEL_HINTING_INFINALITY
         /* Only adjust if not in sph_compatibility_mode or ignore_x_mode. */
         /* Determined via experimentation and may be incorrect...         */
  -      if ( !SUBPIXEL_HINTING                      ||
  -           ( !exc->ignore_x_mode                ||
  -             !exc->face->sph_compatibility_mode ) )
  -#endif /* TT_CONFIG_OPTION_SUBPIXEL_HINTING */
  +      if ( !( SUBPIXEL_HINTING_INFINALITY           &&
  +              ( exc->ignore_x_mode                &&
  +                exc->face->sph_compatibility_mode ) ) )
  +#endif /* TT_SUPPORT_SUBPIXEL_HINTING_INFINALITY */

to retain the original logic.  Please check.


    Werner

_______________________________________________
Freetype-devel mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/freetype-devel

Reply via email to