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

Side by Side Diff: third_party/freetype/src/type1/t1afm.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/type1/t1afm.h ('k') | third_party/freetype/src/type1/t1driver.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 /* t1afm.c */ 3 /* t1afm.c */
4 /* */ 4 /* */
5 /* AFM support for Type 1 fonts (body). */ 5 /* AFM support for Type 1 fonts (body). */
6 /* */ 6 /* */
7 /* Copyright 1996-2011, 2013 by */ 7 /* Copyright 1996-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 "t1afm.h" 20 #include "t1afm.h"
21 #include "../../include/freetype/internal/ftdebug.h" 21 #include FT_INTERNAL_DEBUG_H
22 #include "../../include/freetype/internal/ftstream.h" 22 #include FT_INTERNAL_STREAM_H
23 #include "../../include/freetype/internal/psaux.h" 23 #include FT_INTERNAL_POSTSCRIPT_AUX_H
24 #include "t1errors.h" 24 #include "t1errors.h"
25 25
26 26
27 /*************************************************************************/ 27 /*************************************************************************/
28 /* */ 28 /* */
29 /* The macro FT_COMPONENT is used in trace mode. It is an implicit */ 29 /* The macro FT_COMPONENT is used in trace mode. It is an implicit */
30 /* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log */ 30 /* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log */
31 /* messages during execution. */ 31 /* messages during execution. */
32 /* */ 32 /* */
33 #undef FT_COMPONENT 33 #undef FT_COMPONENT
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 tk->max_ptsize - tk->min_ptsize ) + 387 tk->max_ptsize - tk->min_ptsize ) +
388 tk->min_kern; 388 tk->min_kern;
389 } 389 }
390 } 390 }
391 391
392 return FT_Err_Ok; 392 return FT_Err_Ok;
393 } 393 }
394 394
395 395
396 /* END */ 396 /* END */
OLDNEW
« no previous file with comments | « third_party/freetype/src/type1/t1afm.h ('k') | third_party/freetype/src/type1/t1driver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698