mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-25 08:13:27 +00:00
Add 0.7 changelog
This commit is contained in:
parent
0346b43982
commit
cef0a30aa2
21
CHANGELOG.md
21
CHANGELOG.md
@ -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)
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user