pub trait Fill: Surface { // Required method fn fill_from(&mut self, data: &[Self::Texel]); }
The surface that can be filled directly.
Fill the surface from the provided data.
data