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

Side by Side Diff: third_party/freetype/src/cff/cf2stack.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/cff/cf2stack.h ('k') | third_party/freetype/src/cff/cf2types.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 /* cf2stack.c */ 3 /* cf2stack.c */
4 /* */ 4 /* */
5 /* Adobe's code for emulating a CFF stack (body). */ 5 /* Adobe's code for emulating a CFF stack (body). */
6 /* */ 6 /* */
7 /* Copyright 2007-2013 Adobe Systems Incorporated. */ 7 /* Copyright 2007-2013 Adobe Systems Incorporated. */
8 /* */ 8 /* */
9 /* This software, and all works of authorship, whether in source or */ 9 /* This software, and all works of authorship, whether in source or */
10 /* object code form as indicated by the copyright notice(s) included */ 10 /* object code form as indicated by the copyright notice(s) included */
(...skipping 19 matching lines...) Expand all
30 /* */ 30 /* */
31 /* By using, modifying, or distributing the Work you indicate that you */ 31 /* By using, modifying, or distributing the Work you indicate that you */
32 /* have read and understood the terms and conditions of the */ 32 /* have read and understood the terms and conditions of the */
33 /* FreeType Project License as well as those provided in this section, */ 33 /* FreeType Project License as well as those provided in this section, */
34 /* and you accept them fully. */ 34 /* and you accept them fully. */
35 /* */ 35 /* */
36 /***************************************************************************/ 36 /***************************************************************************/
37 37
38 38
39 #include "cf2ft.h" 39 #include "cf2ft.h"
40 #include "../../include/freetype/internal/ftdebug.h" 40 #include FT_INTERNAL_DEBUG_H
41 41
42 #include "cf2glue.h" 42 #include "cf2glue.h"
43 #include "cf2font.h" 43 #include "cf2font.h"
44 #include "cf2stack.h" 44 #include "cf2stack.h"
45 45
46 #include "cf2error.h" 46 #include "cf2error.h"
47 47
48 48
49 /* Allocate and initialize an instance of CF2_Stack. */ 49 /* Allocate and initialize an instance of CF2_Stack. */
50 /* Note: This function returns NULL on error (does not set */ 50 /* Note: This function returns NULL on error (does not set */
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 196
197 197
198 FT_LOCAL_DEF( void ) 198 FT_LOCAL_DEF( void )
199 cf2_stack_clear( CF2_Stack stack ) 199 cf2_stack_clear( CF2_Stack stack )
200 { 200 {
201 stack->top = &stack->buffer[0]; 201 stack->top = &stack->buffer[0];
202 } 202 }
203 203
204 204
205 /* END */ 205 /* END */
OLDNEW
« no previous file with comments | « third_party/freetype/src/cff/cf2stack.h ('k') | third_party/freetype/src/cff/cf2types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698