Struct andrew::Canvas [−][src]
pub struct Canvas<'a> {
pub buffer: &'a mut [u8],
pub width: usize,
pub height: usize,
pub stride: usize,
pub pixel_size: usize,
pub endianness: Endian,
}
Expand description
The canvas object acts as a wrapper around a buffer, providing information and functions for drawing
Fields
buffer: &'a mut [u8]
A buffer for the canvas to draw to
width: usize
The width in pixels of the canvas
height: usize
The height in pixels of the canvas
stride: usize
The number of bytes between each line of pixels on the canvas
pixel_size: usize
The number of bytes contained in each pixel
endianness: Endian
The endianness of the canvas
Implementations
Creates a new canvas object
Draws an object that implements the Drawable trait to the buffer
Draws a pixel at the x and y coordinate