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

Side by Side Diff: third_party/freetype/src/raster/ftrend1.c

Issue 815103002: Update freetype to 2.5.4. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Adjust GYP and GN Created 6 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 | « third_party/freetype/src/raster/ftrend1.h ('k') | third_party/freetype/src/raster/raster.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 /* ftrend1.c */ 3 /* ftrend1.c */
4 /* */ 4 /* */
5 /* The FreeType glyph rasterizer interface (body). */ 5 /* The FreeType glyph rasterizer interface (body). */
6 /* */ 6 /* */
7 /* Copyright 1996-2003, 2005, 2006, 2011, 2013 by */ 7 /* Copyright 1996-2003, 2005, 2006, 2011, 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
18 18
19 #include "../../include/ft2build.h" 19 #include <ft2build.h>
20 #include "../../include/freetype/internal/ftdebug.h" 20 #include FT_INTERNAL_DEBUG_H
21 #include "../../include/freetype/internal/ftobjs.h" 21 #include FT_INTERNAL_OBJECTS_H
22 #include "../../include/freetype/ftoutln.h" 22 #include FT_OUTLINE_H
23 #include "ftrend1.h" 23 #include "ftrend1.h"
24 #include "ftraster.h" 24 #include "ftraster.h"
25 #include "rastpic.h" 25 #include "rastpic.h"
26 26
27 #include "rasterrs.h" 27 #include "rasterrs.h"
28 28
29 29
30 /* initialize renderer -- init its raster */ 30 /* initialize renderer -- init its raster */
31 static FT_Error 31 static FT_Error
32 ft_raster1_init( FT_Renderer render ) 32 ft_raster1_init( FT_Renderer render )
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 (FT_Renderer_RenderFunc) ft_raster1_render, 297 (FT_Renderer_RenderFunc) ft_raster1_render,
298 (FT_Renderer_TransformFunc)ft_raster1_transform, 298 (FT_Renderer_TransformFunc)ft_raster1_transform,
299 (FT_Renderer_GetCBoxFunc) ft_raster1_get_cbox, 299 (FT_Renderer_GetCBoxFunc) ft_raster1_get_cbox,
300 (FT_Renderer_SetModeFunc) ft_raster1_set_mode, 300 (FT_Renderer_SetModeFunc) ft_raster1_set_mode,
301 301
302 (FT_Raster_Funcs*) &FT_STANDARD_RASTER_GET 302 (FT_Raster_Funcs*) &FT_STANDARD_RASTER_GET
303 ) 303 )
304 304
305 305
306 /* END */ 306 /* END */
OLDNEW
« no previous file with comments | « third_party/freetype/src/raster/ftrend1.h ('k') | third_party/freetype/src/raster/raster.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698