Add 0.7 changelog

This commit is contained in:
Dzmitry Malyshau 2021-01-27 14:57:17 -05:00
parent 0346b43982
commit cef0a30aa2
2 changed files with 22 additions and 1 deletions

View File

@ -1,5 +1,26 @@
# Change Log
## v0.7 (TBD)
- Major API changes:
- `RenderPipelineDescriptor`
- `BindingType`
- Features:
- (beta) WGSL support, including the ability to bypass SPIR-V entirely
- (beta) implicit bind group layout support
- timestamp and pipeline statistics queries
- ETC2 and ASTC compressed textures
- (beta) targeting WASM with WebGL backend
- reduced dependencies
- Native-only:
- clamp-to-border addressing
- polygon fill modes
- query a format for extra capabilities
- `f64` support in shaders
- Validation:
- shader interface
- render pipeline descriptor
- vertex buffers
## v0.6 (2020-08-17)
- Crates:
- C API is moved to [another repository](https://github.com/gfx-rs/wgpu-native)

View File

@ -2658,7 +2658,7 @@ pub enum BindingType {
}
impl BindingType {
/// Returns true for buffer bindings with dynamic offseting enabled.
/// Returns true for buffer bindings with dynamic offset enabled.
pub fn has_dynamic_offset(&self) -> bool {
match *self {
Self::Buffer {