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

Side by Side Diff: src/truetype/ttobjs.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 | « src/truetype/ttinterp.c ('k') | src/truetype/ttobjs.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 /* ttobjs.h */ 3 /* ttobjs.h */
4 /* */ 4 /* */
5 /* Objects manager (specification). */ 5 /* Objects manager (specification). */
6 /* */ 6 /* */
7 /* Copyright 1996-2009, 2011 by */ 7 /* Copyright 1996-2009, 2011-2012 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 168
169 169
170 /*************************************************************************/ 170 /*************************************************************************/
171 /* */ 171 /* */
172 /* Defines a function/instruction definition record. */ 172 /* Defines a function/instruction definition record. */
173 /* */ 173 /* */
174 typedef struct TT_DefRecord_ 174 typedef struct TT_DefRecord_
175 { 175 {
176 FT_Int range; /* in which code range is it located? */ 176 FT_Int range; /* in which code range is it located? */
177 FT_Long start; /* where does it start? */ 177 FT_Long start; /* where does it start? */
178 FT_Long end; /* where does it end? */
178 FT_UInt opc; /* function #, or instruction code */ 179 FT_UInt opc; /* function #, or instruction code */
179 FT_Bool active; /* is it active? */ 180 FT_Bool active; /* is it active? */
180 181
181 } TT_DefRecord, *TT_DefArray; 182 } TT_DefRecord, *TT_DefArray;
182 183
183 184
184 /*************************************************************************/ 185 /*************************************************************************/
185 /* */ 186 /* */
186 /* Subglyph transformation record. */ 187 /* Subglyph transformation record. */
187 /* */ 188 /* */
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 FT_LOCAL( FT_Error ) 426 FT_LOCAL( FT_Error )
426 tt_slot_init( FT_GlyphSlot slot ); 427 tt_slot_init( FT_GlyphSlot slot );
427 428
428 429
429 FT_END_HEADER 430 FT_END_HEADER
430 431
431 #endif /* __TTOBJS_H__ */ 432 #endif /* __TTOBJS_H__ */
432 433
433 434
434 /* END */ 435 /* END */
OLDNEW
« no previous file with comments | « src/truetype/ttinterp.c ('k') | src/truetype/ttobjs.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698