Function bitblt

Source
pub unsafe fn bitblt(
    dstp: *mut c_void,
    dst_stride: isize,
    srcp: *const c_void,
    src_stride: isize,
    row_size: usize,
    height: usize,
)
Expand description

Copies bytes from one plane to another. Basically, it is memcpy in a loop.

ยงSafety

srcp and dstp must be valid and not overlapping