Lucas Kent
Lucas Kent
closes https://github.com/bheisler/criterion.rs/issues/514 I chose to alter bench_with_input to add this functionality because it can still be used for the original use case by just adding `||` to make the value...
Currently I have many benchmarks that look like: ```rust fn foo(c: &mut Criterion) { let setup = do_expensive_setup(); c.bench_function("foo", move |b| { b.iter(|| { do_something_with(setup); }) }); } ``` When...
I use [patch.crates-io] to override the crate used in my project when I make a bug fix that is waiting to be upstreamed. However this results in a higher version...
I tried running the commands under "For example" to enable the grid and it didnt work. I was very confused and after a lot of messing around I realized I...
It is very common to want to use command history to reattempt a command that was invalid.
Runs fine if I enable vsync. This seems similar to other issues I have encountered on nvidia GPU's where there is no delay when vsync is disabled so it renders...
Initially reported here: https://www.reddit.com/r/rust/comments/9ye5s8/vulkano_fails_to_compile_after_implementing/ Doing `cargo run --release` in the directory `/home/rubic/dir with space oh no/shaderc-rs` Results in this compile error. ``` 97%] Building CXX object shaderc/glslc/CMakeFiles/glslc.dir/src/dependency_info.cc.o [ 97%] Built...
originally posted by mikhailv in vulkano-examples on sep 6 2017 Can be reproduced on windows 10 with nvidia cards (GTX 960, GTX 1070). Cannot reproduce on windows with AMD.
In the following example "after write" is printed but "after drop" is never reached. All the read methods also block forever but while that could be an issue on my...
closes https://github.com/rust-windowing/winit/issues/2116 - [x] Tested on all platforms changed - [x] Added an entry to `CHANGELOG.md` if knowledge of this change could be valuable to users - [x] Updated documentation...