Type Alias lv_draw_buf_handlers_t
Source pub type lv_draw_buf_handlers_t = _lv_draw_buf_handlers_t;
#[repr(C)]
pub struct lv_draw_buf_handlers_t {
pub buf_malloc_cb: Option<unsafe extern "C" fn(usize, u32) -> *mut c_void>,
pub buf_free_cb: Option<unsafe extern "C" fn(*mut c_void)>,
pub align_pointer_cb: Option<unsafe extern "C" fn(*mut c_void, u32) -> *mut c_void>,
pub invalidate_cache_cb: Option<unsafe extern "C" fn(*const _lv_draw_buf_t, *const lv_area_t)>,
pub flush_cache_cb: Option<unsafe extern "C" fn(*const _lv_draw_buf_t, *const lv_area_t)>,
pub width_to_stride_cb: Option<unsafe extern "C" fn(u32, u32) -> u32>,
}