aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/GPUBindGroupLayout.webidl
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/webidls/GPUBindGroupLayout.webidl')
-rw-r--r--components/script/dom/webidls/GPUBindGroupLayout.webidl6
1 files changed, 2 insertions, 4 deletions
diff --git a/components/script/dom/webidls/GPUBindGroupLayout.webidl b/components/script/dom/webidls/GPUBindGroupLayout.webidl
index 930a1dd84cc..b5327f107d3 100644
--- a/components/script/dom/webidls/GPUBindGroupLayout.webidl
+++ b/components/script/dom/webidls/GPUBindGroupLayout.webidl
@@ -9,12 +9,10 @@ interface GPUBindGroupLayout {
GPUBindGroupLayout includes GPUObjectBase;
dictionary GPUBindGroupLayoutDescriptor : GPUObjectDescriptorBase {
- required sequence<GPUBindGroupLayoutBindings> bindings;
+ required sequence<GPUBindGroupLayoutEntry> entries;
};
-// Note: Servo codegen doesn't like the name `GPUBindGroupLayoutBinding` because it's already occupied
-// dictionary GPUBindGroupLayoutBinding {
-dictionary GPUBindGroupLayoutBindings {
+dictionary GPUBindGroupLayoutEntry {
required unsigned long binding;
required GPUShaderStageFlags visibility;
required GPUBindingType type;