From e14dbf3a09a9283c45b7b045ce0241bd1bffaf7d Mon Sep 17 00:00:00 2001 From: Connor Fitzgerald Date: Wed, 12 Apr 2023 16:33:15 -0400 Subject: [PATCH] Changelog --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b50e3700d..587e1bd219 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -113,6 +113,17 @@ SamplerDescriptor { By @cwfitzgerald in [#3610](https://github.com/gfx-rs/wgpu/pull/3610). +#### TextureFormat Names + +Some texture format names have changed to get back in line with the spec. + +```diff +- TextureFormat::Bc6hRgbSfloat ++ TextureFormat::Bc6hRgbFloat +``` + +By @cwfitzgerald in [#3671](https://github.com/gfx-rs/wgpu/pull/3671). + #### General - Change type of `mip_level_count` and `array_layer_count` (members of `TextureViewDescriptor` and `ImageSubresourceRange`) from `Option` to `Option`. By @teoxoy in [#3445](https://github.com/gfx-rs/wgpu/pull/3445)