naga_oil/
lib.rs

1// todo
2
3// prune
4// check if you can ImageStore to a function argument - pretty sure not
5// barriers - we currently don't make the containing scope required on encountering a barrier. this doesn't feel right since a nested barrier could be ignored?
6// *    atomics
7
8// compose
9// use more regexes..?
10// generate headers on demand
11// check mobile - does everybody use wgsl?
12// support glsl compute
13// move tests to executed compute test
14// *    purge/replace modules should invalidate dependents
15// *    search/replace decorated strings in error reports
16// *    use better encoding for decorate
17// *    don't allow modules containing decoration
18
19// derive
20// *    better api for entry points
21
22// redirect
23// stable output order where possible?
24// translate access uniform / storage / etc
25
26pub mod compose;
27pub mod derive;
28pub mod redirect;
29
30#[cfg(feature = "prune")]
31pub mod prune;