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

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

Issue 23555005: Update freetype to the latest version of Android external/freetype (Closed) Base URL: https://chromium.googlesource.com/chromium/src/third_party/freetype.git@master
Patch Set: Created 7 years, 3 months 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/freetype.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 by */ 7 /* Copyright 2002, 2004, 2006, 2007, 2010-2011 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 29 matching lines...) Expand all
47 FT_ERRORDEF_( Invalid_Argument, 0x06, \ 47 FT_ERRORDEF_( Invalid_Argument, 0x06, \
48 "invalid argument" ) 48 "invalid argument" )
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, \
58 "missing module" )
57 59
58 /* glyph/character errors */ 60 /* glyph/character errors */
59 61
60 FT_ERRORDEF_( Invalid_Glyph_Index, 0x10, \ 62 FT_ERRORDEF_( Invalid_Glyph_Index, 0x10, \
61 "invalid glyph index" ) 63 "invalid glyph index" )
62 FT_ERRORDEF_( Invalid_Character_Code, 0x11, \ 64 FT_ERRORDEF_( Invalid_Character_Code, 0x11, \
63 "invalid character code" ) 65 "invalid character code" )
64 FT_ERRORDEF_( Invalid_Glyph_Format, 0x12, \ 66 FT_ERRORDEF_( Invalid_Glyph_Format, 0x12, \
65 "unsupported glyph image format" ) 67 "unsupported glyph image format" )
66 FT_ERRORDEF_( Cannot_Render_Glyph, 0x13, \ 68 FT_ERRORDEF_( Cannot_Render_Glyph, 0x13, \
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 "`BBX' field missing" ) 236 "`BBX' field missing" )
235 FT_ERRORDEF_( Bbx_Too_Big, 0xB8, \ 237 FT_ERRORDEF_( Bbx_Too_Big, 0xB8, \
236 "`BBX' too big" ) 238 "`BBX' too big" )
237 FT_ERRORDEF_( Corrupted_Font_Header, 0xB9, \ 239 FT_ERRORDEF_( Corrupted_Font_Header, 0xB9, \
238 "Font header corrupted or missing fields" ) 240 "Font header corrupted or missing fields" )
239 FT_ERRORDEF_( Corrupted_Font_Glyphs, 0xBA, \ 241 FT_ERRORDEF_( Corrupted_Font_Glyphs, 0xBA, \
240 "Font glyphs corrupted or missing fields" ) 242 "Font glyphs corrupted or missing fields" )
241 243
242 244
243 /* END */ 245 /* END */
OLDNEW
« no previous file with comments | « include/freetype/freetype.h ('k') | include/freetype/fterrors.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698