MCPcopy Create free account
hub / github.com/Ruddle/Fomos / Store

Class Store

app_console/src/main.rs:37–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35}
36
37pub 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
58fn put(pixel: &mut RGBA, v: Vec3<f32>) {
59 pixel.r = v.x as u8;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected