Firestar99
Firestar99
We were using some dependency substitution on the support libraries in our app causing the plugin to tell us that we were fine dropping jetifier, even though we weren't. Removing...
I'm running an i7-8705G with a Vega m GL and WattmanGTK refuses to launch. This is expected as this GPU is locked down by Intel and only the i7-8809G is...
**Describe the bug** Nolol multiline if's do not allow $ after end erroring out with `Expected newline. Found Token: '$'(Symbol)`, although it works just fine with single line ifs. This...
Complete IDE freeze when typing source code and a "superclass recursion" is typed (see example below) and one would right-click -> Show Object Layout. Happened while testing for #29. However...
The rspirv update is required to get the spirv symbols required for mesh shaders, which will be added in a separate PR. Original mesh shader PR: https://github.com/EmbarkStudios/rust-gpu/pull/1019
**!!! builds on top of [PR #1118](https://github.com/EmbarkStudios/rust-gpu/pull/1118), which needs to be merged first** Adds support for `VK_EXT_mesh_shader`, rebased from the abandoned [PR #1019](https://github.com/EmbarkStudios/rust-gpu/pull/1019) by @BeastLe9enD. Note that I have split...
### Expected Behaviour In the following example, you can't have a `uniform` with a variable amount of data, so it must be a `storage_buffer` instead. Currently, rust-gpu compiles it to...
### Expected Behaviour rust-gpu compiling for any `spirv-unknown-vulkan1.X` target should not implicitly emit `OpCapability VulkanMemoryModel` in the resulting spv, instead one would need to call `SpirvBuilder.capability(Capability::VulkanMemoryModel)` to enable the `VulkanMemoryModel`...
Add official documentation that one should have ```toml [workspace] resolver = "2" ``` in their root `cargo.toml` to make sure dependencies are resolved correctly and that crates compiled with different...
If you compile a crate with rust-gpu but **forget** to add ```toml [lib] crate-type = ["lib", "dylib"] ``` in it's `cargo.toml` rust-gpu will error out with: `Artifact created when compilation...