Skip to content
GitLab
Explore
Sign in
Register
FreeType
FreeType
Compare revisions
4dfcb9af90a50064617789d6393394059a497c8e to 9a9cec1690175fa4ca4ce86128ba0ae599478740
Commits on Source (2)
[docs] Add documentation on adding new modules to FreeType
· 250a451f
Anurag Thakur
authored
Jun 30, 2023
250a451f
[docs] Add documentation on compiling FreeType on an Android Device
· 9a9cec16
Anurag Thakur
authored
Jun 30, 2023
9a9cec16
Hide whitespace changes
Inline
Side-by-side
docs/.gitignore
View file @
9a9cec16
...
...
@@ -12,6 +12,8 @@ reference/
!INSTALL_MAC.md
!INSTALL_UNIX.md
!INSTALL_VMS.md
!INSTALL_ANDROID.md
!MODIFYING.md
# MkDocs Config file
mkdocs.yml
...
...
docs/INSTALL_ANDROID.md
0 → 100644
View file @
9a9cec16
TODO: Add details on how to compile freetype on android using termux
docs/MODIFYING.md
0 → 100644
View file @
9a9cec16
# Modifying FreeType
FreeType follows a modular architecture, i.e. all the features are
implemented as separate modules. There are separate modules for
rasterizers, font parsers, hinting etc. located under the src/ directory
To add new features you have to either modify the existing modules or
add a new module to FreeType
## Adding a new module to FreeType
First start by deciding the name of you module and add a directory under
src/.