Type Alias FT_Raster_Params
Source pub type FT_Raster_Params = FT_Raster_Params_;
#[repr(C)]
pub struct FT_Raster_Params {
pub target: *const FT_Bitmap_,
pub source: *const c_void,
pub flags: i32,
pub gray_spans: Option<unsafe extern "C" fn(i32, i32, *const FT_Span_, *mut c_void)>,
pub black_spans: Option<unsafe extern "C" fn(i32, i32, *const FT_Span_, *mut c_void)>,
pub bit_test: Option<unsafe extern "C" fn(i32, i32, *mut c_void) -> i32>,
pub bit_set: Option<unsafe extern "C" fn(i32, i32, *mut c_void)>,
pub user: *mut c_void,
pub clip_box: FT_BBox_,
}