Struct emerald_kernel_user_link::graphics::BlitCommand
source · #[repr(C)]pub struct BlitCommand {
pub memory: *const u8,
pub src_framebuffer_info: FrameBufferInfo,
pub src: (usize, usize),
pub dst: (usize, usize),
pub size: (usize, usize),
}
Fields§
§memory: *const u8
The memory buffer to blit from, this represent the whole framebuffer even if we are only blitting a part of it
src_framebuffer_info: FrameBufferInfo
The framebuffer info of the source memory
i.e. metadata about memory
src: (usize, usize)
The position in the source framebuffer to start blitting from
dst: (usize, usize)
The position in the destination framebuffer to start blitting to this destination is the kernel’s framebuffer
size: (usize, usize)
The size of the region to blit (width, height)
Trait Implementations§
source§impl Clone for BlitCommand
impl Clone for BlitCommand
source§fn clone(&self) -> BlitCommand
fn clone(&self) -> BlitCommand
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for BlitCommand
impl Debug for BlitCommand
impl Copy for BlitCommand
Auto Trait Implementations§
impl RefUnwindSafe for BlitCommand
impl !Send for BlitCommand
impl !Sync for BlitCommand
impl Unpin for BlitCommand
impl UnwindSafe for BlitCommand
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more