Runi-c
Runi-c
Racket modules are wonderful for containerizing code, and we've been given forms like `only-in` and `prefix-in` to make imported symbol sources explicit. However, the _standard_ behavior (i.e. the one most...
**Is your feature request related to a problem? Please describe.** Right now naga-based tooling can only display one validation error at a time, it would be nice if such tooling...
### Feature There's quite a variety of places where the types are less useful than they could be. Some examples: -------------------- ```ts const reaction: GatewayMessageReactionAddDispatchData = ...; if(reaction.member?.user.bot) return; //error!...
```wgsl #import dep::{foo, bar} struct Example { bar: u32, } fn test() { let example = Example(0u); foo(example.bar); } ``` This code produces this error: ``` error: invalid field accessor...
There's some useful logic buried in [`ComposerError::emit_to_string_internal`](https://github.com/bevyengine/naga_oil/blob/master/src/compose/error.rs#L190) for calculating labels and notes to create a diagnostic for the error. It would be useful for tooling integration if it could be...
### Bug description I'm developing against an Amazon RDS PostgreSQL instance. I've noticed that every time I try a migration that fails for some expected reason (e.g. I need to...
I'm working on a hefty compute shader project in WGSL and running into a pair of issues that feel very constricting. 1. The only way to have runtime _or_ pipeline-sized...
## What problem does this solve or what need does it fill? I lost several hours to a silent failure caused by specifying `RenderAssetUsages::RENDER_WORLD` on a procedural mesh builder. I...
**Problem** When trying to use hotpatching on a trivial Bevy project with the `dynamic_linking` feature enabled, I get this error (verbose logging): ``` 01:24:35 [dev] Build completed successfully in 217087ms,...