Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: src/cff/cffpic.h

Issue 23555005: Update freetype to the latest version of Android external/freetype (Closed) Base URL: https://chromium.googlesource.com/chromium/src/third_party/freetype.git@master
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/cff/cffparse.c ('k') | src/cff/cffpic.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /***************************************************************************/ 1 /***************************************************************************/
2 /* */ 2 /* */
3 /* cffpic.h */ 3 /* cffpic.h */
4 /* */ 4 /* */
5 /* The FreeType position independent code services for cff module. */ 5 /* The FreeType position independent code services for cff module. */
6 /* */ 6 /* */
7 /* Copyright 2009 by */ 7 /* Copyright 2009 by */
8 /* Oran Agra and Mickey Gabel. */ 8 /* Oran Agra and Mickey Gabel. */
9 /* */ 9 /* */
10 /* This file is part of the FreeType project, and may only be used, */ 10 /* This file is part of the FreeType project, and may only be used, */
11 /* modified, and distributed under the terms of the FreeType project */ 11 /* modified, and distributed under the terms of the FreeType project */
12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
13 /* this file you indicate that you have read the license and */ 13 /* this file you indicate that you have read the license and */
14 /* understand and accept it fully. */ 14 /* understand and accept it fully. */
15 /* */ 15 /* */
16 /***************************************************************************/ 16 /***************************************************************************/
17 17
18 18
19 #ifndef __CFFPIC_H__ 19 #ifndef __CFFPIC_H__
20 #define __CFFPIC_H__ 20 #define __CFFPIC_H__
21 21
22 22
23 FT_BEGIN_HEADER 23 FT_BEGIN_HEADER
24 24
25 #include FT_INTERNAL_PIC_H 25 #include FT_INTERNAL_PIC_H
26 26
27 #ifndef FT_CONFIG_OPTION_PIC 27 #ifndef FT_CONFIG_OPTION_PIC
28 #define FT_CFF_SERVICE_PS_INFO_GET cff_service_ps_info 28 #define FT_CFF_SERVICE_PS_INFO_GET cff_service_ps_info
29 #define FT_CFF_SERVICE_GLYPH_DICT_GET cff_service_glyph_dict 29 #define FT_CFF_SERVICE_GLYPH_DICT_GET cff_service_glyph_dict
30 #define FT_CFF_SERVICE_PS_NAME_GET cff_service_ps_name 30 #define FT_CFF_SERVICE_PS_NAME_GET cff_service_ps_name
31 #define FT_CFF_SERVICE_GET_CMAP_INFO_GET cff_service_get_cmap_info 31 #define FT_CFF_SERVICE_GET_CMAP_INFO_GET cff_service_get_cmap_info
32 #define FT_CFF_SERVICE_CID_INFO_GET cff_service_cid_info 32 #define FT_CFF_SERVICE_CID_INFO_GET cff_service_cid_info
(...skipping 28 matching lines...) Expand all
61 #define FT_CFF_SERVICE_PS_INFO_GET (GET_PIC(library)->cff_service_ps_inf o) 61 #define FT_CFF_SERVICE_PS_INFO_GET (GET_PIC(library)->cff_service_ps_inf o)
62 #define FT_CFF_SERVICE_GLYPH_DICT_GET (GET_PIC(library)->cff_service_glyph_ dict) 62 #define FT_CFF_SERVICE_GLYPH_DICT_GET (GET_PIC(library)->cff_service_glyph_ dict)
63 #define FT_CFF_SERVICE_PS_NAME_GET (GET_PIC(library)->cff_service_ps_nam e) 63 #define FT_CFF_SERVICE_PS_NAME_GET (GET_PIC(library)->cff_service_ps_nam e)
64 #define FT_CFF_SERVICE_GET_CMAP_INFO_GET (GET_PIC(library)->cff_service_get_cm ap_info) 64 #define FT_CFF_SERVICE_GET_CMAP_INFO_GET (GET_PIC(library)->cff_service_get_cm ap_info)
65 #define FT_CFF_SERVICE_CID_INFO_GET (GET_PIC(library)->cff_service_cid_in fo) 65 #define FT_CFF_SERVICE_CID_INFO_GET (GET_PIC(library)->cff_service_cid_in fo)
66 #define FT_CFF_SERVICES_GET (GET_PIC(library)->cff_services) 66 #define FT_CFF_SERVICES_GET (GET_PIC(library)->cff_services)
67 #define FT_CFF_CMAP_ENCODING_CLASS_REC_GET (GET_PIC(library)->cff_cmap_encoding_ class_rec) 67 #define FT_CFF_CMAP_ENCODING_CLASS_REC_GET (GET_PIC(library)->cff_cmap_encoding_ class_rec)
68 #define FT_CFF_CMAP_UNICODE_CLASS_REC_GET (GET_PIC(library)->cff_cmap_unicode_c lass_rec) 68 #define FT_CFF_CMAP_UNICODE_CLASS_REC_GET (GET_PIC(library)->cff_cmap_unicode_c lass_rec)
69 #define FT_CFF_FIELD_HANDLERS_GET (GET_PIC(library)->cff_field_handlers ) 69 #define FT_CFF_FIELD_HANDLERS_GET (GET_PIC(library)->cff_field_handlers )
70 70
71 /* see cffpic.c for the implementation */
72 void
73 cff_driver_class_pic_free( FT_Library library );
74
75 FT_Error
76 cff_driver_class_pic_init( FT_Library library );
77
71 #endif /* FT_CONFIG_OPTION_PIC */ 78 #endif /* FT_CONFIG_OPTION_PIC */
72 79
73 /* */ 80 /* */
74 81
75 FT_END_HEADER 82 FT_END_HEADER
76 83
77 #endif /* __CFFPIC_H__ */ 84 #endif /* __CFFPIC_H__ */
78 85
79 86
80 /* END */ 87 /* END */
OLDNEW
« no previous file with comments | « src/cff/cffparse.c ('k') | src/cff/cffpic.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698