Patryk Wychowaniec
Patryk Wychowaniec
TOML is a popular configuration format - a pretty-printer for it would be nice; not sure on the format or any details yet.
Moim zdaniem byłoby nieco ładniej, gdyby navbar chował się zostawiając widoczne ikonki (na wzór np. WordPressa) - przycisk do chowania można by wtedy też przerzucić w jakieś inne miejsce tak,...
Currently, trying to perform CLIP interrogation on a CPU fails, saying: ``` RuntimeError: "slow_conv2d_cpu" not implemented for 'Half' ``` This merge request fixes this issue by detecting whether the target...
This code: ```rust use serde::Serialize; #[derive(Default, Serialize)] struct Foo { #[serde(rename = "bar\"")] bar: String, } fn main() { println!("{}", serde_json::to_string_pretty(&Foo::default()).unwrap()); } ``` ... returns: ```json { "bar\"": "" }...
`device.create_shader_module()` has a (somewhat evil) cousin `device.create_shader_module_unchecked()` which allows to instantiate a shader without extra runtime checks (e.g. for array bounds). This comes very handy for memory-intensive shaders, for instance...
Hi, Compiling this code: ```rust #[spirv(compute(threads(8, 8)))] pub fn main(#[spirv(descriptor_set = 0, binding = 0)] out: TexRgba32f) { let mut value = vec3(0.1, 0.2, 0.3); let mut i = 0;...
Hi, Following test fails: ```rust #[test] fn test_spanned_enum() { #[derive(Debug, Deserialize)] #[serde(tag = "type")] enum Foo { Bar(Bar), } #[derive(Debug, Deserialize)] struct Bar { hello: Spanned, } let toml =...
Currently Strolle is hard-coded to use the atmosphere envmap - that's handy for playing with the engine, but should be probably actually separated into its own crate (`bevy-strolle-atmosphere`?).
Our atlas currently consists of 1x 8192x8192 texture - we could expand that up to 16x.