Alexei Podtelezhnikov pushed to branch master at FreeType / FreeType
Commits:
-
dbdcd758
by Alexei Podtelezhnikov (Алексей Подтележников) at 2024-04-19T14:02:43-04:00
3 changed files:
Changes:
... | ... | @@ -87,6 +87,10 @@ FT_BEGIN_HEADER |
87 | 87 | ftc_get_top_node_for_hash( ( cache ), ( hash ) )
|
88 | 88 | #endif
|
89 | 89 | |
90 | + FT_LOCAL( void )
|
|
91 | + ftc_node_destroy( FTC_Node node,
|
|
92 | + FTC_Manager manager );
|
|
93 | + |
|
90 | 94 | |
91 | 95 | /*************************************************************************/
|
92 | 96 | /*************************************************************************/
|
... | ... | @@ -19,11 +19,7 @@ |
19 | 19 | #define FTCCBACK_H_
|
20 | 20 | |
21 | 21 | #include <freetype/ftcache.h>
|
22 | -#include "ftcmru.h"
|
|
23 | -#include "ftcimage.h"
|
|
24 | -#include "ftcmanag.h"
|
|
25 | -#include "ftcglyph.h"
|
|
26 | -#include "ftcsbits.h"
|
|
22 | +#include "ftccache.h"
|
|
27 | 23 | |
28 | 24 | FT_BEGIN_HEADER
|
29 | 25 | |
... | ... | @@ -81,10 +77,6 @@ FT_BEGIN_HEADER |
81 | 77 | FT_LOCAL( void )
|
82 | 78 | ftc_cache_done( FTC_Cache cache );
|
83 | 79 | |
84 | - FT_LOCAL( void )
|
|
85 | - ftc_node_destroy( FTC_Node node,
|
|
86 | - FTC_Manager manager );
|
|
87 | - |
|
88 | 80 | FT_END_HEADER
|
89 | 81 | |
90 | 82 | #endif /* FTCCBACK_H_ */
|
... | ... | @@ -22,7 +22,6 @@ |
22 | 22 | #include <freetype/internal/ftdebug.h>
|
23 | 23 | #include <freetype/ftsizes.h>
|
24 | 24 | |
25 | -#include "ftccback.h"
|
|
26 | 25 | #include "ftcerror.h"
|
27 | 26 | |
28 | 27 |