Home | History | Annotate | Download | only in freetype

Lines Matching refs:raster

5 /*    FreeType glyph image formats and default raster interface            */
22 /* Note: A `raster' is simply a scan-line converter, used to render */
255 /* A structure used to describe a bitmap or pixmap to the raster. */
814 /* A raster is a scan converter, in charge of rendering an outline into */
827 /* raster */
847 /* A handle (pointer) to a raster object. Each object can be used */
1048 /* A structure to hold the arguments used by a raster's render */
1081 /* raster will call the `gray_spans' callback to draw gray pixel */
1113 /* A function used to create a new raster object. */
1119 /* raster :: A handle to the new raster object. */
1129 /* completely ignored by a given raster implementation. */
1133 FT_Raster* raster );
1144 /* A function used to destroy a given raster object. */
1147 /* raster :: A handle to the raster object. */
1150 (*FT_Raster_DoneFunc)( FT_Raster raster );
1167 /* after a new raster object is created. */
1170 /* raster :: A handle to the new raster object. */
1179 /* passed to the raster constructor). However, this is not */
1183 (*FT_Raster_ResetFunc)( FT_Raster raster,
1197 /* in a given raster. This can be used for debugging purposes, or */
1199 /* raster module. */
1202 /* raster :: A handle to the new raster object. */
1209 (*FT_Raster_SetModeFunc)( FT_Raster raster,
1222 /* Invoke a given raster to scan-convert a given glyph image into a */
1226 /* raster :: A handle to the raster object. */
1235 /* The exact format of the source image depends on the raster's glyph */
1241 /* `FT_Err_Unimplemented_Feature' error code if the raster used does */
1244 /* XXX: For now, the standard raster doesn't support direct */
1251 (*FT_Raster_RenderFunc)( FT_Raster raster,
1263 /* A structure used to describe a given raster class to the library. */
1266 /* glyph_format :: The supported glyph format for this raster. */
1268 /* raster_new :: The raster constructor. */
1270 /* raster_reset :: Used to reset the render pool within the raster. */
1274 /* raster_done :: The raster destructor. */