From 0b53b477c562bcedda3033d48ba65ea462ce8309 Mon Sep 17 00:00:00 2001 From: Connor Fitzgerald Date: Wed, 19 Apr 2023 21:54:23 -0400 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 458ebf6dbf..49048f2f4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,15 @@ Bottom level categories: ### Major changes +#### Shader Changes + +`type` has been replaced with `alias` to match with upstream WebGPU. + +```diff +- type MyType = vec4; ++ alias MyType = vec4; +``` + #### TextureFormat info API The `TextureFormat::describe` function was removed in favor of separate functions: `block_dimensions`, `is_compressed`, `is_srgb`, `required_features`, `guaranteed_format_features`, `sample_type` and `block_size`.