mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 06:44:14 +00:00
Another CHANGELOG update for v0.4 (#796)
This commit is contained in:
parent
fd561da44c
commit
93e57ffcf2
14
CHANGELOG.md
14
CHANGELOG.md
@ -1,6 +1,6 @@
|
||||
# Change Log
|
||||
|
||||
## v0.4 (TBD)
|
||||
## v0.4 (2021-04-29)
|
||||
- development release for wgpu-0.8
|
||||
- API:
|
||||
- expressions are explicitly emitted with `Statement::Emit`
|
||||
@ -13,18 +13,22 @@
|
||||
- new `Statement::ImageStore`
|
||||
- all function calls are `Statement::Call`
|
||||
- `GlobalUse` is moved out into processing
|
||||
- field layout is controlled by `size` and `alignment` overrides, based on a default layout
|
||||
- `Header` is removed
|
||||
- entry points are an array instead of a map
|
||||
- new `Swizzle` and `Splat` expressions
|
||||
- interpolation qualifiers are extended and required
|
||||
- struct member layout is based on the byte offsets
|
||||
- Infrastructure:
|
||||
- control flow uniformity analysis
|
||||
- texture-sampler combination gathering
|
||||
- `CallGraph` processor is moved out into `glsl` backend
|
||||
- `Interface` is removed
|
||||
- statement tree and constants are validated
|
||||
- `Interface` is removed, instead the analysis produces `ModuleInfo` with all the derived info
|
||||
- validation of statement tree, expressions, and constants
|
||||
- code linting is more strict for matches
|
||||
- new GraphViz `dot` backend for pretty visualization of the IR
|
||||
- `convert` is default a binary target, published with the crate
|
||||
- Metal support for inlined samplers
|
||||
- `convert` example is transformed into the default binary target named `naga`
|
||||
- lots of frontend and backend fixes
|
||||
|
||||
### v0.3.2 (2021-02-15)
|
||||
- fix logical expression types
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "naga"
|
||||
version = "0.3.1"
|
||||
version = "0.4.0"
|
||||
authors = ["Naga Developers"]
|
||||
edition = "2018"
|
||||
description = "Shader translation infrastructure"
|
||||
@ -24,7 +24,7 @@ pomelo = { version = "0.1.4", optional = true }
|
||||
thiserror = "1.0.21"
|
||||
serde = { version = "1.0", features = ["derive"], optional = true }
|
||||
petgraph = { version ="0.5", optional = true }
|
||||
pp-rs = { git = "https://github.com/Kangz/glslpp-rs", rev = "4f2f72a", optional = true }
|
||||
pp-rs = { version = "0.1", optional = true }
|
||||
#env_logger = "0.8" # uncomment temporarily for developing with the binary target
|
||||
|
||||
[features]
|
||||
|
Loading…
Reference in New Issue
Block a user