| 27 | |
| 28 | #[repr(C)] |
| 29 | pub struct FB<'a> { |
| 30 | pub pixels: &'a mut [RGBA], |
| 31 | pub w: usize, |
| 32 | pub h: usize, |
| 33 | } |
| 34 | |
| 35 | #[no_mangle] |
| 36 | pub extern "C" fn _start(ctx: &mut Context) -> i32 { |
nothing calls this directly
no outgoing calls
no test coverage detected