Post B7vyvGt3SqqxXfIwIS by lina@vt.social
(DIR) More posts by lina@vt.social
(DIR) Post #B7vyvGt3SqqxXfIwIS by lina@vt.social
0 likes, 0 repeats
I started using egui with Rust and it looks great and... then I saw they've been switching blending and sampling from linear to sRGB-naive everywhere and aaaaaaaaaaaaaaaaa whyyyyyyyyyyyy???As far as I can tell they had some bugs elsewhere and that "fixed" them by chance... ;;
(DIR) Post #B7vyvH5SiimIA96qdU by lethalbit@vt.social
0 likes, 0 repeats
@lina egui is cute, but I can't say i'm a huge fan of the immediate mode pattern for GUIs, It works well for things like games, or render overlays and stuff, but I think retained mode is generally better for most things,Hence why i'm grumpy iced-rs is not really as far along ecosystem wise and egui, but alas.
(DIR) Post #B7wEUscOfe2w0lwz5s by mkalte@layer8.space
0 likes, 0 repeats
@lethalbit @lina if i may chime in: i swapped to an immediate mode pattern because I had a lot of issues with state duplication. In retrospect, better design of the whole system would have prevented that, however I am now somewhat committed and it works well enough for the things I do. And I can focus on mostly writing library code, and just bolting gui on after the fact.