Make Extent3D::width non-optional.
This is to follow the changes in the upstream WebGPU spec.
Bug: dawn:22
Change-Id: I192c5ffe6008ac13ce466e712dd98528938b5e63
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/43881
Reviewed-by: Austin Eng <enga@chromium.org>
Reviewed-by: Brandon Jones <bajones@chromium.org>
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
diff --git a/dawn.json b/dawn.json
index a36eafa..92abe34 100644
--- a/dawn.json
+++ b/dawn.json
@@ -866,7 +866,7 @@
"extent 3D": {
"category": "structure",
"members": [
- {"name": "width", "type": "uint32_t", "default": 1},
+ {"name": "width", "type": "uint32_t"},
{"name": "height", "type": "uint32_t", "default": 1},
{"name": "depth", "type": "uint32_t", "default": 1}
]