N. Nattis

Results 10 comments of N. Nattis

Yes, winit fullscreen example runs fine. The error doesn't seem to trigger if the window is not focused. By debugging, I found out that the program stopped at https://github.com/vulkano-rs/vulkano/blob/a3d503a5e5d256cf10be8c1701b8bfa3bed3efc4/vk-sys/src/lib.rs#L2699 Call...

By having `num_images` panic when 1, people with NVIDIA cards will rely on `min_image_count` and create perfectly good programs (for them) which don't work for people with AMD GPUs. IMO...

@ooglek I think it'd be better if you opened a new issue for the as-you-type discussion, but > Is there any way to better implement type-as-you-go or partial formatting found...

> Plus correct me if I'm wrong but the decoding process isn't nested right? When 5.0.0 is released the process will be nested, just a matter of putting the list...

The `CborJsonEncoder` encodes bytes as base64, cbor.me shows diagnostic notation which converts these to hexadecimal instead. Currently there is no way to print diagnostic notation, but pretty print will show...

Also experiencing this. Fedora 37, kernel 6.1.14-200

Also having this problem. Following work-around works while the package.xml is not fixed: ```sh flatpak run --command=bash org.freecadweb.FreeCAD cd ~/.var/app/org.freecadweb.FreeCAD/data/FreeCAD/AdditionalPythonPackages/py311 pip3 install scipy --target . ``` (The path `AdditionalPythonPackages/py311` may...

> `bundle config build.posix-spawn --with-cflags="-Wno-incompatible-pointer-types"` This fixed the build on Fedora as well. Thanks!