| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 */ |
| OLD | NEW |