Updated local copy of Freetype to 2.10.1
This commit is contained in:
parent
d8aec418f9
commit
6d8c5c1d75
168 changed files with 7218 additions and 4691 deletions
44
external/freetype/CMakeLists.txt
vendored
44
external/freetype/CMakeLists.txt
vendored
|
@ -135,7 +135,7 @@ project(freetype C)
|
|||
|
||||
set(VERSION_MAJOR "2")
|
||||
set(VERSION_MINOR "10")
|
||||
set(VERSION_PATCH "0")
|
||||
set(VERSION_PATCH "1")
|
||||
|
||||
# SOVERSION scheme: CURRENT.AGE.REVISION
|
||||
# If there was an incompatible interface change:
|
||||
|
@ -234,12 +234,20 @@ if (UNIX)
|
|||
endif ()
|
||||
string(REPLACE "/undef " "#undef "
|
||||
FTCONFIG_H "${FTCONFIG_H}")
|
||||
else()
|
||||
else ()
|
||||
file(READ "${PROJECT_SOURCE_DIR}/include/freetype/config/ftconfig.h"
|
||||
FTCONFIG_H)
|
||||
endif ()
|
||||
file(WRITE "${PROJECT_BINARY_DIR}/include/freetype/config/ftconfig.h"
|
||||
"${FTCONFIG_H}")
|
||||
|
||||
set(FTCONFIG_H_NAME "${PROJECT_BINARY_DIR}/include/freetype/config/ftconfig.h")
|
||||
if (EXISTS "${FTCONFIG_H_NAME}")
|
||||
file(READ "${FTCONFIG_H_NAME}" ORIGINAL_FTCONFIG_H)
|
||||
else ()
|
||||
set(ORIGINAL_FTCONFIG_H "")
|
||||
endif ()
|
||||
if (NOT (ORIGINAL_FTCONFIG_H STREQUAL FTCONFIG_H))
|
||||
file(WRITE "${FTCONFIG_H_NAME}" "${FTCONFIG_H}")
|
||||
endif ()
|
||||
|
||||
|
||||
# Create the options file
|
||||
|
@ -265,8 +273,16 @@ if (HARFBUZZ_FOUND)
|
|||
"/\\* +(#define +FT_CONFIG_OPTION_USE_HARFBUZZ) +\\*/" "\\1"
|
||||
FTOPTION_H "${FTOPTION_H}")
|
||||
endif ()
|
||||
file(WRITE "${PROJECT_BINARY_DIR}/include/freetype/config/ftoption.h"
|
||||
"${FTOPTION_H}")
|
||||
|
||||
set(FTOPTION_H_NAME "${PROJECT_BINARY_DIR}/include/freetype/config/ftoption.h")
|
||||
if (EXISTS "${FTOPTION_H_NAME}")
|
||||
file(READ "${FTOPTION_H_NAME}" ORIGINAL_FTOPTION_H)
|
||||
else ()
|
||||
set(ORIGINAL_FTOPTION_H "")
|
||||
endif ()
|
||||
if (NOT (ORIGINAL_FTOPTION_H STREQUAL FTOPTION_H))
|
||||
file(WRITE "${FTOPTION_H_NAME}" "${FTOPTION_H}")
|
||||
endif ()
|
||||
|
||||
|
||||
file(GLOB PUBLIC_HEADERS "include/ft2build.h" "include/freetype/*.h")
|
||||
|
@ -333,7 +349,7 @@ endif ()
|
|||
|
||||
if (NOT DISABLE_FORCE_DEBUG_POSTFIX)
|
||||
set(CMAKE_DEBUG_POSTFIX d)
|
||||
endif()
|
||||
endif ()
|
||||
|
||||
|
||||
add_library(freetype
|
||||
|
@ -456,7 +472,15 @@ if (NOT SKIP_INSTALL_LIBRARIES AND NOT SKIP_INSTALL_ALL)
|
|||
string(REPLACE "%LIBS_PRIVATE%" "" # All libs support pkg-config
|
||||
FREETYPE2_PC_IN ${FREETYPE2_PC_IN})
|
||||
|
||||
file(WRITE ${PROJECT_BINARY_DIR}/freetype2.pc ${FREETYPE2_PC_IN})
|
||||
set(FREETYPE2_PC_IN_NAME "${PROJECT_BINARY_DIR}/freetype2.pc")
|
||||
if (EXISTS "${FREETYPE2_PC_IN_NAME}")
|
||||
file(READ "${FREETYPE2_PC_IN_NAME}" ORIGINAL_FREETYPE2_PC_IN)
|
||||
else ()
|
||||
set(ORIGINAL_FREETYPE2_PC_IN "")
|
||||
endif ()
|
||||
if (NOT (ORIGINAL_FREETYPE2_PC_IN STREQUAL FREETYPE2_PC_IN))
|
||||
file(WRITE "${FREETYPE2_PC_IN_NAME}" ${FREETYPE2_PC_IN})
|
||||
endif ()
|
||||
|
||||
install(
|
||||
FILES ${PROJECT_BINARY_DIR}/freetype2.pc
|
||||
|
@ -493,9 +517,9 @@ set(CPACK_PACKAGE_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSIO
|
|||
|
||||
if (WIN32)
|
||||
set(CPACK_GENERATOR ZIP)
|
||||
else()
|
||||
else ()
|
||||
set(CPACK_GENERATOR TGZ)
|
||||
endif()
|
||||
endif ()
|
||||
|
||||
set(CPACK_COMPONENT_LIBRARIES_DISPLAY_NAME "Libraries")
|
||||
set(CPACK_COMPONENT_HEADERS_DISPLAY_NAME "C/C++ Headers")
|
||||
|
|
2913
external/freetype/ChangeLog
vendored
2913
external/freetype/ChangeLog
vendored
File diff suppressed because it is too large
Load diff
2352
external/freetype/ChangeLog.29
vendored
Normal file
2352
external/freetype/ChangeLog.29
vendored
Normal file
File diff suppressed because it is too large
Load diff
2
external/freetype/Jamfile
vendored
2
external/freetype/Jamfile
vendored
|
@ -210,7 +210,7 @@ actions RefDoc
|
|||
{
|
||||
python -m docwriter
|
||||
--prefix=ft2
|
||||
--title=FreeType-2.10.0
|
||||
--title=FreeType-2.10.1
|
||||
--output=$(DOC_DIR)
|
||||
$(FT2_INCLUDE)/freetype/*.h
|
||||
$(FT2_INCLUDE)/freetype/config/*.h
|
||||
|
|
8
external/freetype/README
vendored
8
external/freetype/README
vendored
|
@ -1,4 +1,4 @@
|
|||
FreeType 2.10.0
|
||||
FreeType 2.10.1
|
||||
===============
|
||||
|
||||
Homepage: https://www.freetype.org
|
||||
|
@ -24,9 +24,9 @@
|
|||
|
||||
and download one of the following files.
|
||||
|
||||
freetype-doc-2.10.0.tar.bz2
|
||||
freetype-doc-2.10.0.tar.gz
|
||||
ftdoc2100.zip
|
||||
freetype-doc-2.10.1.tar.xz
|
||||
freetype-doc-2.10.1.tar.gz
|
||||
ftdoc2101.zip
|
||||
|
||||
To view the documentation online, go to
|
||||
|
||||
|
|
4
external/freetype/builds/toplevel.mk
vendored
4
external/freetype/builds/toplevel.mk
vendored
|
@ -208,7 +208,7 @@ patch := $(firstword $(patch))
|
|||
dist:
|
||||
-rm -rf tmp
|
||||
rm -f freetype-$(version).tar.gz
|
||||
rm -f freetype-$(version).tar.bz2
|
||||
rm -f freetype-$(version).tar.xz
|
||||
rm -f ft$(winversion).zip
|
||||
|
||||
for d in `find . -wholename '*/.git' -prune \
|
||||
|
@ -235,7 +235,7 @@ dist:
|
|||
tar -H ustar -chf - freetype-$(version) \
|
||||
| gzip -9 -c > freetype-$(version).tar.gz
|
||||
tar -H ustar -chf - freetype-$(version) \
|
||||
| bzip2 -c > freetype-$(version).tar.bz2
|
||||
| xz -c > freetype-$(version).tar.xz
|
||||
|
||||
@# Use CR/LF for zip files.
|
||||
zip -lr9 ft$(winversion).zip freetype-$(version)
|
||||
|
|
5
external/freetype/builds/unix/aclocal.m4
vendored
5
external/freetype/builds/unix/aclocal.m4
vendored
|
@ -1,6 +1,6 @@
|
|||
# generated automatically by aclocal 1.15 -*- Autoconf -*-
|
||||
# generated automatically by aclocal 1.15.1 -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 1996-2014 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1996-2017 Free Software Foundation, Inc.
|
||||
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
@ -736,7 +736,6 @@ _LT_CONFIG_SAVE_COMMANDS([
|
|||
cat <<_LT_EOF >> "$cfgfile"
|
||||
#! $SHELL
|
||||
# Generated automatically by $as_me ($PACKAGE) $VERSION
|
||||
# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
|
||||
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
|
||||
|
||||
# Provide generalized library-building support services.
|
||||
|
|
211
external/freetype/builds/unix/config.guess
vendored
211
external/freetype/builds/unix/config.guess
vendored
|
@ -2,7 +2,7 @@
|
|||
# Attempt to guess a canonical system name.
|
||||
# Copyright 1992-2019 Free Software Foundation, Inc.
|
||||
|
||||
timestamp='2019-01-15'
|
||||
timestamp='2019-06-10'
|
||||
|
||||
# This file is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by
|
||||
|
@ -262,6 +262,9 @@ case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in
|
|||
*:SolidBSD:*:*)
|
||||
echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE"
|
||||
exit ;;
|
||||
*:OS108:*:*)
|
||||
echo "$UNAME_MACHINE"-unknown-os108_"$UNAME_RELEASE"
|
||||
exit ;;
|
||||
macppc:MirBSD:*:*)
|
||||
echo powerpc-unknown-mirbsd"$UNAME_RELEASE"
|
||||
exit ;;
|
||||
|
@ -985,22 +988,50 @@ EOF
|
|||
exit ;;
|
||||
mips:Linux:*:* | mips64:Linux:*:*)
|
||||
set_cc_for_build
|
||||
IS_GLIBC=0
|
||||
test x"${LIBC}" = xgnu && IS_GLIBC=1
|
||||
sed 's/^ //' << EOF > "$dummy.c"
|
||||
#undef CPU
|
||||
#undef ${UNAME_MACHINE}
|
||||
#undef ${UNAME_MACHINE}el
|
||||
#undef mips
|
||||
#undef mipsel
|
||||
#undef mips64
|
||||
#undef mips64el
|
||||
#if ${IS_GLIBC} && defined(_ABI64)
|
||||
LIBCABI=gnuabi64
|
||||
#else
|
||||
#if ${IS_GLIBC} && defined(_ABIN32)
|
||||
LIBCABI=gnuabin32
|
||||
#else
|
||||
LIBCABI=${LIBC}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if ${IS_GLIBC} && defined(__mips64) && defined(__mips_isa_rev) && __mips_isa_rev>=6
|
||||
CPU=mipsisa64r6
|
||||
#else
|
||||
#if ${IS_GLIBC} && !defined(__mips64) && defined(__mips_isa_rev) && __mips_isa_rev>=6
|
||||
CPU=mipsisa32r6
|
||||
#else
|
||||
#if defined(__mips64)
|
||||
CPU=mips64
|
||||
#else
|
||||
CPU=mips
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
|
||||
CPU=${UNAME_MACHINE}el
|
||||
MIPS_ENDIAN=el
|
||||
#else
|
||||
#if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
|
||||
CPU=${UNAME_MACHINE}
|
||||
MIPS_ENDIAN=
|
||||
#else
|
||||
CPU=
|
||||
MIPS_ENDIAN=
|
||||
#endif
|
||||
#endif
|
||||
EOF
|
||||
eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`"
|
||||
test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; }
|
||||
eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU\|^MIPS_ENDIAN\|^LIBCABI'`"
|
||||
test "x$CPU" != x && { echo "$CPU${MIPS_ENDIAN}-unknown-linux-$LIBCABI"; exit; }
|
||||
;;
|
||||
mips64el:Linux:*:*)
|
||||
echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
|
||||
|
@ -1113,7 +1144,7 @@ EOF
|
|||
*Pentium) UNAME_MACHINE=i586 ;;
|
||||
*Pent*|*Celeron) UNAME_MACHINE=i686 ;;
|
||||
esac
|
||||
echo "$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}{$UNAME_VERSION}"
|
||||
echo "$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}"
|
||||
exit ;;
|
||||
i*86:*:3.2:*)
|
||||
if test -f /usr/options/cb.name; then
|
||||
|
@ -1297,12 +1328,19 @@ EOF
|
|||
echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE"
|
||||
exit ;;
|
||||
*:Darwin:*:*)
|
||||
UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
|
||||
UNAME_PROCESSOR=`uname -p`
|
||||
case $UNAME_PROCESSOR in
|
||||
unknown) UNAME_PROCESSOR=powerpc ;;
|
||||
esac
|
||||
if command -v xcode-select > /dev/null 2> /dev/null && \
|
||||
! xcode-select --print-path > /dev/null 2> /dev/null ; then
|
||||
# Avoid executing cc if there is no toolchain installed as
|
||||
# cc will be a stub that puts up a graphical alert
|
||||
# prompting the user to install developer tools.
|
||||
CC_FOR_BUILD=no_compiler_found
|
||||
else
|
||||
set_cc_for_build
|
||||
if test "$UNAME_PROCESSOR" = unknown ; then
|
||||
UNAME_PROCESSOR=powerpc
|
||||
fi
|
||||
if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then
|
||||
if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
|
||||
if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
|
||||
(CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
|
||||
|
@ -1320,15 +1358,9 @@ EOF
|
|||
then
|
||||
UNAME_PROCESSOR=powerpc
|
||||
fi
|
||||
fi
|
||||
elif test "$UNAME_PROCESSOR" = i386 ; then
|
||||
# Avoid executing cc on OS X 10.9, as it ships with a stub
|
||||
# that puts up a graphical alert prompting to install
|
||||
# developer tools. Any system running Mac OS X 10.7 or
|
||||
# later (Darwin 11 and later) is required to have a 64-bit
|
||||
# processor. This is not true of the ARM version of Darwin
|
||||
# that Apple uses in portable devices.
|
||||
UNAME_PROCESSOR=x86_64
|
||||
# uname -m returns i386 or x86_64
|
||||
UNAME_PROCESSOR=$UNAME_MACHINE
|
||||
fi
|
||||
echo "$UNAME_PROCESSOR"-apple-darwin"$UNAME_RELEASE"
|
||||
exit ;;
|
||||
|
@ -1433,6 +1465,143 @@ EOF
|
|||
exit ;;
|
||||
esac
|
||||
|
||||
# No uname command or uname output not recognized.
|
||||
set_cc_for_build
|
||||
cat > "$dummy.c" <<EOF
|
||||
#ifdef _SEQUENT_
|
||||
#include <sys/types.h>
|
||||
#include <sys/utsname.h>
|
||||
#endif
|
||||
#if defined(ultrix) || defined(_ultrix) || defined(__ultrix) || defined(__ultrix__)
|
||||
#if defined (vax) || defined (__vax) || defined (__vax__) || defined(mips) || defined(__mips) || defined(__mips__) || defined(MIPS) || defined(__MIPS__)
|
||||
#include <signal.h>
|
||||
#if defined(_SIZE_T_) || defined(SIGLOST)
|
||||
#include <sys/utsname.h>
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
main ()
|
||||
{
|
||||
#if defined (sony)
|
||||
#if defined (MIPSEB)
|
||||
/* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed,
|
||||
I don't know.... */
|
||||
printf ("mips-sony-bsd\n"); exit (0);
|
||||
#else
|
||||
#include <sys/param.h>
|
||||
printf ("m68k-sony-newsos%s\n",
|
||||
#ifdef NEWSOS4
|
||||
"4"
|
||||
#else
|
||||
""
|
||||
#endif
|
||||
); exit (0);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined (NeXT)
|
||||
#if !defined (__ARCHITECTURE__)
|
||||
#define __ARCHITECTURE__ "m68k"
|
||||
#endif
|
||||
int version;
|
||||
version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
|
||||
if (version < 4)
|
||||
printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version);
|
||||
else
|
||||
printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version);
|
||||
exit (0);
|
||||
#endif
|
||||
|
||||
#if defined (MULTIMAX) || defined (n16)
|
||||
#if defined (UMAXV)
|
||||
printf ("ns32k-encore-sysv\n"); exit (0);
|
||||
#else
|
||||
#if defined (CMU)
|
||||
printf ("ns32k-encore-mach\n"); exit (0);
|
||||
#else
|
||||
printf ("ns32k-encore-bsd\n"); exit (0);
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined (__386BSD__)
|
||||
printf ("i386-pc-bsd\n"); exit (0);
|
||||
#endif
|
||||
|
||||
#if defined (sequent)
|
||||
#if defined (i386)
|
||||
printf ("i386-sequent-dynix\n"); exit (0);
|
||||
#endif
|
||||
#if defined (ns32000)
|
||||
printf ("ns32k-sequent-dynix\n"); exit (0);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined (_SEQUENT_)
|
||||
struct utsname un;
|
||||
|
||||
uname(&un);
|
||||
if (strncmp(un.version, "V2", 2) == 0) {
|
||||
printf ("i386-sequent-ptx2\n"); exit (0);
|
||||
}
|
||||
if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
|
||||
printf ("i386-sequent-ptx1\n"); exit (0);
|
||||
}
|
||||
printf ("i386-sequent-ptx\n"); exit (0);
|
||||
#endif
|
||||
|
||||
#if defined (vax)
|
||||
#if !defined (ultrix)
|
||||
#include <sys/param.h>
|
||||
#if defined (BSD)
|
||||
#if BSD == 43
|
||||
printf ("vax-dec-bsd4.3\n"); exit (0);
|
||||
#else
|
||||
#if BSD == 199006
|
||||
printf ("vax-dec-bsd4.3reno\n"); exit (0);
|
||||
#else
|
||||
printf ("vax-dec-bsd\n"); exit (0);
|
||||
#endif
|
||||
#endif
|
||||
#else
|
||||
printf ("vax-dec-bsd\n"); exit (0);
|
||||
#endif
|
||||
#else
|
||||
#if defined(_SIZE_T_) || defined(SIGLOST)
|
||||
struct utsname un;
|
||||
uname (&un);
|
||||
printf ("vax-dec-ultrix%s\n", un.release); exit (0);
|
||||
#else
|
||||
printf ("vax-dec-ultrix\n"); exit (0);
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
#if defined(ultrix) || defined(_ultrix) || defined(__ultrix) || defined(__ultrix__)
|
||||
#if defined(mips) || defined(__mips) || defined(__mips__) || defined(MIPS) || defined(__MIPS__)
|
||||
#if defined(_SIZE_T_) || defined(SIGLOST)
|
||||
struct utsname *un;
|
||||
uname (&un);
|
||||
printf ("mips-dec-ultrix%s\n", un.release); exit (0);
|
||||
#else
|
||||
printf ("mips-dec-ultrix\n"); exit (0);
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined (alliant) && defined (i860)
|
||||
printf ("i860-alliant-bsd\n"); exit (0);
|
||||
#endif
|
||||
|
||||
exit (1);
|
||||
}
|
||||
EOF
|
||||
|
||||
$CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null && SYSTEM_NAME=`$dummy` &&
|
||||
{ echo "$SYSTEM_NAME"; exit; }
|
||||
|
||||
# Apollos put the system type in the environment.
|
||||
test -d /usr/apollo && { echo "$ISP-apollo-$SYSTYPE"; exit; }
|
||||
|
||||
echo "$0: unable to guess system type" >&2
|
||||
|
||||
case "$UNAME_MACHINE:$UNAME_SYSTEM" in
|
||||
|
|
13
external/freetype/builds/unix/config.sub
vendored
13
external/freetype/builds/unix/config.sub
vendored
|
@ -2,7 +2,7 @@
|
|||
# Configuration validation subroutine script.
|
||||
# Copyright 1992-2019 Free Software Foundation, Inc.
|
||||
|
||||
timestamp='2019-01-05'
|
||||
timestamp='2019-05-23'
|
||||
|
||||
# This file is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by
|
||||
|
@ -822,7 +822,9 @@ case $basic_machine in
|
|||
cpu=m68k
|
||||
vendor=next
|
||||
case $os in
|
||||
nextstep* )
|
||||
openstep*)
|
||||
;;
|
||||
nextstep*)
|
||||
;;
|
||||
ns2*)
|
||||
os=nextstep2
|
||||
|
@ -1170,7 +1172,7 @@ case $cpu-$vendor in
|
|||
| asmjs \
|
||||
| ba \
|
||||
| be32 | be64 \
|
||||
| bfin | bs2000 \
|
||||
| bfin | bpf | bs2000 \
|
||||
| c[123]* | c30 | [cjt]90 | c4x \
|
||||
| c8051 | clipper | craynv | csky | cydra \
|
||||
| d10v | d30v | dlx | dsp16xx \
|
||||
|
@ -1245,7 +1247,8 @@ case $cpu-$vendor in
|
|||
| v70 | v850 | v850e | v850e1 | v850es | v850e2 | v850e2v3 \
|
||||
| vax \
|
||||
| visium \
|
||||
| w65 | wasm32 \
|
||||
| w65 \
|
||||
| wasm32 | wasm64 \
|
||||
| we32k \
|
||||
| x86 | x86_64 | xc16x | xgate | xps100 \
|
||||
| xstormy16 | xtensa* \
|
||||
|
@ -1365,7 +1368,7 @@ case $os in
|
|||
| powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \
|
||||
| skyos* | haiku* | rdos* | toppers* | drops* | es* \
|
||||
| onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \
|
||||
| midnightbsd* | amdhsa* | unleashed* | emscripten*)
|
||||
| midnightbsd* | amdhsa* | unleashed* | emscripten* | wasi*)
|
||||
# Remember, each alternative MUST END IN *, to match a version number.
|
||||
;;
|
||||
qnx*)
|
||||
|
|
21
external/freetype/builds/unix/configure
vendored
21
external/freetype/builds/unix/configure
vendored
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.69 for FreeType 2.10.
|
||||
# Generated by GNU Autoconf 2.69 for FreeType 2.10.1.
|
||||
#
|
||||
# Report bugs to <freetype@nongnu.org>.
|
||||
#
|
||||
|
@ -590,8 +590,8 @@ MAKEFLAGS=
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='FreeType'
|
||||
PACKAGE_TARNAME='freetype'
|
||||
PACKAGE_VERSION='2.10'
|
||||
PACKAGE_STRING='FreeType 2.10'
|
||||
PACKAGE_VERSION='2.10.1'
|
||||
PACKAGE_STRING='FreeType 2.10.1'
|
||||
PACKAGE_BUGREPORT='freetype@nongnu.org'
|
||||
PACKAGE_URL=''
|
||||
|
||||
|
@ -1335,7 +1335,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures FreeType 2.10 to adapt to many kinds of systems.
|
||||
\`configure' configures FreeType 2.10.1 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -1400,7 +1400,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of FreeType 2.10:";;
|
||||
short | recursive ) echo "Configuration of FreeType 2.10.1:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -1549,7 +1549,7 @@ fi
|
|||
test -n "$ac_init_help" && exit $ac_status
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
FreeType configure 2.10
|
||||
FreeType configure 2.10.1
|
||||
generated by GNU Autoconf 2.69
|
||||
|
||||
Copyright (C) 2012 Free Software Foundation, Inc.
|
||||
|
@ -2147,7 +2147,7 @@ cat >config.log <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by FreeType $as_me 2.10, which was
|
||||
It was created by FreeType $as_me 2.10.1, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -2503,7 +2503,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|||
|
||||
# Don't forget to update `docs/VERSIONS.TXT'!
|
||||
|
||||
version_info='23:0:17'
|
||||
version_info='23:1:17'
|
||||
|
||||
ft_version=`echo $version_info | tr : .`
|
||||
|
||||
|
@ -15478,7 +15478,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
|||
# report actual input values of CONFIG_FILES etc. instead of their
|
||||
# values after options handling.
|
||||
ac_log="
|
||||
This file was extended by FreeType $as_me 2.10, which was
|
||||
This file was extended by FreeType $as_me 2.10.1, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -15544,7 +15544,7 @@ _ACEOF
|
|||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
||||
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
|
||||
ac_cs_version="\\
|
||||
FreeType config.status 2.10
|
||||
FreeType config.status 2.10.1
|
||||
configured by $0, generated by GNU Autoconf 2.69,
|
||||
with options \\"\$ac_cs_config\\"
|
||||
|
||||
|
@ -16613,7 +16613,6 @@ $as_echo "$as_me: executing $ac_file commands" >&6;}
|
|||
cat <<_LT_EOF >> "$cfgfile"
|
||||
#! $SHELL
|
||||
# Generated automatically by $as_me ($PACKAGE) $VERSION
|
||||
# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
|
||||
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
|
||||
|
||||
# Provide generalized library-building support services.
|
||||
|
|
4
external/freetype/builds/unix/configure.ac
vendored
4
external/freetype/builds/unix/configure.ac
vendored
|
@ -11,13 +11,13 @@
|
|||
# indicate that you have read the license and understand and accept it
|
||||
# fully.
|
||||
|
||||
AC_INIT([FreeType], [2.10], [freetype@nongnu.org], [freetype])
|
||||
AC_INIT([FreeType], [2.10.1], [freetype@nongnu.org], [freetype])
|
||||
AC_CONFIG_SRCDIR([ftconfig.in])
|
||||
|
||||
|
||||
# Don't forget to update `docs/VERSIONS.TXT'!
|
||||
|
||||
version_info='23:0:17'
|
||||
version_info='23:1:17'
|
||||
AC_SUBST([version_info])
|
||||
ft_version=`echo $version_info | tr : .`
|
||||
AC_SUBST([ft_version])
|
||||
|
|
2
external/freetype/builds/unix/configure.raw
vendored
2
external/freetype/builds/unix/configure.raw
vendored
|
@ -17,7 +17,7 @@ AC_CONFIG_SRCDIR([ftconfig.in])
|
|||
|
||||
# Don't forget to update `docs/VERSIONS.TXT'!
|
||||
|
||||
version_info='23:0:17'
|
||||
version_info='23:1:17'
|
||||
AC_SUBST([version_info])
|
||||
ft_version=`echo $version_info | tr : .`
|
||||
AC_SUBST([ft_version])
|
||||
|
|
0
external/freetype/builds/unix/ltmain.sh
vendored
Normal file → Executable file
0
external/freetype/builds/unix/ltmain.sh
vendored
Normal file → Executable file
BIN
external/freetype/builds/vms/LIBS.OPT_IA64
vendored
Normal file
BIN
external/freetype/builds/vms/LIBS.OPT_IA64
vendored
Normal file
Binary file not shown.
BIN
external/freetype/builds/vms/_LINK.OPT_IA64
vendored
Normal file
BIN
external/freetype/builds/vms/_LINK.OPT_IA64
vendored
Normal file
Binary file not shown.
2
external/freetype/builds/vms/ftconfig.h
vendored
2
external/freetype/builds/vms/ftconfig.h
vendored
|
@ -63,8 +63,6 @@ FT_BEGIN_HEADER
|
|||
#define FT_SIZEOF_INT 4
|
||||
#define FT_SIZEOF_LONG 4
|
||||
|
||||
#define FT_CHAR_BIT 8
|
||||
|
||||
|
||||
/* `FT_UNUSED` indicates that a given parameter is not used -- */
|
||||
/* this is only used to get rid of unpleasant compiler warnings. */
|
||||
|
|
28
external/freetype/builds/vms/vmslib.dat
vendored
Normal file
28
external/freetype/builds/vms/vmslib.dat
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
!
|
||||
! This is a simple driver file with information used by make.com to
|
||||
! check if external libraries (like t1lib and freetype) are available on
|
||||
! the system.
|
||||
!
|
||||
! Layout of the file:
|
||||
!
|
||||
! - Lines starting with ! are treated as comments
|
||||
! - Elements in a data line are separated by # signs
|
||||
! - The elements need to be listed in the following order
|
||||
! 1.) Name of the Library
|
||||
! 2.) Location where the object library can be found
|
||||
! 3.) Location where the include files for the library can be found
|
||||
! 4.) Include file used to verify library location
|
||||
! 5.) CPP define to pass to the build to indicate availability of
|
||||
! the library
|
||||
!
|
||||
! Example: The following lines show how definitions
|
||||
! might look like. They are site specific and the locations of the
|
||||
! library and include files need almost certainly to be changed.
|
||||
!
|
||||
! Location: All of the libaries can be found at the following addresses
|
||||
!
|
||||
! ZLIB: http://www.decus.de:8080/www/vms/sw/zlib.htmlx
|
||||
!
|
||||
BZ2LIB # sys$library:libbz2.olb # decc$user_include: # bzlib.h # FT_CONFIG_OPTION_SYSTEM_ZLIB
|
||||
PNGLIB # sys$library:libpng.olb # sys$library: # png.h # FT_CONFIG_OPTION_SYSTEM_ZLIB
|
||||
ZLIB # sys$library:libz.olb # sys$library: # zlib.h # FT_CONFIG_OPTION_SYSTEM_ZLIB
|
|
@ -21,7 +21,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -41,7 +41,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -61,7 +61,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -81,7 +81,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -101,7 +101,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -121,7 +121,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -141,7 +141,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100MT.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101MT.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -161,7 +161,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100MT.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101MT.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -181,7 +181,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100MT.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101MT.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -201,7 +201,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100MT.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101MT.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -221,7 +221,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100MT.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101MT.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -241,7 +241,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100MT.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101MT.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -261,7 +261,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100ST.lib" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101ST.lib" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -281,7 +281,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100ST.lib" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101ST.lib" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -301,7 +301,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100ST.lib" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101ST.lib" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -321,7 +321,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100ST.lib" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101ST.lib" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -341,7 +341,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100ST.lib" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101ST.lib" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -361,7 +361,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100ST.lib" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101ST.lib" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -381,7 +381,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -401,7 +401,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -421,7 +421,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -441,7 +441,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -461,7 +461,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -481,7 +481,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -501,7 +501,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100ST_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101ST_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -521,7 +521,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100ST_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101ST_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -541,7 +541,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100ST_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101ST_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -561,7 +561,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100ST_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101ST_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -581,7 +581,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100ST_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101ST_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -601,7 +601,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100ST_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101ST_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -621,7 +621,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100MT_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101MT_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -641,7 +641,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100MT_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101MT_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -661,7 +661,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100MT_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101MT_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -681,7 +681,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100MT_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101MT_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -701,7 +701,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100MT_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101MT_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -721,7 +721,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100MT_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101MT_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -741,7 +741,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100MT.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101MT.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
@ -758,7 +758,7 @@
|
|||
<Tool Name="VCManagedResourceCompilerTool" />
|
||||
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG" Culture="1033" />
|
||||
<Tool Name="VCPreLinkEventTool" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2100MT_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCLibrarianTool" OutputFile="..\..\..\objs\wince\vc2005-ce\freetype2101MT_D.lib" SuppressStartupBanner="true" />
|
||||
<Tool Name="VCALinkTool" />
|
||||
<Tool Name="VCXDCMakeTool" />
|
||||
<Tool Name="VCBscMakeTool" />
|
||||
|
|
|
@ -21,14 +21,14 @@ the following targets:
|
|||
<li>PPC/SP WM6 (Windows Mobile 6)</li>
|
||||
</ul>
|
||||
|
||||
It compiles the following libraries from the FreeType 2.10.0 sources:</p>
|
||||
It compiles the following libraries from the FreeType 2.10.1 sources:</p>
|
||||
|
||||
<ul>
|
||||
<pre>
|
||||
freetype2100.lib - release build; single threaded
|
||||
freetype2100_D.lib - debug build; single threaded
|
||||
freetype2100MT.lib - release build; multi-threaded
|
||||
freetype2100MT_D.lib - debug build; multi-threaded</pre>
|
||||
freetype2101.lib - release build; single threaded
|
||||
freetype2101_D.lib - debug build; single threaded
|
||||
freetype2101MT.lib - release build; multi-threaded
|
||||
freetype2101MT_D.lib - debug build; multi-threaded</pre>
|
||||
</ul>
|
||||
|
||||
<p>Be sure to extract the files with the Windows (CR+LF) line endings. ZIP
|
||||
|
|
|
@ -88,7 +88,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -177,7 +177,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -266,7 +266,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -355,7 +355,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -444,7 +444,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -533,7 +533,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -621,7 +621,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100MT.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101MT.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -709,7 +709,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100MT.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101MT.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -797,7 +797,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100MT.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101MT.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -885,7 +885,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100MT.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101MT.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -973,7 +973,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100MT.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101MT.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -1061,7 +1061,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100MT.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101MT.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -1149,7 +1149,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100ST.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101ST.lib"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
|
@ -1236,7 +1236,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100ST.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101ST.lib"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
|
@ -1323,7 +1323,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100ST.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101ST.lib"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
|
@ -1410,7 +1410,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100ST.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101ST.lib"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
|
@ -1497,7 +1497,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100ST.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101ST.lib"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
|
@ -1584,7 +1584,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100ST.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101ST.lib"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
|
@ -1668,7 +1668,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -1753,7 +1753,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -1838,7 +1838,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -1923,7 +1923,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2008,7 +2008,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2093,7 +2093,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2178,7 +2178,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100ST_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101ST_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2263,7 +2263,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100ST_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101ST_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2348,7 +2348,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100ST_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101ST_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2433,7 +2433,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100ST_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101ST_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2518,7 +2518,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100ST_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101ST_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2603,7 +2603,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100ST_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101ST_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2689,7 +2689,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100MT_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101MT_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2775,7 +2775,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100MT_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101MT_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2861,7 +2861,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100MT_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101MT_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2947,7 +2947,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100MT_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101MT_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -3033,7 +3033,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100MT_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101MT_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -3119,7 +3119,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100MT_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101MT_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -3205,7 +3205,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100MT.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101MT.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -3279,7 +3279,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2100MT_D.lib"
|
||||
OutputFile="..\..\..\objs\wince\vc2008-ce\freetype2101MT_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
|
@ -21,14 +21,14 @@ the following targets:
|
|||
<li>PPC/SP WM6 (Windows Mobile 6)</li>
|
||||
</ul>
|
||||
|
||||
It compiles the following libraries from the FreeType 2.10.0 sources:</p>
|
||||
It compiles the following libraries from the FreeType 2.10.1 sources:</p>
|
||||
|
||||
<ul>
|
||||
<pre>
|
||||
freetype2100.lib - release build; single threaded
|
||||
freetype2100_D.lib - debug build; single threaded
|
||||
freetype2100MT.lib - release build; multi-threaded
|
||||
freetype2100MT_D.lib - debug build; multi-threaded</pre>
|
||||
freetype2101.lib - release build; single threaded
|
||||
freetype2101_D.lib - debug build; single threaded
|
||||
freetype2101MT.lib - release build; multi-threaded
|
||||
freetype2101MT_D.lib - debug build; multi-threaded</pre>
|
||||
</ul>
|
||||
|
||||
<p>Be sure to extract the files with the Windows (CR+LF) line endings. ZIP
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<p>This directory contains solution and project files for
|
||||
Visual C++ 2010 or newer, named <tt>freetype.sln</tt>,
|
||||
and <tt>freetype.vcxproj</tt>. It compiles the following libraries
|
||||
from the FreeType 2.10.0 sources:</p>
|
||||
from the FreeType 2.10.1 sources:</p>
|
||||
|
||||
<ul>
|
||||
<li>freetype.dll using 'Release' or 'Debug' configurations</li>
|
||||
|
|
|
@ -185,7 +185,6 @@
|
|||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
EnableIntrinsicFunctions="true"
|
||||
AdditionalIncludeDirectories="..\..\..\include"
|
||||
PreprocessorDefinitions="_DEBUG;WIN32;_LIB;_CRT_SECURE_NO_WARNINGS;FT_DEBUG_LEVEL_ERROR;FT_DEBUG_LEVEL_TRACE;FT2_BUILD_LIBRARY;DLL_EXPORT"
|
||||
BasicRuntimeChecks="3"
|
||||
|
@ -259,10 +258,8 @@
|
|||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
EnableIntrinsicFunctions="true"
|
||||
AdditionalIncludeDirectories="..\..\..\include"
|
||||
PreprocessorDefinitions="_DEBUG;WIN32;_LIB;_CRT_SECURE_NO_WARNINGS;FT_DEBUG_LEVEL_ERROR;FT_DEBUG_LEVEL_TRACE;FT2_BUILD_LIBRARY"
|
||||
GeneratePreprocessedFile="0"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="1"
|
||||
DisableLanguageExtensions="true"
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<p>This directory contains project files <tt>freetype.dsp</tt> for
|
||||
Visual C++ 6.0, and <tt>freetype.vcproj</tt> for Visual C++ 2002
|
||||
through 2008, which you might need to upgrade automatically.
|
||||
It compiles the following libraries from the FreeType 2.10.0 sources:</p>
|
||||
It compiles the following libraries from the FreeType 2.10.1 sources:</p>
|
||||
|
||||
<ul>
|
||||
<li>freetype.dll using 'Release' or 'Debug' configurations</li>
|
||||
|
|
|
@ -54,7 +54,7 @@ BSC32=bscmake.exe
|
|||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\..\objs\freetype2100.lib"
|
||||
# ADD LIB32 /nologo /out:"..\..\..\objs\freetype2101.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "freetype - Win32 Debug"
|
||||
|
||||
|
@ -78,7 +78,7 @@ BSC32=bscmake.exe
|
|||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo
|
||||
# ADD LIB32 /nologo /out:"..\..\..\objs\freetype2100_D.lib"
|
||||
# ADD LIB32 /nologo /out:"..\..\..\objs\freetype2101_D.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "freetype - Win32 Debug Multithreaded"
|
||||
|
||||
|
@ -102,8 +102,8 @@ BSC32=bscmake.exe
|
|||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo /out:"lib\freetype2100_D.lib"
|
||||
# ADD LIB32 /nologo /out:"..\..\..\objs\freetype2100MT_D.lib"
|
||||
# ADD BASE LIB32 /nologo /out:"lib\freetype2101_D.lib"
|
||||
# ADD LIB32 /nologo /out:"..\..\..\objs\freetype2101MT_D.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "freetype - Win32 Release Multithreaded"
|
||||
|
||||
|
@ -126,8 +126,8 @@ BSC32=bscmake.exe
|
|||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo /out:"lib\freetype2100.lib"
|
||||
# ADD LIB32 /nologo /out:"..\..\..\objs\freetype2100MT.lib"
|
||||
# ADD BASE LIB32 /nologo /out:"lib\freetype2101.lib"
|
||||
# ADD LIB32 /nologo /out:"..\..\..\objs\freetype2101MT.lib"
|
||||
|
||||
!ELSEIF "$(CFG)" == "freetype - Win32 Release Singlethreaded"
|
||||
|
||||
|
@ -151,8 +151,8 @@ BSC32=bscmake.exe
|
|||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo /out:"..\..\..\objs\freetype2100.lib"
|
||||
# ADD LIB32 /out:"..\..\..\objs\freetype2100ST.lib"
|
||||
# ADD BASE LIB32 /nologo /out:"..\..\..\objs\freetype2101.lib"
|
||||
# ADD LIB32 /out:"..\..\..\objs\freetype2101ST.lib"
|
||||
# SUBTRACT LIB32 /nologo
|
||||
|
||||
!ELSEIF "$(CFG)" == "freetype - Win32 Debug Singlethreaded"
|
||||
|
@ -177,8 +177,8 @@ BSC32=bscmake.exe
|
|||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LIB32=link.exe -lib
|
||||
# ADD BASE LIB32 /nologo /out:"..\..\..\objs\freetype2100_D.lib"
|
||||
# ADD LIB32 /nologo /out:"..\..\..\objs\freetype2100ST_D.lib"
|
||||
# ADD BASE LIB32 /nologo /out:"..\..\..\objs\freetype2101_D.lib"
|
||||
# ADD LIB32 /nologo /out:"..\..\..\objs\freetype2101ST_D.lib"
|
||||
|
||||
!ENDIF
|
||||
|
||||
|
|
|
@ -87,7 +87,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -162,7 +162,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100MT.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101MT.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -237,7 +237,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100ST.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101ST.lib"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
|
@ -309,7 +309,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -382,7 +382,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100ST_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101ST_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -456,7 +456,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100MT_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101MT_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -534,7 +534,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -619,7 +619,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100MT.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101MT.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -704,7 +704,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100ST.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101ST.lib"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
|
@ -785,7 +785,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -867,7 +867,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100ST_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101ST_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -950,7 +950,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100MT_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101MT_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -1036,7 +1036,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -1121,7 +1121,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100MT.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101MT.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -1206,7 +1206,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100ST.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101ST.lib"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
|
@ -1287,7 +1287,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -1369,7 +1369,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100ST_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101ST_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -1452,7 +1452,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100MT_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101MT_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -1538,7 +1538,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -1623,7 +1623,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100MT.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101MT.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -1708,7 +1708,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100ST.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101ST.lib"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
|
@ -1789,7 +1789,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -1871,7 +1871,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100ST_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101ST_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -1954,7 +1954,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100MT_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101MT_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2040,7 +2040,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2125,7 +2125,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100MT.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101MT.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2210,7 +2210,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100ST.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101ST.lib"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
|
@ -2291,7 +2291,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2373,7 +2373,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100ST_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101ST_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2456,7 +2456,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100MT_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101MT_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2542,7 +2542,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2627,7 +2627,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100MT.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101MT.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2712,7 +2712,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100ST.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101ST.lib"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
|
@ -2793,7 +2793,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2875,7 +2875,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100ST_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101ST_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -2958,7 +2958,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100MT_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101MT_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -3044,7 +3044,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -3129,7 +3129,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100MT.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101MT.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -3214,7 +3214,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100ST.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101ST.lib"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
|
@ -3295,7 +3295,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -3377,7 +3377,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100ST_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101ST_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
@ -3460,7 +3460,7 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="..\..\..\objs\freetype2100MT_D.lib"
|
||||
OutputFile="..\..\..\objs\freetype2101MT_D.lib"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
|
|
|
@ -21,14 +21,14 @@ the following targets:
|
|||
<li>PPC/SP WM6 (Windows Mobile 6)</li>
|
||||
</ul>
|
||||
|
||||
It compiles the following libraries from the FreeType 2.10.0 sources:</p>
|
||||
It compiles the following libraries from the FreeType 2.10.1 sources:</p>
|
||||
|
||||
<ul>
|
||||
<pre>
|
||||
freetype2100.lib - release build; single threaded
|
||||
freetype2100_D.lib - debug build; single threaded
|
||||
freetype2100MT.lib - release build; multi-threaded
|
||||
freetype2100MT_D.lib - debug build; multi-threaded</pre>
|
||||
freetype2101.lib - release build; single threaded
|
||||
freetype2101_D.lib - debug build; single threaded
|
||||
freetype2101MT.lib - release build; multi-threaded
|
||||
freetype2101MT_D.lib - debug build; multi-threaded</pre>
|
||||
</ul>
|
||||
|
||||
<p>Be sure to extract the files with the Windows (CR+LF) line endings. ZIP
|
||||
|
|
56
external/freetype/docs/CHANGES
vendored
56
external/freetype/docs/CHANGES
vendored
|
@ -1,5 +1,59 @@
|
|||
|
||||
CHANGES BETWEEN 2.9.1 and 2.10
|
||||
CHANGES BETWEEN 2.10.0 and 2.10.1
|
||||
|
||||
I. IMPORTANT BUG FIXES
|
||||
|
||||
- The bytecode hinting of OpenType variation fonts was flawed, since
|
||||
the data in the `CVAR' table wasn't correctly applied.
|
||||
|
||||
|
||||
II. MISCELLANEOUS
|
||||
|
||||
- Auto-hinter support for Mongolian.
|
||||
|
||||
- For distribution, `.tar.bz2' packages are replaced with `.tar.xz'
|
||||
bundles.
|
||||
|
||||
- The handling of the default character in PCF fonts as introduced
|
||||
in version 2.10.0 was partially broken, causing premature abortion
|
||||
of charmap iteration for many fonts.
|
||||
|
||||
- If `FT_Set_Named_Instance' was called with the same arguments
|
||||
twice in a row, the function returned an incorrect error code the
|
||||
second time.
|
||||
|
||||
- Direct rendering using FT_RASTER_FLAG_DIRECT crashed (bug
|
||||
introduced in version 2.10.0).
|
||||
|
||||
- Increased precision while computing OpenType font variation
|
||||
instances.
|
||||
|
||||
- The flattening algorithm of cubic Bezier curves was slightly
|
||||
changed to make it faster. This can cause very subtle rendering
|
||||
changes, which aren't noticeable by the eye, however.
|
||||
|
||||
- The auto-hinter now disables hinting if there are blue zones
|
||||
defined for a `style' (i.e., a certain combination of a script and
|
||||
its related typographic features) but the font doesn't contain any
|
||||
characters needed to set up at least one blue zone.
|
||||
|
||||
- The `ftmulti' demo program now supports multiple hidden axes with
|
||||
the same name tag.
|
||||
|
||||
- `ftview', `ftstring', and `ftgrid' got a `-k' command line option
|
||||
to emulate a sequence of keystrokes at start-up.
|
||||
|
||||
- `ftview', `ftstring', and `ftgrid' now support screen dumping to a
|
||||
PNG file.
|
||||
|
||||
- The bytecode debugger, `ttdebug', now supports variation TrueType
|
||||
fonts; a variation font instance can be selected with the new `-d'
|
||||
command line option.
|
||||
|
||||
|
||||
======================================================================
|
||||
|
||||
CHANGES BETWEEN 2.9.1 and 2.10.0
|
||||
|
||||
I. IMPORTANT CHANGES
|
||||
|
||||
|
|
1
external/freetype/docs/VERSIONS.TXT
vendored
1
external/freetype/docs/VERSIONS.TXT
vendored
|
@ -52,6 +52,7 @@ on _most_ systems, but not all of them:
|
|||
|
||||
release libtool so
|
||||
-------------------------------
|
||||
2.10.1 23.1.17 6.17.1
|
||||
2.10.0 23.0.17 6.17.0
|
||||
2.9.1 22.1.16 6.16.1
|
||||
2.9.0 22.0.16 6.16.0
|
||||
|
|
2
external/freetype/docs/freetype-config.1
vendored
2
external/freetype/docs/freetype-config.1
vendored
|
@ -1,4 +1,4 @@
|
|||
.TH FREETYPE-CONFIG 1 "March 2019" "FreeType 2.10.0"
|
||||
.TH FREETYPE-CONFIG 1 "July 2019" "FreeType 2.10.1"
|
||||
.
|
||||
.
|
||||
.SH NAME
|
||||
|
|
12
external/freetype/docs/reference/site/404.html
vendored
12
external/freetype/docs/reference/site/404.html
vendored
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>FreeType-2.10.0 API Reference</title>
|
||||
<title>FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -94,7 +94,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="/index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="/index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="/images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -107,7 +107,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
|
||||
|
@ -162,12 +162,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="/index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="/index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="/images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>The auto-hinter - FreeType-2.10.0 API Reference</title>
|
||||
<title>The auto-hinter - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
The auto-hinter
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Base Interface - FreeType-2.10.0 API Reference</title>
|
||||
<title>Base Interface - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Base Interface
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
@ -2338,7 +2338,7 @@
|
|||
<p>For example, if you want to access Unicode value U+1F028 (and the font contains it), use value 0x1F028 as the input value for <code><a href="ft2-base_interface.html#ft_get_char_index">FT_Get_Char_Index</a></code>.</p>
|
||||
</td></tr>
|
||||
<tr><td class="val" id="ft_encoding_ms_symbol">FT_ENCODING_MS_SYMBOL</td><td class="desc">
|
||||
<p>Microsoft Symbol encoding, used to encode mathematical symbols and wingdings. For more information, see ‘<a href="https://www.microsoft.com/typography/otspec/recom.htm">https://www.microsoft.com/typography/otspec/recom.htm</a>’, ‘<a href="http://www.kostis.net/charsets/symbol.htm">http://www.kostis.net/charsets/symbol.htm</a>’, and ‘<a href="http://www.kostis.net/charsets/wingding.htm">http://www.kostis.net/charsets/wingding.htm</a>’.</p>
|
||||
<p>Microsoft Symbol encoding, used to encode mathematical symbols and wingdings. For more information, see ‘<a href="https://www.microsoft.com/typography/otspec/recom.htm#non-standard-symbol-fonts">https://www.microsoft.com/typography/otspec/recom.htm#non-standard-symbol-fonts</a>’, ‘<a href="http://www.kostis.net/charsets/symbol.htm">http://www.kostis.net/charsets/symbol.htm</a>’, and ‘<a href="http://www.kostis.net/charsets/wingding.htm">http://www.kostis.net/charsets/wingding.htm</a>’.</p>
|
||||
<p>This encoding uses character codes from the PUA (Private Unicode Area) in the range U+F020-U+F0FF.</p>
|
||||
</td></tr>
|
||||
<tr><td class="val" id="ft_encoding_sjis">FT_ENCODING_SJIS</td><td class="desc">
|
||||
|
@ -2972,6 +2972,7 @@
|
|||
</td></tr>
|
||||
<tr><td class="val" id="outline">outline</td><td class="desc">
|
||||
<p>The outline descriptor for the current glyph image if its format is <code><a href="ft2-basic_types.html#ft_glyph_format">FT_GLYPH_FORMAT_OUTLINE</a></code>. Once a glyph is loaded, <code>outline</code> can be transformed, distorted, emboldened, etc. However, it must not be freed.</p>
|
||||
<p>[Since 2.10.1] If <code><a href="ft2-base_interface.html#ft_load_xxx">FT_LOAD_NO_SCALE</a></code> is set, outline coordinates of OpenType variation fonts for a selected instance are internally handled as 26.6 fractional font units but returned as (rounded) integers, as expected. To get unrounded font units, don't use <code><a href="ft2-base_interface.html#ft_load_xxx">FT_LOAD_NO_SCALE</a></code> but load the glyph with <code><a href="ft2-base_interface.html#ft_load_xxx">FT_LOAD_NO_HINTING</a></code> and scale it, using the font's <code>units_per_EM</code> value as the ppem.</p>
|
||||
</td></tr>
|
||||
<tr><td class="val" id="num_subglyphs">num_subglyphs</td><td class="desc">
|
||||
<p>The number of subglyphs in a composite glyph. This field is only valid for the composite glyph format that should normally only be loaded with the <code><a href="ft2-base_interface.html#ft_load_xxx">FT_LOAD_NO_RECURSE</a></code> flag.</p>
|
||||
|
@ -4195,7 +4196,7 @@
|
|||
<pre>
|
||||
FT_EXPORT( <a href="ft2-basic_types.html#ft_uint">FT_UInt</a> )
|
||||
<b>FT_Get_Name_Index</b>( <a href="ft2-base_interface.html#ft_face">FT_Face</a> face,
|
||||
<a href="ft2-basic_types.html#ft_string">FT_String</a>* glyph_name );
|
||||
<span class="keyword">const</span> <a href="ft2-basic_types.html#ft_string">FT_String</a>* glyph_name );
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Basic Data Types - FreeType-2.10.0 API Reference</title>
|
||||
<title>Basic Data Types - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Basic Data Types
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>BDF and PCF Files - FreeType-2.10.0 API Reference</title>
|
||||
<title>BDF and PCF Files - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
BDF and PCF Files
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Bitmap Handling - FreeType-2.10.0 API Reference</title>
|
||||
<title>Bitmap Handling - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Bitmap Handling
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>BZIP2 Streams - FreeType-2.10.0 API Reference</title>
|
||||
<title>BZIP2 Streams - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
BZIP2 Streams
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Cache Sub-System - FreeType-2.10.0 API Reference</title>
|
||||
<title>Cache Sub-System - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Cache Sub-System
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>The CFF driver - FreeType-2.10.0 API Reference</title>
|
||||
<title>The CFF driver - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
The CFF driver
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>CID Fonts - FreeType-2.10.0 API Reference</title>
|
||||
<title>CID Fonts - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
CID Fonts
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Glyph Color Management - FreeType-2.10.0 API Reference</title>
|
||||
<title>Glyph Color Management - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Glyph Color Management
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Computations - FreeType-2.10.0 API Reference</title>
|
||||
<title>Computations - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Computations
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Error Code Values - FreeType-2.10.0 API Reference</title>
|
||||
<title>Error Code Values - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Error Code Values
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Error Enumerations - FreeType-2.10.0 API Reference</title>
|
||||
<title>Error Enumerations - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Error Enumerations
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
@ -1126,6 +1126,9 @@
|
|||
FT_EXPORT( <span class="keyword">const</span> <span class="keyword">char</span>* )
|
||||
<b>FT_Error_String</b>( <a href="ft2-basic_types.html#ft_error">FT_Error</a> error_code );
|
||||
|
||||
FT_END_HEADER
|
||||
|
||||
|
||||
#<span class="keyword">endif</span> /* FT_ERR_PROTOS_DEFINED */
|
||||
|
||||
#<span class="keyword">endif</span> /* FT_INCLUDE_ERR_PROTOS */
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Font Formats - FreeType-2.10.0 API Reference</title>
|
||||
<title>Font Formats - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Font Formats
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Gasp Table - FreeType-2.10.0 API Reference</title>
|
||||
<title>Gasp Table - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Gasp Table
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Glyph Management - FreeType-2.10.0 API Reference</title>
|
||||
<title>Glyph Management - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Glyph Management
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
@ -1403,7 +1403,7 @@
|
|||
<h4>note</h4>
|
||||
|
||||
<p>You can typecast an <code><a href="ft2-glyph_management.html#ft_glyph">FT_Glyph</a></code> to <code><a href="ft2-glyph_management.html#ft_outlineglyph">FT_OutlineGlyph</a></code> if you have <code>glyph->format == FT_GLYPH_FORMAT_OUTLINE</code>. This lets you access the outline's content easily.</p>
|
||||
<p>As the outline is extracted from a glyph slot, its coordinates are expressed normally in 26.6 pixels, unless the flag <code><a href="ft2-base_interface.html#ft_load_xxx">FT_LOAD_NO_SCALE</a></code> was used in <code><a href="ft2-base_interface.html#ft_load_glyph">FT_Load_Glyph</a></code>() or <code><a href="ft2-base_interface.html#ft_load_char">FT_Load_Char</a></code>().</p>
|
||||
<p>As the outline is extracted from a glyph slot, its coordinates are expressed normally in 26.6 pixels, unless the flag <code><a href="ft2-base_interface.html#ft_load_xxx">FT_LOAD_NO_SCALE</a></code> was used in <code><a href="ft2-base_interface.html#ft_load_glyph">FT_Load_Glyph</a></code> or <code><a href="ft2-base_interface.html#ft_load_char">FT_Load_Char</a></code>.</p>
|
||||
<p>The outline's tables are always owned by the object and are destroyed with it.</p>
|
||||
<hr>
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Glyph Stroker - FreeType-2.10.0 API Reference</title>
|
||||
<title>Glyph Stroker - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Glyph Stroker
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Unicode Variation Sequences - FreeType-2.10.0 API Reference</title>
|
||||
<title>Unicode Variation Sequences - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Unicode Variation Sequences
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>TrueTypeGX/AAT Validation - FreeType-2.10.0 API Reference</title>
|
||||
<title>TrueTypeGX/AAT Validation - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
TrueTypeGX/AAT Validation
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>GZIP Streams - FreeType-2.10.0 API Reference</title>
|
||||
<title>GZIP Streams - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
GZIP Streams
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Header File Macros - FreeType-2.10.0 API Reference</title>
|
||||
<title>Header File Macros - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Header File Macros
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>FreeType's header inclusion scheme - FreeType-2.10.0 API Reference</title>
|
||||
<title>FreeType's header inclusion scheme - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType's header inclusion scheme
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Incremental Loading - FreeType-2.10.0 API Reference</title>
|
||||
<title>Incremental Loading - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Incremental Loading
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Index - FreeType-2.10.0 API Reference</title>
|
||||
<title>Index - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -89,7 +89,7 @@
|
|||
<input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
|
||||
<label class="md-overlay" data-md-component="overlay" for="__drawer"></label>
|
||||
|
||||
<a href="#freetype-2100-api-reference" tabindex="1" class="md-skip">
|
||||
<a href="#freetype-2101-api-reference" tabindex="1" class="md-skip">
|
||||
Skip to content
|
||||
</a>
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Index
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
@ -1218,7 +1218,7 @@
|
|||
|
||||
<p><a href="https://www.freetype.org">FreeType</a> » <a href="../">Docs</a> » Global Index</p>
|
||||
<hr />
|
||||
<h1 id="freetype-2100-api-reference">FreeType-2.10.0 API Reference<a class="headerlink" href="#freetype-2100-api-reference" title="Permanent link">¶</a></h1>
|
||||
<h1 id="freetype-2101-api-reference">FreeType-2.10.1 API Reference<a class="headerlink" href="#freetype-2101-api-reference" title="Permanent link">¶</a></h1>
|
||||
<h3 id="b">B<a class="headerlink" href="#b" title="Permanent link">¶</a></h3>
|
||||
<p><a href="ft2-bdf_fonts.html#bdf_property">BDF_Property</a><br />
|
||||
<a href="ft2-bdf_fonts.html#bdf_propertytype">BDF_PROPERTY_TYPE_ATOM</a><br />
|
||||
|
@ -2056,7 +2056,7 @@
|
|||
<h3 id="w">W<a class="headerlink" href="#w" title="Permanent link">¶</a></h3>
|
||||
<p><a href="ft2-properties.html#warping">warping</a> </p>
|
||||
<hr />
|
||||
<div class="timestamp">generated on Fri Mar 15 07:01:13 2019 UTC</div>
|
||||
<div class="timestamp">generated on Mon Jul 1 15:55:30 2019 UTC</div>
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Glyph Layer Management - FreeType-2.10.0 API Reference</title>
|
||||
<title>Glyph Layer Management - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Glyph Layer Management
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Subpixel Rendering - FreeType-2.10.0 API Reference</title>
|
||||
<title>Subpixel Rendering - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Subpixel Rendering
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>List Processing - FreeType-2.10.0 API Reference</title>
|
||||
<title>List Processing - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
List Processing
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>LZW Streams - FreeType-2.10.0 API Reference</title>
|
||||
<title>LZW Streams - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
LZW Streams
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Mac Specific Interface - FreeType-2.10.0 API Reference</title>
|
||||
<title>Mac Specific Interface - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Mac Specific Interface
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Module Management - FreeType-2.10.0 API Reference</title>
|
||||
<title>Module Management - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Module Management
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
@ -2093,7 +2093,7 @@
|
|||
<p>Defined in FT_MODULE_H (freetype/ftmodapi.h).</p>
|
||||
<div class = "codehilite">
|
||||
<pre>
|
||||
<span class="keyword">typedef</span> <span class="keyword">void</span>
|
||||
<span class="keyword">typedef</span> <a href="ft2-basic_types.html#ft_error">FT_Error</a>
|
||||
(*<b>FT_DebugHook_Func</b>)( <span class="keyword">void</span>* arg );
|
||||
</pre>
|
||||
</div>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Multiple Masters - FreeType-2.10.0 API Reference</title>
|
||||
<title>Multiple Masters - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Multiple Masters
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>OpenType Validation - FreeType-2.10.0 API Reference</title>
|
||||
<title>OpenType Validation - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
OpenType Validation
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Outline Processing - FreeType-2.10.0 API Reference</title>
|
||||
<title>Outline Processing - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Outline Processing
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
@ -1846,7 +1846,7 @@
|
|||
</pre>
|
||||
</div>
|
||||
|
||||
<p>Render an outline within a bitmap using the current scan-convert. This function uses an <code><a href="ft2-raster.html#ft_raster_params">FT_Raster_Params</a></code> structure as an argument, allowing advanced features like direct composition, translucency, etc.</p>
|
||||
<p>Render an outline within a bitmap using the current scan-convert.</p>
|
||||
<h4>input</h4>
|
||||
|
||||
<table class="fields">
|
||||
|
@ -1871,7 +1871,7 @@
|
|||
<p>FreeType error code. 0 means success.</p>
|
||||
<h4>note</h4>
|
||||
|
||||
<p>You should know what you are doing and how <code><a href="ft2-raster.html#ft_raster_params">FT_Raster_Params</a></code> works to use this function.</p>
|
||||
<p>This advanced function uses <code><a href="ft2-raster.html#ft_raster_params">FT_Raster_Params</a></code> as an argument, allowing FreeType rasterizer to be used for direct composition, translucency, etc. You should know how to set up <code><a href="ft2-raster.html#ft_raster_params">FT_Raster_Params</a></code> for this function to work.</p>
|
||||
<p>The field <code>params.source</code> will be set to <code>outline</code> before the scan converter is called, which means that the value you give to it is actually ignored.</p>
|
||||
<p>The gray-level rasterizer always uses 256 gray levels. If you want less gray levels, you have to provide your own span callback. See the <code><a href="ft2-raster.html#ft_raster_flag_xxx">FT_RASTER_FLAG_DIRECT</a></code> value of the <code>flags</code> field in the <code><a href="ft2-raster.html#ft_raster_params">FT_Raster_Params</a></code> structure for more details.</p>
|
||||
<hr>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Parameter Tags - FreeType-2.10.0 API Reference</title>
|
||||
<title>Parameter Tags - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Parameter Tags
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>The PCF driver - FreeType-2.10.0 API Reference</title>
|
||||
<title>The PCF driver - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
The PCF driver
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>PFR Fonts - FreeType-2.10.0 API Reference</title>
|
||||
<title>PFR Fonts - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
PFR Fonts
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Driver properties - FreeType-2.10.0 API Reference</title>
|
||||
<title>Driver properties - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Driver properties
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Quick retrieval of advance values - FreeType-2.10.0 API Reference</title>
|
||||
<title>Quick retrieval of advance values - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Quick retrieval of advance values
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Scanline Converter - FreeType-2.10.0 API Reference</title>
|
||||
<title>Scanline Converter - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Scanline Converter
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
@ -1316,7 +1316,7 @@
|
|||
|
||||
<table class="fields">
|
||||
<tr><td class="val" id="y">y</td><td class="desc">
|
||||
<p>The scanline's y coordinate.</p>
|
||||
<p>The scanline's upward y coordinate.</p>
|
||||
</td></tr>
|
||||
<tr><td class="val" id="count">count</td><td class="desc">
|
||||
<p>The number of spans to draw on this scanline.</p>
|
||||
|
@ -1355,7 +1355,7 @@
|
|||
</pre>
|
||||
</div>
|
||||
|
||||
<p>A structure to hold the arguments used by a raster's render function.</p>
|
||||
<p>A structure to hold the parameters used by a raster's render function, passed as an argument to <code><a href="ft2-outline_processing.html#ft_outline_render">FT_Outline_Render</a></code>.</p>
|
||||
<h4>fields</h4>
|
||||
|
||||
<table class="fields">
|
||||
|
@ -1423,12 +1423,11 @@
|
|||
<p>This flag is set to indicate that an anti-aliased glyph image should be generated. Otherwise, it will be monochrome (1-bit).</p>
|
||||
</td></tr>
|
||||
<tr><td class="val" id="ft_raster_flag_direct">FT_RASTER_FLAG_DIRECT</td><td class="desc">
|
||||
<p>This flag is set to indicate direct rendering. In this mode, client applications must provide their own span callback. This lets them directly draw or compose over an existing bitmap. If this bit is not set, the target pixmap's buffer <em>must</em> be zeroed before rendering.</p>
|
||||
<p>This flag is set to indicate direct rendering. In this mode, client applications must provide their own span callback. This lets them directly draw or compose over an existing bitmap. If this bit is <em>not</em> set, the target pixmap's buffer <em>must</em> be zeroed before rendering and the output will be clipped to its size.</p>
|
||||
<p>Direct rendering is only possible with anti-aliased glyphs.</p>
|
||||
</td></tr>
|
||||
<tr><td class="val" id="ft_raster_flag_clip">FT_RASTER_FLAG_CLIP</td><td class="desc">
|
||||
<p>This flag is only used in direct rendering mode. If set, the output will be clipped to a box specified in the <code>clip_box</code> field of the <code><a href="ft2-raster.html#ft_raster_params">FT_Raster_Params</a></code> structure.</p>
|
||||
<p>Note that by default, the glyph bitmap is clipped to the target pixmap, except in direct rendering mode where all spans are generated if no clipping box is set.</p>
|
||||
<p>This flag is only used in direct rendering mode. If set, the output will be clipped to a box specified in the <code>clip_box</code> field of the <code><a href="ft2-raster.html#ft_raster_params">FT_Raster_Params</a></code> structure. Otherwise, the <code>clip_box</code> is effectively set to the bounding box and all spans are generated.</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>SFNT Names - FreeType-2.10.0 API Reference</title>
|
||||
<title>SFNT Names - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
SFNT Names
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Size Management - FreeType-2.10.0 API Reference</title>
|
||||
<title>Size Management - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Size Management
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>System Interface - FreeType-2.10.0 API Reference</title>
|
||||
<title>System Interface - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
System Interface
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>The Type 1 and CID drivers - FreeType-2.10.0 API Reference</title>
|
||||
<title>The Type 1 and CID drivers - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
The Type 1 and CID drivers
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>The TrueType Engine - FreeType-2.10.0 API Reference</title>
|
||||
<title>The TrueType Engine - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
The TrueType Engine
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>TrueType Tables - FreeType-2.10.0 API Reference</title>
|
||||
<title>TrueType Tables - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
TrueType Tables
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>The TrueType driver - FreeType-2.10.0 API Reference</title>
|
||||
<title>The TrueType driver - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
The TrueType driver
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Type 1 Tables - FreeType-2.10.0 API Reference</title>
|
||||
<title>Type 1 Tables - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Type 1 Tables
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>User allocation - FreeType-2.10.0 API Reference</title>
|
||||
<title>User allocation - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
User allocation
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>FreeType Version - FreeType-2.10.0 API Reference</title>
|
||||
<title>FreeType Version - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType Version
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
@ -1234,7 +1234,7 @@
|
|||
<pre>
|
||||
#<span class="keyword">define</span> <a href="ft2-version.html#freetype_major">FREETYPE_MAJOR</a> 2
|
||||
#<span class="keyword">define</span> <a href="ft2-version.html#freetype_minor">FREETYPE_MINOR</a> 10
|
||||
#<span class="keyword">define</span> <a href="ft2-version.html#freetype_patch">FREETYPE_PATCH</a> 0
|
||||
#<span class="keyword">define</span> <a href="ft2-version.html#freetype_patch">FREETYPE_PATCH</a> 1
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>Window FNT Files - FreeType-2.10.0 API Reference</title>
|
||||
<title>Window FNT Files - FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
Window FNT Files
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
@ -1151,7 +1151,7 @@
|
|||
</pre>
|
||||
</div>
|
||||
|
||||
<p>A list of valid values for the <code>charset</code> byte in <code><a href="ft2-winfnt_fonts.html#ft_winfnt_headerrec">FT_WinFNT_HeaderRec</a></code>. Exact mapping tables for the various ‘cpXXXX’ encodings (except for ‘cp1361’) can be found at ‘<a href="ftp://ftp.unicode.org/Public">ftp://ftp.unicode.org/Public</a>’ in the <code>MAPPINGS/VENDORS/MICSFT/WINDOWS</code> subdirectory. ‘cp1361’ is roughly a superset of <code>MAPPINGS/OBSOLETE/EASTASIA/KSC/JOHAB.TXT</code>.</p>
|
||||
<p>A list of valid values for the <code>charset</code> byte in <code><a href="ft2-winfnt_fonts.html#ft_winfnt_headerrec">FT_WinFNT_HeaderRec</a></code>. Exact mapping tables for the various ‘cpXXXX’ encodings (except for ‘cp1361’) can be found at ‘<a href="ftp://ftp.unicode.org/Public/">ftp://ftp.unicode.org/Public/</a>’ in the <code>MAPPINGS/VENDORS/MICSFT/WINDOWS</code> subdirectory. ‘cp1361’ is roughly a superset of <code>MAPPINGS/OBSOLETE/EASTASIA/KSC/JOHAB.TXT</code>.</p>
|
||||
<h4>values</h4>
|
||||
|
||||
<table class="fields">
|
||||
|
|
18
external/freetype/docs/reference/site/index.html
vendored
18
external/freetype/docs/reference/site/index.html
vendored
|
@ -10,7 +10,7 @@
|
|||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.0">
|
||||
<meta name="description" content="API Reference Documentation for FreeType-2.10.1">
|
||||
|
||||
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
|
||||
<title>FreeType-2.10.0 API Reference</title>
|
||||
<title>FreeType-2.10.1 API Reference</title>
|
||||
|
||||
|
||||
|
||||
|
@ -89,7 +89,7 @@
|
|||
<input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
|
||||
<label class="md-overlay" data-md-component="overlay" for="__drawer"></label>
|
||||
|
||||
<a href="#freetype-2100-api-reference" tabindex="1" class="md-skip">
|
||||
<a href="#freetype-2101-api-reference" tabindex="1" class="md-skip">
|
||||
Skip to content
|
||||
</a>
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
|||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-header-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-header-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="24" height="24">
|
||||
|
||||
|
@ -111,7 +111,7 @@
|
|||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
|
||||
<span class="md-header-nav__topic">
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</span>
|
||||
<span class="md-header-nav__topic">
|
||||
TOC
|
||||
|
@ -166,12 +166,12 @@
|
|||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="FreeType-2.10.0 API Reference" class="md-nav__button md-logo">
|
||||
<a href="index.html" title="FreeType-2.10.1 API Reference" class="md-nav__button md-logo">
|
||||
|
||||
<img src="images/favico.ico" width="48" height="48">
|
||||
|
||||
</a>
|
||||
FreeType-2.10.0 API Reference
|
||||
FreeType-2.10.1 API Reference
|
||||
</label>
|
||||
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
|
@ -1019,7 +1019,7 @@
|
|||
|
||||
<p><a href="https://www.freetype.org">FreeType</a> » <a href="../">Docs</a> » Table of Contents</p>
|
||||
<hr />
|
||||
<h1 id="freetype-2100-api-reference">FreeType-2.10.0 API Reference<a class="headerlink" href="#freetype-2100-api-reference" title="Permanent link">¶</a></h1>
|
||||
<h1 id="freetype-2101-api-reference">FreeType-2.10.1 API Reference<a class="headerlink" href="#freetype-2101-api-reference" title="Permanent link">¶</a></h1>
|
||||
<h1 id="table-of-contents">Table of Contents<a class="headerlink" href="#table-of-contents" title="Permanent link">¶</a></h1>
|
||||
<h2 id="general-remarks">General Remarks<a class="headerlink" href="#general-remarks" title="Permanent link">¶</a></h2>
|
||||
<table class="toc">
|
||||
|
@ -1202,7 +1202,7 @@
|
|||
|
||||
<h2 id="global-index"><a href="ft2-index.html">Global Index</a><a class="headerlink" href="#global-index" title="Permanent link">¶</a></h2>
|
||||
<hr />
|
||||
<div class="timestamp">generated on Fri Mar 15 07:01:13 2019 UTC</div>
|
||||
<div class="timestamp">generated on Mon Jul 1 15:55:30 2019 UTC</div>
|
||||
|
||||
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
102
external/freetype/docs/reference/site/sitemap.xml
vendored
102
external/freetype/docs/reference/site/sitemap.xml
vendored
|
@ -2,257 +2,257 @@
|
|||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-03-15</lastmod>
|
||||
<lastmod>2019-07-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
</urlset>
|
BIN
external/freetype/docs/reference/site/sitemap.xml.gz
vendored
BIN
external/freetype/docs/reference/site/sitemap.xml.gz
vendored
Binary file not shown.
12
external/freetype/docs/release
vendored
12
external/freetype/docs/release
vendored
|
@ -58,10 +58,10 @@ How to prepare a new release
|
|||
if necessary).
|
||||
|
||||
. Say `make dist' in both the freetype2 and freetype2-demos modules
|
||||
to generate the .tar.gz, .tar.bz2, and .zip files.
|
||||
to generate the .tar.gz, .tar.xz, and .zip files.
|
||||
|
||||
. Create the doc bundles (freetype-doc-<version>.tar.gz,
|
||||
freetype-doc-<version>.tar.bz2, ftdoc<version>.zip). This is
|
||||
freetype-doc-<version>.tar.xz, ftdoc<version>.zip). This is
|
||||
everything in
|
||||
|
||||
<freetype-web git repository>/freetype2/docs
|
||||
|
@ -87,13 +87,13 @@ How to prepare a new release
|
|||
version=`echo $VERSION | sed "s/\\.//g"`
|
||||
|
||||
FREETYPE_PACKAGES="freetype-$VERSION.tar.gz \
|
||||
freetype-$VERSION.tar.bz2 \
|
||||
freetype-$VERSION.tar.xz \
|
||||
ft$version.zip"
|
||||
FT2DEMOS_PACKAGES="ft2demos-$VERSION.tar.gz \
|
||||
ft2demos-$VERSION.tar.bz2 \
|
||||
ft2demos-$VERSION.tar.xz \
|
||||
ftdmo$version.zip"
|
||||
FTDOC_PACKAGES="freetype-doc-$VERSION.tar.gz \
|
||||
freetype-doc-$VERSION.tar.bz2 \
|
||||
freetype-doc-$VERSION.tar.xz \
|
||||
ftdoc$version.zip"
|
||||
|
||||
PACKAGE_LIST="$FREETYPE_PACKAGES \
|
||||
|
@ -171,7 +171,7 @@ How to prepare a new release
|
|||
# EOF
|
||||
|
||||
. On SourceForge, tag the just uploaded `ftXXX.zip' and
|
||||
`freetype-XXX.tar.bz2' files as the default files to download for
|
||||
`freetype-XXX.tar.xz' files as the default files to download for
|
||||
`Windows' and `Others', respectively.
|
||||
|
||||
. Copy the reference files (generated by `make dist') to
|
||||
|
|
13
external/freetype/include/freetype/freetype.h
vendored
13
external/freetype/include/freetype/freetype.h
vendored
|
@ -645,7 +645,7 @@ FT_BEGIN_HEADER
|
|||
* FT_ENCODING_MS_SYMBOL ::
|
||||
* Microsoft Symbol encoding, used to encode mathematical symbols and
|
||||
* wingdings. For more information, see
|
||||
* 'https://www.microsoft.com/typography/otspec/recom.htm',
|
||||
* 'https://www.microsoft.com/typography/otspec/recom.htm#non-standard-symbol-fonts',
|
||||
* 'http://www.kostis.net/charsets/symbol.htm', and
|
||||
* 'http://www.kostis.net/charsets/wingding.htm'.
|
||||
*
|
||||
|
@ -1766,6 +1766,13 @@ FT_BEGIN_HEADER
|
|||
* transformed, distorted, emboldened, etc. However, it must not be
|
||||
* freed.
|
||||
*
|
||||
* [Since 2.10.1] If @FT_LOAD_NO_SCALE is set, outline coordinates of
|
||||
* OpenType variation fonts for a selected instance are internally
|
||||
* handled as 26.6 fractional font units but returned as (rounded)
|
||||
* integers, as expected. To get unrounded font units, don't use
|
||||
* @FT_LOAD_NO_SCALE but load the glyph with @FT_LOAD_NO_HINTING and
|
||||
* scale it, using the font's `units_per_EM` value as the ppem.
|
||||
*
|
||||
* num_subglyphs ::
|
||||
* The number of subglyphs in a composite glyph. This field is only
|
||||
* valid for the composite glyph format that should normally only be
|
||||
|
@ -3933,7 +3940,7 @@ FT_BEGIN_HEADER
|
|||
*/
|
||||
FT_EXPORT( FT_UInt )
|
||||
FT_Get_Name_Index( FT_Face face,
|
||||
FT_String* glyph_name );
|
||||
const FT_String* glyph_name );
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
|
@ -4774,7 +4781,7 @@ FT_BEGIN_HEADER
|
|||
*/
|
||||
#define FREETYPE_MAJOR 2
|
||||
#define FREETYPE_MINOR 10
|
||||
#define FREETYPE_PATCH 0
|
||||
#define FREETYPE_PATCH 1
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
|
|
|
@ -244,6 +244,8 @@
|
|||
#define FT_ERR_PROTOS_DEFINED
|
||||
|
||||
|
||||
FT_BEGIN_HEADER
|
||||
|
||||
/**************************************************************************
|
||||
*
|
||||
* @function:
|
||||
|
@ -274,6 +276,8 @@
|
|||
FT_EXPORT( const char* )
|
||||
FT_Error_String( FT_Error error_code );
|
||||
|
||||
FT_END_HEADER
|
||||
|
||||
|
||||
#endif /* FT_ERR_PROTOS_DEFINED */
|
||||
|
||||
|
|
2
external/freetype/include/freetype/ftglyph.h
vendored
2
external/freetype/include/freetype/ftglyph.h
vendored
|
@ -210,7 +210,7 @@ FT_BEGIN_HEADER
|
|||
*
|
||||
* As the outline is extracted from a glyph slot, its coordinates are
|
||||
* expressed normally in 26.6 pixels, unless the flag @FT_LOAD_NO_SCALE
|
||||
* was used in @FT_Load_Glyph() or @FT_Load_Char().
|
||||
* was used in @FT_Load_Glyph or @FT_Load_Char.
|
||||
*
|
||||
* The outline's tables are always owned by the object and are destroyed
|
||||
* with it.
|
||||
|
|
16
external/freetype/include/freetype/ftimage.h
vendored
16
external/freetype/include/freetype/ftimage.h
vendored
|
@ -869,7 +869,7 @@ FT_BEGIN_HEADER
|
|||
*
|
||||
* @input:
|
||||
* y ::
|
||||
* The scanline's y~coordinate.
|
||||
* The scanline's upward y~coordinate.
|
||||
*
|
||||
* count ::
|
||||
* The number of spans to draw on this scanline.
|
||||
|
@ -945,19 +945,16 @@ FT_BEGIN_HEADER
|
|||
* This flag is set to indicate direct rendering. In this mode, client
|
||||
* applications must provide their own span callback. This lets them
|
||||
* directly draw or compose over an existing bitmap. If this bit is
|
||||
* not set, the target pixmap's buffer _must_ be zeroed before
|
||||
* rendering.
|
||||
* _not_ set, the target pixmap's buffer _must_ be zeroed before
|
||||
* rendering and the output will be clipped to its size.
|
||||
*
|
||||
* Direct rendering is only possible with anti-aliased glyphs.
|
||||
*
|
||||
* FT_RASTER_FLAG_CLIP ::
|
||||
* This flag is only used in direct rendering mode. If set, the output
|
||||
* will be clipped to a box specified in the `clip_box` field of the
|
||||
* @FT_Raster_Params structure.
|
||||
*
|
||||
* Note that by default, the glyph bitmap is clipped to the target
|
||||
* pixmap, except in direct rendering mode where all spans are
|
||||
* generated if no clipping box is set.
|
||||
* @FT_Raster_Params structure. Otherwise, the `clip_box` is
|
||||
* effectively set to the bounding box and all spans are generated.
|
||||
*/
|
||||
#define FT_RASTER_FLAG_DEFAULT 0x0
|
||||
#define FT_RASTER_FLAG_AA 0x1
|
||||
|
@ -978,7 +975,8 @@ FT_BEGIN_HEADER
|
|||
* FT_Raster_Params
|
||||
*
|
||||
* @description:
|
||||
* A structure to hold the arguments used by a raster's render function.
|
||||
* A structure to hold the parameters used by a raster's render function,
|
||||
* passed as an argument to @FT_Outline_Render.
|
||||
*
|
||||
* @fields:
|
||||
* target ::
|
||||
|
|
|
@ -623,7 +623,7 @@ FT_BEGIN_HEADER
|
|||
* it is bytecode interpreter's execution context, `TT_ExecContext`,
|
||||
* which is declared in FreeType's internal header file `tttypes.h`.
|
||||
*/
|
||||
typedef void
|
||||
typedef FT_Error
|
||||
(*FT_DebugHook_Func)( void* arg );
|
||||
|
||||
|
||||
|
|
8
external/freetype/include/freetype/ftoutln.h
vendored
8
external/freetype/include/freetype/ftoutln.h
vendored
|
@ -466,8 +466,6 @@ FT_BEGIN_HEADER
|
|||
*
|
||||
* @description:
|
||||
* Render an outline within a bitmap using the current scan-convert.
|
||||
* This function uses an @FT_Raster_Params structure as an argument,
|
||||
* allowing advanced features like direct composition, translucency, etc.
|
||||
*
|
||||
* @input:
|
||||
* library ::
|
||||
|
@ -485,8 +483,10 @@ FT_BEGIN_HEADER
|
|||
* FreeType error code. 0~means success.
|
||||
*
|
||||
* @note:
|
||||
* You should know what you are doing and how @FT_Raster_Params works to
|
||||
* use this function.
|
||||
* This advanced function uses @FT_Raster_Params as an argument,
|
||||
* allowing FreeType rasterizer to be used for direct composition,
|
||||
* translucency, etc. You should know how to set up @FT_Raster_Params
|
||||
* for this function to work.
|
||||
*
|
||||
* The field `params.source` will be set to `outline` before the scan
|
||||
* converter is called, which means that the value you give to it is
|
||||
|
|
|
@ -58,7 +58,7 @@ FT_BEGIN_HEADER
|
|||
* @description:
|
||||
* A list of valid values for the `charset` byte in @FT_WinFNT_HeaderRec.
|
||||
* Exact mapping tables for the various 'cpXXXX' encodings (except for
|
||||
* 'cp1361') can be found at 'ftp://ftp.unicode.org/Public' in the
|
||||
* 'cp1361') can be found at 'ftp://ftp.unicode.org/Public/' in the
|
||||
* `MAPPINGS/VENDORS/MICSFT/WINDOWS` subdirectory. 'cp1361' is roughly a
|
||||
* superset of `MAPPINGS/OBSOLETE/EASTASIA/KSC/JOHAB.TXT`.
|
||||
*
|
||||
|
|
|
@ -378,6 +378,7 @@ FT_BEGIN_HEADER
|
|||
#if FT_SIZEOF_INT == 4
|
||||
|
||||
#include <intrin.h>
|
||||
#pragma intrinsic( _BitScanReverse )
|
||||
|
||||
static __inline FT_Int32
|
||||
FT_MSB_i386( FT_UInt32 x )
|
||||
|
@ -385,7 +386,6 @@ FT_BEGIN_HEADER
|
|||
unsigned long where;
|
||||
|
||||
|
||||
/* not available in older VC versions */
|
||||
_BitScanReverse( &where, x );
|
||||
|
||||
return (FT_Int32)where;
|
||||
|
|
|
@ -278,14 +278,12 @@ FT_BEGIN_HEADER
|
|||
#ifdef FT_CONFIG_OPTION_SUBPIXEL_RENDERING
|
||||
|
||||
typedef void (*FT_Bitmap_LcdFilterFunc)( FT_Bitmap* bitmap,
|
||||
FT_Render_Mode render_mode,
|
||||
FT_Byte* weights );
|
||||
|
||||
|
||||
/* This is the default LCD filter, an in-place, 5-tap FIR filter. */
|
||||
FT_BASE( void )
|
||||
ft_lcd_filter_fir( FT_Bitmap* bitmap,
|
||||
FT_Render_Mode mode,
|
||||
FT_LcdFiveTapFilter weights );
|
||||
|
||||
#endif /* FT_CONFIG_OPTION_SUBPIXEL_RENDERING */
|
||||
|
@ -942,7 +940,7 @@ FT_BEGIN_HEADER
|
|||
|
||||
typedef FT_UInt
|
||||
(*FT_Face_GetGlyphNameIndexFunc)( FT_Face face,
|
||||
FT_String* glyph_name );
|
||||
const FT_String* glyph_name );
|
||||
|
||||
|
||||
#ifndef FT_CONFIG_OPTION_NO_DEFAULT_SYSTEM
|
||||
|
|
|
@ -165,6 +165,17 @@ FT_BEGIN_HEADER
|
|||
#define FT_BYTE_U32( p, i, s ) ( FT_UINT32( FT_BYTE_( p, i ) ) << (s) )
|
||||
|
||||
|
||||
/*
|
||||
* function acts on increases does range for emits
|
||||
* pointer checking frames error
|
||||
* -------------------------------------------------------------------
|
||||
* FT_PEEK_XXX buffer pointer no no no no
|
||||
* FT_NEXT_XXX buffer pointer yes no no no
|
||||
* FT_GET_XXX stream->cursor yes yes yes no
|
||||
* FT_READ_XXX stream->pos yes yes no yes
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
* `FT_PEEK_XXX' are generic macros to get data from a buffer position. No
|
||||
* safety checks are performed.
|
||||
|
|
|
@ -48,6 +48,7 @@ FT_TRACE_DEF( cache ) /* cache sub-system (ftcache.c, etc.) */
|
|||
/* SFNT driver components */
|
||||
FT_TRACE_DEF( sfdriver ) /* SFNT font driver (sfdriver.c) */
|
||||
FT_TRACE_DEF( sfobjs ) /* SFNT object handler (sfobjs.c) */
|
||||
FT_TRACE_DEF( sfwoff ) /* WOFF format handler (sfwoff.c) */
|
||||
FT_TRACE_DEF( ttbdf ) /* TrueType embedded BDF (ttbdf.c) */
|
||||
FT_TRACE_DEF( ttcmap ) /* charmap handler (ttcmap.c) */
|
||||
FT_TRACE_DEF( ttcolr ) /* glyph layer table (ttcolr.c) */
|
||||
|
|
|
@ -40,6 +40,7 @@
|
|||
|
||||
#define FT_INTERNAL_TRUETYPE_TYPES_H <freetype/internal/tttypes.h>
|
||||
#define FT_INTERNAL_TYPE1_TYPES_H <freetype/internal/t1types.h>
|
||||
#define FT_INTERNAL_WOFF_TYPES_H <freetype/internal/wofftypes.h>
|
||||
|
||||
#define FT_INTERNAL_POSTSCRIPT_AUX_H <freetype/internal/psaux.h>
|
||||
#define FT_INTERNAL_POSTSCRIPT_HINTS_H <freetype/internal/pshints.h>
|
||||
|
|
|
@ -98,7 +98,7 @@ FT_BEGIN_HEADER
|
|||
FT_Error
|
||||
(*add)( PS_Table table,
|
||||
FT_Int idx,
|
||||
void* object,
|
||||
const void* object,
|
||||
FT_UInt length );
|
||||
|
||||
void
|
||||
|
|
|
@ -42,7 +42,7 @@ FT_BEGIN_HEADER
|
|||
|
||||
typedef FT_UInt
|
||||
(*FT_GlyphDict_NameIndexFunc)( FT_Face face,
|
||||
FT_String* glyph_name );
|
||||
const FT_String* glyph_name );
|
||||
|
||||
|
||||
FT_DEFINE_SERVICE( GlyphDict )
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue