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

Side by Side Diff: third_party/freetype/src/cid/cidriver.c

Issue 815103002: Update freetype to 2.5.4. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Adjust GYP and GN Created 6 years 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 | « third_party/freetype/src/cid/cidriver.h ('k') | third_party/freetype/src/cid/cidtoken.h » ('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 /* cidriver.c */ 3 /* cidriver.c */
4 /* */ 4 /* */
5 /* CID driver interface (body). */ 5 /* CID driver interface (body). */
6 /* */ 6 /* */
7 /* Copyright 1996-2004, 2006, 2008, 2009, 2011, 2013 by */ 7 /* Copyright 1996-2004, 2006, 2008, 2009, 2011, 2013 by */
8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
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 #include "../../include/ft2build.h" 19 #include <ft2build.h>
20 #include "cidriver.h" 20 #include "cidriver.h"
21 #include "cidgload.h" 21 #include "cidgload.h"
22 #include "../../include/freetype/internal/ftdebug.h" 22 #include FT_INTERNAL_DEBUG_H
23 23
24 #include "ciderrs.h" 24 #include "ciderrs.h"
25 25
26 #include "../../include/freetype/internal/services/svpostnm.h" 26 #include FT_SERVICE_POSTSCRIPT_NAME_H
27 #include "../../include/freetype/internal/services/svxf86nm.h" 27 #include FT_SERVICE_XFREE86_NAME_H
28 #include "../../include/freetype/internal/services/svpsinfo.h" 28 #include FT_SERVICE_POSTSCRIPT_INFO_H
29 #include "../../include/freetype/internal/services/svcid.h" 29 #include FT_SERVICE_CID_H
30 30
31 31
32 /*************************************************************************/ 32 /*************************************************************************/
33 /* */ 33 /* */
34 /* The macro FT_COMPONENT is used in trace mode. It is an implicit */ 34 /* The macro FT_COMPONENT is used in trace mode. It is an implicit */
35 /* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log */ 35 /* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log */
36 /* messages during execution. */ 36 /* messages during execution. */
37 /* */ 37 /* */
38 #undef FT_COMPONENT 38 #undef FT_COMPONENT
39 #define FT_COMPONENT trace_ciddriver 39 #define FT_COMPONENT trace_ciddriver
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 0, /* FT_Face_AttachFunc */ 227 0, /* FT_Face_AttachFunc */
228 228
229 0, /* FT_Face_GetAdvancesFunc */ 229 0, /* FT_Face_GetAdvancesFunc */
230 230
231 cid_size_request, 231 cid_size_request,
232 0 /* FT_Size_SelectFunc */ 232 0 /* FT_Size_SelectFunc */
233 }; 233 };
234 234
235 235
236 /* END */ 236 /* END */
OLDNEW
« no previous file with comments | « third_party/freetype/src/cid/cidriver.h ('k') | third_party/freetype/src/cid/cidtoken.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698