| 259 | } |
| 260 | |
| 261 | pub trait Target { |
| 262 | const FLIPPED: bool; |
| 263 | |
| 264 | fn bind(&self, gfx: &Graphics); |
| 265 | fn size(&self) -> (i32, i32); |
| 266 | } |
| 267 | |
| 268 | impl Target for Window { |
| 269 | const FLIPPED: bool = false; |
nothing calls this directly
no outgoing calls
no test coverage detected