(&mut self, rect: Rectangle, params: DrawParams)
| 161 | } |
| 162 | |
| 163 | pub fn rect(&mut self, rect: Rectangle, params: DrawParams) { |
| 164 | self.push_sprite(None, Rectangle::ZERO, rect, params); |
| 165 | } |
| 166 | |
| 167 | pub fn texture(&mut self, texture: &Texture, position: Vec2, params: DrawParams) { |
| 168 | self.push_sprite( |
nothing calls this directly
no test coverage detected