Bug 17101 - Element for whether FreeType's patented bytecode-interpretter is available
Summary: Element for whether FreeType's patented bytecode-interpretter is available
Status: RESOLVED MOVED
Alias: None
Product: fontconfig
Classification: Unclassified
Component: library (show other bugs)
Version: 2.4
Hardware: Other All
: medium enhancement
Assignee: fontconfig-bugs
QA Contact: Behdad Esfahbod
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-08-12 16:52 UTC by Behdad Esfahbod
Modified: 2018-08-20 21:44 UTC (History)
1 user (show)

See Also:
i915 platform:
i915 features:


Attachments

Description Behdad Esfahbod 2008-08-12 16:52:03 UTC
And use it in FcDefaultSubstitute, such that user can choose hinting/subpixel settings based on whether BCI is available.

This can be checked using:

#include <ft2build.h>
#include FT_CONFIG_OPTION_H

int has_bci = 
#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
  1
#else
  0
#endif
;


Other interesting option to expose is FT_CONFIG_OPTION_SUBPIXEL_RENDERING.
Comment 1 GitLab Migration User 2018-08-20 21:44:36 UTC
-- GitLab Migration Automatic Message --

This bug has been migrated to freedesktop.org's GitLab instance and has been closed from further activity.

You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/23.


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.