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

Side by Side Diff: third_party/freetype/src/cff/cf2font.h

Issue 1413673003: Update bundled freetype to 2.6.1 (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: DEPS for corpus Created 5 years, 1 month 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/cf2fixed.h ('k') | third_party/freetype/src/cff/cf2font.c » ('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 /* cf2font.h */ 3 /* cf2font.h */
4 /* */ 4 /* */
5 /* Adobe's code for font instances (specification). */ 5 /* Adobe's code for font instances (specification). */
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 30 matching lines...) Expand all
41 41
42 42
43 #include "cf2ft.h" 43 #include "cf2ft.h"
44 #include "cf2blues.h" 44 #include "cf2blues.h"
45 45
46 46
47 FT_BEGIN_HEADER 47 FT_BEGIN_HEADER
48 48
49 49
50 #define CF2_OPERAND_STACK_SIZE 48 50 #define CF2_OPERAND_STACK_SIZE 48
51 #define CF2_MAX_SUBR 10 /* maximum subroutine nesting */ 51 #define CF2_MAX_SUBR 16 /* maximum subroutine nesting; */
52 /* only 10 are allowed but there exist */
53 /* fonts like `HiraKakuProN-W3.ttf' */
54 /* (Hiragino Kaku Gothic ProN W3; */
55 /* 8.2d6e1; 2014-12-19) that exceed */
56 /* this limit */
52 57
53 58
54 /* typedef is in `cf2glue.h' */ 59 /* typedef is in `cf2glue.h' */
55 struct CF2_FontRec_ 60 struct CF2_FontRec_
56 { 61 {
57 FT_Memory memory; 62 FT_Memory memory;
58 FT_Error error; /* shared error for this instance */ 63 FT_Error error; /* shared error for this instance */
59 64
60 CF2_RenderingFlags renderingFlags; 65 CF2_RenderingFlags renderingFlags;
61 66
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 CF2_F16Dot16* glyphWidth ); 112 CF2_F16Dot16* glyphWidth );
108 113
109 114
110 FT_END_HEADER 115 FT_END_HEADER
111 116
112 117
113 #endif /* __CF2FONT_H__ */ 118 #endif /* __CF2FONT_H__ */
114 119
115 120
116 /* END */ 121 /* END */
OLDNEW
« no previous file with comments | « third_party/freetype/src/cff/cf2fixed.h ('k') | third_party/freetype/src/cff/cf2font.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698