Documentation improvements.
This commit is contained in:
parent
2ba871b289
commit
e2d73df77d
10
docs/CHANGES
10
docs/CHANGES
|
@ -1,7 +1,13 @@
|
||||||
|
|
||||||
CHANGES BETWEEN 2.4.12 and 2.5
|
CHANGES BETWEEN 2.4.12 and 2.5
|
||||||
|
|
||||||
I. IMPORTANT CHANGES
|
I. IMPORTANT BUG FIXES
|
||||||
|
|
||||||
|
- The cache manager function `FTC_Manager_Reset' didn't flush the
|
||||||
|
cache.
|
||||||
|
|
||||||
|
|
||||||
|
II. IMPORTANT CHANGES
|
||||||
|
|
||||||
- Behdad Esfahbod (on behalf of Google) contributed support for
|
- Behdad Esfahbod (on behalf of Google) contributed support for
|
||||||
color embedded bitmaps (eg. color emoji).
|
color embedded bitmaps (eg. color emoji).
|
||||||
|
@ -31,7 +37,7 @@ CHANGES BETWEEN 2.4.12 and 2.5
|
||||||
obsolete.
|
obsolete.
|
||||||
|
|
||||||
|
|
||||||
II. MISCELLANEOUS
|
III. MISCELLANEOUS
|
||||||
|
|
||||||
- The property API (`FT_Property_Get' and `FT_Property_Set') is
|
- The property API (`FT_Property_Get' and `FT_Property_Set') is
|
||||||
now declared as stable.
|
now declared as stable.
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
/* */
|
/* */
|
||||||
/* FreeType modules public interface (specification). */
|
/* FreeType modules public interface (specification). */
|
||||||
/* */
|
/* */
|
||||||
/* Copyright 1996-2003, 2006, 2008-2010, 2012 by */
|
/* Copyright 1996-2003, 2006, 2008-2010, 2012, 2013 by */
|
||||||
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
||||||
/* */
|
/* */
|
||||||
/* This file is part of the FreeType project, and may only be used, */
|
/* This file is part of the FreeType project, and may only be used, */
|
||||||
|
@ -322,8 +322,15 @@ FT_BEGIN_HEADER
|
||||||
* FT_Property_Set( library, "foo", "bar", &bar );
|
* FT_Property_Set( library, "foo", "bar", &bar );
|
||||||
* }
|
* }
|
||||||
*
|
*
|
||||||
|
* Note that the FreeType Cache sub-system doesn't recognize module
|
||||||
|
* property changes. To avoid glyph lookup confusion within the cache
|
||||||
|
* you should call @FTC_Manager_Reset to completely flush the cache if
|
||||||
|
* a module property gets changed after @FTC_Manager_New has been
|
||||||
|
* called.
|
||||||
|
*
|
||||||
* It is not possible to set properties of the FreeType Cache
|
* It is not possible to set properties of the FreeType Cache
|
||||||
* sub-system with FT_Property_Set; use @FTC_Property_Set instead.
|
* sub-system itself with FT_Property_Set; use @FTC_Property_Set
|
||||||
|
* instead.
|
||||||
*
|
*
|
||||||
* @since:
|
* @since:
|
||||||
* 2.4.11
|
* 2.4.11
|
||||||
|
|
Loading…
Reference in New Issue