| 35 | } |
| 36 | |
| 37 | pub struct Store { |
| 38 | x: usize, |
| 39 | y: usize, |
| 40 | x2: usize, |
| 41 | y2: usize, |
| 42 | resizing: [bool; 4], |
| 43 | moving: Option<(usize, usize)>, |
| 44 | b1: Vec<RGBA>, |
| 45 | b2: Vec<RGBA>, |
| 46 | step: usize, |
| 47 | taffy: Taffy, |
| 48 | input_history_last_index: usize, |
| 49 | console_history: ConsoleHistory, |
| 50 | active: bool, |
| 51 | local: Local, |
| 52 | shift: bool, |
| 53 | altg: bool, |
| 54 | script_ctx: fomoscript::Ctx, |
| 55 | mode: Mode, |
| 56 | } |
| 57 | |
| 58 | fn put(pixel: &mut RGBA, v: Vec3<f32>) { |
| 59 | pixel.r = v.x as u8; |
nothing calls this directly
no outgoing calls
no test coverage detected