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

Side by Side Diff: third_party/freetype/src/base/ftapi.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/base/ftadvanc.c ('k') | third_party/freetype/src/base/ftbase.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 /* ftapi.c */ 3 /* ftapi.c */
4 /* */ 4 /* */
5 /* The FreeType compatibility functions (body). */ 5 /* The FreeType compatibility functions (body). */
6 /* */ 6 /* */
7 /* Copyright 2002 by */ 7 /* Copyright 2002 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 "../../include/freetype/ftlist.h" 20 #include FT_LIST_H
21 #include "../../include/freetype/ftoutln.h" 21 #include FT_OUTLINE_H
22 #include "../../include/freetype/internal/ftobjs.h" 22 #include FT_INTERNAL_OBJECTS_H
23 #include "../../include/freetype/internal/ftdebug.h" 23 #include FT_INTERNAL_DEBUG_H
24 #include "../../include/freetype/internal/ftstream.h" 24 #include FT_INTERNAL_STREAM_H
25 #include "../../include/freetype/tttables.h" 25 #include FT_TRUETYPE_TABLES_H
26 #include "../../include/freetype/ftoutln.h" 26 #include FT_OUTLINE_H
27 27
28 28
29 /*************************************************************************/ 29 /*************************************************************************/
30 /*************************************************************************/ 30 /*************************************************************************/
31 /*************************************************************************/ 31 /*************************************************************************/
32 /**** ****/ 32 /**** ****/
33 /**** ****/ 33 /**** ****/
34 /**** C O M P A T I B I L I T Y ****/ 34 /**** C O M P A T I B I L I T Y ****/
35 /**** ****/ 35 /**** ****/
36 /**** ****/ 36 /**** ****/
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 112
113 113
114 FT_BASE_DEF( void ) 114 FT_BASE_DEF( void )
115 FT_Forget_Frame( FT_Stream stream ) 115 FT_Forget_Frame( FT_Stream stream )
116 { 116 {
117 FT_Stream_ExitFrame( stream ); 117 FT_Stream_ExitFrame( stream );
118 } 118 }
119 119
120 120
121 /* END */ 121 /* END */
OLDNEW
« no previous file with comments | « third_party/freetype/src/base/ftadvanc.c ('k') | third_party/freetype/src/base/ftbase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698