Results 158 comments of Moritz Mœller

Any feedback on my PR? Pros/cons?

I'm using this example from the `valora` guide: ```Rust use valora::prelude::*; fn main() -> Result { run_fn(Options::from_args(), |_gpu, world, _rng| { Ok(move |ctx: Context, canvas: &mut Canvas| { canvas.set_color(LinSrgb::new(1., 1.,...

Here is another one: ``` thread 'main' panicked at 'index out of bounds: the len is 178 but the index is 178', src/library/parser/mod.rs:432:27 ```

For reference, I am trying to transpile this file: https://github.com/darktable-org/darktable/blob/master/src/iop/filmic.c

Needs fixing. It was no important enough for me to bother ... I translated that source manually. :)

It seems the time stamp is indeed done on [the client side in Python](https://github.com/erdewit/ib_insync/blob/f92a65215c462203f2c4166d606f33c288606279/ib_insync/wrapper.py#L1107). So reformulating my question: is there a similar callback in the `Wrapper` trait that I can...

Looks like this would have to be done inside the `Reader::run()` loop? I.e. passing the wrapper all down there and the call resp. new methods added to the `Wrapper` trait?...

Hey, no worries. I don't depend on the working atm. Just made a ticket so it doesn't fall through the cracks.

It doesn't need to be closures. It can be something based on macros so users can have compile-time optimized paths for common encodings like `sRGB` or `Adobe RGB`. Without this...

> I need to fix it ASAP, if you have a smal reproductible main to copy paste me here it would be helpful for me :) The `struct` I posted...