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

Side by Side Diff: include/freetype/ftbitmap.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/ftautoh.h ('k') | include/freetype/ftcache.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 /* ftbitmap.h */ 3 /* ftbitmap.h */
4 /* */ 4 /* */
5 /* FreeType utility functions for bitmaps (specification). */ 5 /* FreeType utility functions for bitmaps (specification). */
6 /* */ 6 /* */
7 /* Copyright 2004, 2005, 2006, 2008 by */ 7 /* Copyright 2004-2006, 2008, 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 FT_Pos xStrength, 128 FT_Pos xStrength,
129 FT_Pos yStrength ); 129 FT_Pos yStrength );
130 130
131 131
132 /*************************************************************************/ 132 /*************************************************************************/
133 /* */ 133 /* */
134 /* <Function> */ 134 /* <Function> */
135 /* FT_Bitmap_Convert */ 135 /* FT_Bitmap_Convert */
136 /* */ 136 /* */
137 /* <Description> */ 137 /* <Description> */
138 /* Convert a bitmap object with depth 1bpp, 2bpp, 4bpp, or 8bpp to a */ 138 /* Convert a bitmap object with depth 1bpp, 2bpp, 4bpp, 8bpp or 32bpp */
139 /* bitmap object with depth 8bpp, making the number of used bytes per */ 139 /* to a bitmap object with depth 8bpp, making the number of used */
140 /* line (a.k.a. the `pitch') a multiple of `alignment'. */ 140 /* bytes line (a.k.a. the `pitch') a multiple of `alignment'. */
141 /* */ 141 /* */
142 /* <Input> */ 142 /* <Input> */
143 /* library :: A handle to a library object. */ 143 /* library :: A handle to a library object. */
144 /* */ 144 /* */
145 /* source :: The source bitmap. */ 145 /* source :: The source bitmap. */
146 /* */ 146 /* */
147 /* alignment :: The pitch of the bitmap is a multiple of this */ 147 /* alignment :: The pitch of the bitmap is a multiple of this */
148 /* parameter. Common values are 1, 2, or 4. */ 148 /* parameter. Common values are 1, 2, or 4. */
149 /* */ 149 /* */
150 /* <Output> */ 150 /* <Output> */
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 218
219 /* */ 219 /* */
220 220
221 221
222 FT_END_HEADER 222 FT_END_HEADER
223 223
224 #endif /* __FTBITMAP_H__ */ 224 #endif /* __FTBITMAP_H__ */
225 225
226 226
227 /* END */ 227 /* END */
OLDNEW
« no previous file with comments | « include/freetype/ftautoh.h ('k') | include/freetype/ftcache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698