Faule Socke
Faule Socke
Wouldn't it be easier to just generate a regular mine field (with all the usual tricks of course), where all mines have pre-determined positions and then implement your additional rules...
Currently it seems like `invert()` is only defined for `Mat4` types, but not `Mat3` and `Mat2`. Is there a reason for this?
- Did you upgrade to latest plugin version? Yes. - Did you upgrade to/compile latest binary? Run shell command `bin/languageclient --version` to get its version number. `languageclient 0.1.157 4b35f5d6859ab3d42546192cbede9add59a7435a` -...
These methods are quite useful whenever you have to make sure that a value stays inside a specified range. Although there is `f32::clamp` and `f64::clamp` these are not stabilized yet...
I'm currently disassembling a lot of 16 bit real-mode code. A unique property of this code is that the address at which the code would normally load can not be...
It should be possible to use a block multiple times in the template. This is possible in jinja2, because a block can be accessed through the special `self` variable as...
I get random behaviour (so likely this is UB) when reading a `ImmutableImage` with layout `General` using `AutoCommandBufferBuilder::blit_image`. The minimum example below reproduces this error: ```rust use vulkano::{ buffer::{BufferUsage, CpuAccessibleBuffer},...
This fixes #1557 It seems to work just fine with all the tests I did. * [x] Ran `cargo fmt` on the changes
The `ImmutableImage::from_iter` internaly calls `from_buffer` which then creates the image with usage flags `transfer_destination` and `sampled`. However, sometimes one might want to specify more usage flags, for example `transfer_source` to...
In #257 flash write support was added. However, no example and only little documentation was provided on how to use it. Would it be possible that someone writes an example...