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

Side by Side Diff: include/freetype/fterrdef.h

Issue 89753003: Update freetype to latest version of ASOP. (Closed) Base URL: https://chromium.googlesource.com/chromium/src/third_party/freetype.git@master
Patch Set: Created 7 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 | « include/freetype/ftchapters.h ('k') | include/freetype/fterrors.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 /* fterrdef.h */ 3 /* fterrdef.h */
4 /* */ 4 /* */
5 /* FreeType error codes (specification). */ 5 /* FreeType error codes (specification). */
6 /* */ 6 /* */
7 /* Copyright 2002, 2004, 2006, 2007, 2010-2011 by */ 7 /* Copyright 2002, 2004, 2006, 2007, 2010-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
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 FT_ERRORDEF_( Unimplemented_Feature, 0x07, \ 49 FT_ERRORDEF_( Unimplemented_Feature, 0x07, \
50 "unimplemented feature" ) 50 "unimplemented feature" )
51 FT_ERRORDEF_( Invalid_Table, 0x08, \ 51 FT_ERRORDEF_( Invalid_Table, 0x08, \
52 "broken table" ) 52 "broken table" )
53 FT_ERRORDEF_( Invalid_Offset, 0x09, \ 53 FT_ERRORDEF_( Invalid_Offset, 0x09, \
54 "broken offset within table" ) 54 "broken offset within table" )
55 FT_ERRORDEF_( Array_Too_Large, 0x0A, \ 55 FT_ERRORDEF_( Array_Too_Large, 0x0A, \
56 "array allocation size too large" ) 56 "array allocation size too large" )
57 FT_ERRORDEF_( Missing_Module, 0x0B, \ 57 FT_ERRORDEF_( Missing_Module, 0x0B, \
58 "missing module" ) 58 "missing module" )
59 FT_ERRORDEF_( Missing_Property, 0x0C, \
60 "missing property" )
59 61
60 /* glyph/character errors */ 62 /* glyph/character errors */
61 63
62 FT_ERRORDEF_( Invalid_Glyph_Index, 0x10, \ 64 FT_ERRORDEF_( Invalid_Glyph_Index, 0x10, \
63 "invalid glyph index" ) 65 "invalid glyph index" )
64 FT_ERRORDEF_( Invalid_Character_Code, 0x11, \ 66 FT_ERRORDEF_( Invalid_Character_Code, 0x11, \
65 "invalid character code" ) 67 "invalid character code" )
66 FT_ERRORDEF_( Invalid_Glyph_Format, 0x12, \ 68 FT_ERRORDEF_( Invalid_Glyph_Format, 0x12, \
67 "unsupported glyph image format" ) 69 "unsupported glyph image format" )
68 FT_ERRORDEF_( Cannot_Render_Glyph, 0x13, \ 70 FT_ERRORDEF_( Cannot_Render_Glyph, 0x13, \
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 /* CFF, CID, and Type 1 errors */ 210 /* CFF, CID, and Type 1 errors */
209 211
210 FT_ERRORDEF_( Syntax_Error, 0xA0, \ 212 FT_ERRORDEF_( Syntax_Error, 0xA0, \
211 "opcode syntax error" ) 213 "opcode syntax error" )
212 FT_ERRORDEF_( Stack_Underflow, 0xA1, \ 214 FT_ERRORDEF_( Stack_Underflow, 0xA1, \
213 "argument stack underflow" ) 215 "argument stack underflow" )
214 FT_ERRORDEF_( Ignore, 0xA2, \ 216 FT_ERRORDEF_( Ignore, 0xA2, \
215 "ignore" ) 217 "ignore" )
216 FT_ERRORDEF_( No_Unicode_Glyph_Name, 0xA3, \ 218 FT_ERRORDEF_( No_Unicode_Glyph_Name, 0xA3, \
217 "no Unicode glyph name found" ) 219 "no Unicode glyph name found" )
220 FT_ERRORDEF_( Glyph_Too_Big, 0xA4, \
221 "glyph to big for hinting" )
218 222
219 /* BDF errors */ 223 /* BDF errors */
220 224
221 FT_ERRORDEF_( Missing_Startfont_Field, 0xB0, \ 225 FT_ERRORDEF_( Missing_Startfont_Field, 0xB0, \
222 "`STARTFONT' field missing" ) 226 "`STARTFONT' field missing" )
223 FT_ERRORDEF_( Missing_Font_Field, 0xB1, \ 227 FT_ERRORDEF_( Missing_Font_Field, 0xB1, \
224 "`FONT' field missing" ) 228 "`FONT' field missing" )
225 FT_ERRORDEF_( Missing_Size_Field, 0xB2, \ 229 FT_ERRORDEF_( Missing_Size_Field, 0xB2, \
226 "`SIZE' field missing" ) 230 "`SIZE' field missing" )
227 FT_ERRORDEF_( Missing_Fontboundingbox_Field, 0xB3, \ 231 FT_ERRORDEF_( Missing_Fontboundingbox_Field, 0xB3, \
228 "`FONTBOUNDINGBOX' field missing" ) 232 "`FONTBOUNDINGBOX' field missing" )
229 FT_ERRORDEF_( Missing_Chars_Field, 0xB4, \ 233 FT_ERRORDEF_( Missing_Chars_Field, 0xB4, \
230 "`CHARS' field missing" ) 234 "`CHARS' field missing" )
231 FT_ERRORDEF_( Missing_Startchar_Field, 0xB5, \ 235 FT_ERRORDEF_( Missing_Startchar_Field, 0xB5, \
232 "`STARTCHAR' field missing" ) 236 "`STARTCHAR' field missing" )
233 FT_ERRORDEF_( Missing_Encoding_Field, 0xB6, \ 237 FT_ERRORDEF_( Missing_Encoding_Field, 0xB6, \
234 "`ENCODING' field missing" ) 238 "`ENCODING' field missing" )
235 FT_ERRORDEF_( Missing_Bbx_Field, 0xB7, \ 239 FT_ERRORDEF_( Missing_Bbx_Field, 0xB7, \
236 "`BBX' field missing" ) 240 "`BBX' field missing" )
237 FT_ERRORDEF_( Bbx_Too_Big, 0xB8, \ 241 FT_ERRORDEF_( Bbx_Too_Big, 0xB8, \
238 "`BBX' too big" ) 242 "`BBX' too big" )
239 FT_ERRORDEF_( Corrupted_Font_Header, 0xB9, \ 243 FT_ERRORDEF_( Corrupted_Font_Header, 0xB9, \
240 "Font header corrupted or missing fields" ) 244 "Font header corrupted or missing fields" )
241 FT_ERRORDEF_( Corrupted_Font_Glyphs, 0xBA, \ 245 FT_ERRORDEF_( Corrupted_Font_Glyphs, 0xBA, \
242 "Font glyphs corrupted or missing fields" ) 246 "Font glyphs corrupted or missing fields" )
243 247
244 248
245 /* END */ 249 /* END */
OLDNEW
« no previous file with comments | « include/freetype/ftchapters.h ('k') | include/freetype/fterrors.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698