| OLD | NEW |
| 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 Loading... |
| 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 */ |
| OLD | NEW |