Introduce fill_rectangle to Renderer trait

This commit is contained in:
Héctor Ramón Jiménez 2021-10-18 14:47:49 +07:00
parent dfceee99aa
commit a4f4d83161
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
3 changed files with 24 additions and 1 deletions

View file

@ -37,6 +37,8 @@ impl Renderer for Null {
}
fn clear(&mut self) {}
fn fill_rectangle(&mut self, _quad: renderer::Quad) {}
}
impl renderer::Text for Null {