Louis Pearson

Results 48 comments of Louis Pearson

Thanks @meshula, LabSound seems like a really cool project. I checked out the LabSoundGraphToy and it's very much in line with the type of interface I would like to eventually...

Oh, BTW, the zig code being discussed lives in the https://github.com/machlibs/synth repository. I realized I hadn't linked it anywhere yet. > Yes on pins and noodles. The pins are further...

I figured out why the CI failed: I didn't run make all, and I didn't know about DisplayAppRecovery. I've just pushed a change that should fix that. @maksalees Not a...

@maksalees I added the battery icon. It was pretty easy all things considered!

I'm not sure. I have to admit I goofed up and forgot to test if the code ran on the device, so I'll need to take some time and do...

@Riksu9000 It's been a while since I've done anything with this. I'll take a look this weekend and see if I can get the code rebased.

I have some audio-centric questions that I didn't see answered. - Can assets be streamed from the disk? Long audio clips usually shouldn't be stored in memory if it isn't...

Right, those are factors that can affect streaming. Obviously it would be impossible to guarantee stutter-free streaming in those situations. There are plenty of other places where it *is* possible...

I have an updated nix flake: ``` { description = "Mach is a game engine & graphics toolkit for the future."; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; zig.url = "github:mitchellh/zig-overlay";...

This was all with `cargo run`. The optimizations flag won't do anything in `cargo run --release`, since only `[profile.dev]` is changed. You can read more about profiles here: https://doc.rust-lang.org/cargo/reference/profiles.html Something...