Jonathan Nilsson

Results 11 comments of Jonathan Nilsson

I have tested this on the glium backend and looked at the index buffer in render doc. There i can see that it is allocated correctly as u32. Do you...

Cool didn't know about that! Doesn't seem like the imgui-glium-renderer supports it though? Do we want to expose both ways for people with back-ends that don't support it?

I have implemented upload to the Everdrive 64 x7 here: https://github.com/JoNil/loka-n64/blob/master/deploy/src/main.rs When set as a runner i can just do cargo run the the game runs on the console :)

Hi! One alternate approach to an allocator is the one i built here: https://github.com/JoNil/loka-n64/tree/master/n64-alloc It is basically a copy of https://crates.io/crates/wee_alloc for webassembly but with only the static array backend....

I just ran into this issue as well, i tried the path in the closed pr and that soled it for me as well. I'm running on an raspberry pi...

I have a pr for that in the can-dbc crate that would fix it when parsing: https://github.com/marcelbuesing/can-dbc/pull/15

@AldaronLau >Can you provide any more information about your setup? Are you running Alpine Linux, Raspbian or some other embedded Linux distribution? Which micro-controller are you using? I'm running a...

I tried to port the c code to rust. Here is the attempt: https://github.com/voysys/stick/commit/dc2d7528c05109ebbda56fa81fc5d9ee3f718aac With that test code i got the following output on my device: [35, 0, 3, 0,...

Ooo i just had one more idea! In most other joystick libraries i have encountered they don't give an event with the initial value so that the application don't know...

As far as i understand to scale the input differently per axis i would need to add an axis parameter to the axis function in the Controller trait. This seems...