| 175 | #[derive(Clone)] |
| 176 | #[repr(C)] |
| 177 | pub struct FB { |
| 178 | pub pixels: Vec<RGBA>, |
| 179 | pub backbuffer: Vec<RGBA>, |
| 180 | pub w: usize, |
| 181 | pub h: usize, |
| 182 | } |
| 183 | |
| 184 | #[repr(C)] |
| 185 | pub struct FBShare<'a> { |
nothing calls this directly
no outgoing calls
no test coverage detected