pub trait TargetPixel: Sized + Copy {
    fn blend(&mut self, color: PremultipliedRgbaColor);
    fn from_rgb(red: u8, green: u8, blue: u8) -> Self;

    fn blend_slice(slice: &mut [Self], color: PremultipliedRgbaColor) { ... }
}
Expand description

Trait for the pixels in the buffer

Required Methods§

Blend a single pixel with a color

Create a pixel from the red, gree, blue component in the range 0..=255

Provided Methods§

Blend a color to all the pixel in the slice.

Implementations on Foreign Types§

Implementors§