summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/webgpu/gpu_extent_3d_dict.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/modules/webgpu/gpu_extent_3d_dict.idl')
-rw-r--r--chromium/third_party/blink/renderer/modules/webgpu/gpu_extent_3d_dict.idl4
1 files changed, 3 insertions, 1 deletions
diff --git a/chromium/third_party/blink/renderer/modules/webgpu/gpu_extent_3d_dict.idl b/chromium/third_party/blink/renderer/modules/webgpu/gpu_extent_3d_dict.idl
index 6fc1fe24159..7c6793659e9 100644
--- a/chromium/third_party/blink/renderer/modules/webgpu/gpu_extent_3d_dict.idl
+++ b/chromium/third_party/blink/renderer/modules/webgpu/gpu_extent_3d_dict.idl
@@ -7,5 +7,7 @@
dictionary GPUExtent3DDict {
GPUIntegerCoordinate width = 1;
GPUIntegerCoordinate height = 1;
- GPUIntegerCoordinate depth = 1;
+ GPUIntegerCoordinate depthOrArrayLayers = 1;
+ // Deprecated
+ GPUIntegerCoordinate depth;
};