Rename fill_rectangle to fill_quad in Renderer

This commit is contained in:
Héctor Ramón Jiménez 2021-11-04 19:22:29 +07:00
parent 343f9b7e2e
commit 023aded277
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
19 changed files with 320 additions and 245 deletions

View file

@ -1,6 +1,6 @@
use crate::renderer::{self, Renderer};
use crate::text::{self, Text};
use crate::{Font, Point, Rectangle, Size, Vector};
use crate::{Background, Font, Point, Rectangle, Size, Vector};
/// A renderer that does nothing.
///
@ -27,7 +27,12 @@ impl Renderer for Null {
fn clear(&mut self) {}
fn fill_rectangle(&mut self, _quad: renderer::Quad) {}
fn fill_quad(
&mut self,
_quad: renderer::Quad,
_background: impl Into<Background>,
) {
}
}
impl text::Renderer for Null {