Anthony DeDominic

Results 6 comments of Anthony DeDominic

I was able to work around this problem in the meantime by setting the FLATPAK_GL_DRIVERS for my user scope and restarting the flatpak portal service. This is on Fedora, so...

This change has broken my use case as well. coming from 2.9.1, I tried upgrading to 4.9.0. results are as followed: 2.9.1: ![Screenshot from 2020-07-13 16-23-13](https://user-images.githubusercontent.com/6037590/87350223-8e4b9000-c525-11ea-9334-e5780c269ec5.png) 4.9.0: ![Screenshot from 2020-07-13...

I ended up changing synchronization setting to "System" and the battle.net client, the wine system tray and overwatch 2 are much more stable (as in, not crashing as often or...

PLTE is 3-byte colors. You need to encoder.[set_trns](https://docs.rs/png/0.17.16/png/struct.Encoder.html#method.set_trns) for the alpha channel of your PLTE colors. See, below for details: http://www.libpng.org/pub/png/spec/1.2/PNG-Chunks.html#C.Anc-trns

I was able to work around this by using a relatively newish feature in 1.82.0: [spawn_unchecked](https://doc.rust-lang.org/std/thread/struct.Builder.html#method.spawn_unchecked) which removes the lifetime requirements of the closure being spawned. It feels a bit...

I was messing around with this and I think I do have an idea. If `struct Service(/* accept */ u32)` is made strictly a "builder", and split off the windows...