diff options
Diffstat (limited to 'components/script/dom/webidls/GPUBindGroupLayout.webidl')
-rw-r--r-- | components/script/dom/webidls/GPUBindGroupLayout.webidl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/components/script/dom/webidls/GPUBindGroupLayout.webidl b/components/script/dom/webidls/GPUBindGroupLayout.webidl index b2e705e6cc5..8b2d63a84ff 100644 --- a/components/script/dom/webidls/GPUBindGroupLayout.webidl +++ b/components/script/dom/webidls/GPUBindGroupLayout.webidl @@ -13,11 +13,12 @@ dictionary GPUBindGroupLayoutDescriptor : GPUObjectDescriptorBase { }; dictionary GPUBindGroupLayoutEntry { - required unsigned long binding; + required GPUIndex32 binding; required GPUShaderStageFlags visibility; required GPUBindingType type; - //GPUTextureViewDimension textureDimension = "2d"; - //GPUTextureComponentType textureComponentType = "float"; + GPUTextureViewDimension viewDimension = "2d"; + GPUTextureComponentType textureComponentType = "float"; + GPUTextureFormat storageTextureFormat; boolean multisampled = false; boolean hasDynamicOffset = false; }; |