pub trait OverlayAt<W> {
// Required method
unsafe fn overlay_at(&mut self, with: &W, x: u32, y: u32) -> &mut Self;
}Expand description
Trait for layering a image ontop of another, with a offset to the second image.
Required Methods§
Object Safety§
This trait is not object safe.