Lines Matching refs:raster

5 /*    FreeType glyph image formats and default raster interface            */
21 /* Note: A `raster' is simply a scan-line converter, used to render */
211 /* A structure used to describe a bitmap or pixmap to the raster. */
749 /* A raster is a scan converter, in charge of rendering an outline into */
762 /* raster */
797 /* An opaque handle (pointer) to a raster object. Each object can be */
969 /* A structure to hold the arguments used by a raster's render */
1002 /* raster will call the `gray_spans' callback to draw gray pixel */
1028 /* A function used to create a new raster object. */
1034 /* raster :: A handle to the new raster object. */
1044 /* completely ignored by a given raster implementation. */
1048 FT_Raster* raster );
1059 /* A function used to destroy a given raster object. */
1062 /* raster :: A handle to the raster object. */
1065 (*FT_Raster_DoneFunc)( FT_Raster raster );
1082 /* after a new raster object is created. */
1085 /* raster :: A handle to the new raster object. */
1094 /* passed to the raster constructor). */
1097 (*FT_Raster_ResetFunc)( FT_Raster raster,
1111 /* in a given raster. This can be used for debugging purposes, or */
1113 /* raster module. */
1116 /* raster :: A handle to the new raster object. */
1123 (*FT_Raster_SetModeFunc)( FT_Raster raster,
1136 /* Invoke a given raster to scan-convert a given glyph image into a */
1140 /* raster :: A handle to the raster object. */
1149 /* The exact format of the source image depends on the raster's glyph */
1155 /* `FT_Err_Unimplemented_Feature' error code if the raster used does */
1158 /* XXX: For now, the standard raster doesn't support direct */
1165 (*FT_Raster_RenderFunc)( FT_Raster raster,
1177 /* A structure used to describe a given raster class to the library. */
1180 /* glyph_format :: The supported glyph format for this raster. */
1182 /* raster_new :: The raster constructor. */
1184 /* raster_reset :: Used to reset the render pool within the raster. */
1188 /* raster_done :: The raster destructor. */