William Lallemand
William Lallemand
I could make it work by configuring the WGPU_BACKEND variable: `WGPU_BACKEND=vulkan ./target/debug/halloy` crashes `WGPU_BACKEND=gl ./target/debug/halloy` works Might be a problem related to my setup or/and the nvidia drivers.
I tried to replace `iced_wgpu` with upstream but it don't fix the problem: ``` diff --git a/Cargo.toml b/Cargo.toml index beb5d351..bd39f843 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -103,7 +103,7 @@ windows_exe_info...
What I don't understand is that the examples from the iced `patch` branch from `https://github.com/squidowl/iced` seems to work correctly as well.
Unfortunately that doesn't change anything, I still have to start with `WGPU_BACKEND=gl`
I tried on another machine with the same setup but without an nvidia card, so that might be the problem.
Sorry I didn't explained correctly: > I tried on another machine with the same setup but without an nvidia card, so that might be the problem. This was working on...
Okay that's exactly what's going on, I was always running with my nvidia and you can see in my first dump: ``` 20:16:58.463:INFO -- Selected: AdapterInfo { name: "Intel(R) Graphics...
So I compared the settings in the dump between the iced example and halloy, and one of the difference was the antialiasing... ``` diff --git a/src/main.rs b/src/main.rs index 2e0d7f17..7515fcc4 100644...
I can reproduce something with an iced example, I'll open an issue: ``` diff --git a/examples/todos/src/main.rs b/examples/todos/src/main.rs index 6dee5b66..d7ef5b1f 100644 --- a/examples/todos/src/main.rs +++ b/examples/todos/src/main.rs @@ -26,6 +26,7 @@ fn application()...
Note that jemalloc is still developed by the facebook team https://github.com/facebook/Jemalloc . I just don't know if they intend to have releases.