зеркало из https://github.com/stride3d/freetype.git
[truetype] Set the `subpixel_positioned' flag unconditionally.
This is how the code currently behaves. * src/truetype/ttgload.c (tt_loader_init): Do it.
This commit is contained in:
Родитель
124709657a
Коммит
b3953aa7c4
|
@ -1,3 +1,11 @@
|
|||
2012-06-28 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[truetype] Set the `subpixel_positioned' flag unconditionally.
|
||||
|
||||
This is how the code currently behaves.
|
||||
|
||||
* src/truetype/ttgload.c (tt_loader_init): Do it.
|
||||
|
||||
2012-06-27 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
Fix conditional compilation.
|
||||
|
|
|
@ -1923,6 +1923,7 @@
|
|||
FT_Bool compatible_widths;
|
||||
FT_Bool symmetrical_smoothing;
|
||||
FT_Bool bgr;
|
||||
FT_Bool subpixel_positioned;
|
||||
#endif
|
||||
#endif /* TT_CONFIG_OPTION_SUBPIXEL_HINTING */
|
||||
|
||||
|
@ -1969,6 +1970,7 @@
|
|||
exec->compatible_widths = SPH_OPTION_SET_COMPATIBLE_WIDTHS;
|
||||
exec->symmetrical_smoothing = FALSE;
|
||||
exec->bgr = FALSE;
|
||||
exec->subpixel_positioned = TRUE;
|
||||
#else /* 0 */
|
||||
exec->compatible_widths =
|
||||
FT_BOOL( FT_LOAD_TARGET_MODE( load_flags ) !=
|
||||
|
@ -1979,6 +1981,9 @@
|
|||
exec->bgr =
|
||||
FT_BOOL( FT_LOAD_TARGET_MODE( load_flags ) !=
|
||||
TT_LOAD_BGR );
|
||||
exec->subpixel_positioned =
|
||||
FT_BOOL( FT_LOAD_TARGET_MODE( load_flags ) !=
|
||||
TT_LOAD_SUBPIXEL_POSITIONED );
|
||||
#endif /* 0 */
|
||||
|
||||
#else /* !TT_CONFIG_OPTION_SUBPIXEL_HINTING */
|
||||
|
|
Загрузка…
Ссылка в новой задаче