2020-08-17 03:49:48 +00:00
|
|
|
# Change Log
|
|
|
|
|
2021-04-29 04:52:43 +00:00
|
|
|
## v0.4 (2021-04-29)
|
2021-03-16 02:29:00 +00:00
|
|
|
- development release for wgpu-0.8
|
|
|
|
- API:
|
|
|
|
- expressions are explicitly emitted with `Statement::Emit`
|
|
|
|
- entry points have inputs in arguments and outputs in the result type
|
|
|
|
- `input`/`output` storage classes are gone, but `push_constant` is added
|
|
|
|
- `Interpolation` is moved into `Binding::Location` variant
|
|
|
|
- real pointer semantics with required `Expression::Load`
|
|
|
|
- `TypeInner::ValuePointer` is added
|
|
|
|
- image query expressions are added
|
|
|
|
- new `Statement::ImageStore`
|
|
|
|
- all function calls are `Statement::Call`
|
|
|
|
- `GlobalUse` is moved out into processing
|
|
|
|
- `Header` is removed
|
|
|
|
- entry points are an array instead of a map
|
2021-04-29 04:52:43 +00:00
|
|
|
- new `Swizzle` and `Splat` expressions
|
|
|
|
- interpolation qualifiers are extended and required
|
|
|
|
- struct member layout is based on the byte offsets
|
2021-03-16 02:29:00 +00:00
|
|
|
- Infrastructure:
|
|
|
|
- control flow uniformity analysis
|
|
|
|
- texture-sampler combination gathering
|
|
|
|
- `CallGraph` processor is moved out into `glsl` backend
|
2021-04-29 04:52:43 +00:00
|
|
|
- `Interface` is removed, instead the analysis produces `ModuleInfo` with all the derived info
|
|
|
|
- validation of statement tree, expressions, and constants
|
2021-03-16 02:29:00 +00:00
|
|
|
- code linting is more strict for matches
|
|
|
|
- new GraphViz `dot` backend for pretty visualization of the IR
|
2021-04-29 04:52:43 +00:00
|
|
|
- Metal support for inlined samplers
|
|
|
|
- `convert` example is transformed into the default binary target named `naga`
|
|
|
|
- lots of frontend and backend fixes
|
2021-03-16 02:29:00 +00:00
|
|
|
|
|
|
|
### v0.3.2 (2021-02-15)
|
|
|
|
- fix logical expression types
|
|
|
|
- fix _FragDepth_ semantics
|
|
|
|
- spv-in:
|
|
|
|
- derive block status of structures
|
|
|
|
- spv-out:
|
|
|
|
- add lots of missing math functions
|
|
|
|
- implement discard
|
|
|
|
|
|
|
|
### v0.3.1 (2021-01-31)
|
2021-01-31 03:54:20 +00:00
|
|
|
- wgsl:
|
|
|
|
- support constant array sizes
|
|
|
|
- spv-out:
|
|
|
|
- fix block decorations on nested structures
|
|
|
|
- fix fixed-size arrays
|
|
|
|
- fix matrix decorations inside structures
|
|
|
|
- implement read-only decorations
|
|
|
|
|
|
|
|
## v0.3 (2021-01-30)
|
2021-01-30 00:41:19 +00:00
|
|
|
- development release for wgpu-0.7
|
|
|
|
- API:
|
|
|
|
- math functions
|
|
|
|
- type casts
|
|
|
|
- updated storage classes
|
|
|
|
- updated image sub-types
|
|
|
|
- image sampling/loading options
|
|
|
|
- storage images
|
|
|
|
- interpolation qualifiers
|
|
|
|
- early and conservative depth
|
|
|
|
- Processors:
|
|
|
|
- name manager
|
|
|
|
- automatic layout
|
|
|
|
- termination analysis
|
|
|
|
- validation of types, constants, variables, and entry points
|
2020-08-17 03:49:48 +00:00
|
|
|
|
2021-01-31 03:54:20 +00:00
|
|
|
## v0.2 (2020-08-17)
|
|
|
|
- development release for wgpu-0.6
|
|
|
|
|
2020-08-17 03:49:48 +00:00
|
|
|
## v0.1 (2020-02-26)
|
|
|
|
- initial release
|