diff options
author | Istvan Miklos <istvan.miklos@h-lab.eu> | 2020-01-06 14:04:38 +0100 |
---|---|---|
committer | Istvan Miklos <istvan.miklos@h-lab.eu> | 2020-01-16 10:53:51 +0100 |
commit | 9cf007472b364ea60445e6aaa5e91f67ef3d1894 (patch) | |
tree | 913d22e397a02b455cb7d198feabc7e0e33f8a6a /components/script/dom/mod.rs | |
parent | 95614f57f147699f15a8f103c7def1cdfcdc7d1f (diff) | |
download | servo-9cf007472b364ea60445e6aaa5e91f67ef3d1894.tar.gz servo-9cf007472b364ea60445e6aaa5e91f67ef3d1894.zip |
Initial implementation of GPUBindGroupLayout for WebGPU
Added WebIDL bindings for `GPUBindGroupLayout`, `GPUBindGroupLayoutDescriptor`, `GPUBindingType`, `GPUShaderStage`
and `GPUBindGroupLayoutBinding` (Note: The servo's codegen doesn't like the name, because its already occupied).
Implemented the `createBindGroupLayout` function of `GPUDevice`.
Diffstat (limited to 'components/script/dom/mod.rs')
-rw-r--r-- | components/script/dom/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/dom/mod.rs b/components/script/dom/mod.rs index 0fdf4a80b69..08f1f0812fb 100644 --- a/components/script/dom/mod.rs +++ b/components/script/dom/mod.rs @@ -318,9 +318,11 @@ pub mod gamepadlist; pub mod globalscope; pub mod gpu; pub mod gpuadapter; +pub mod gpubindgrouplayout; pub mod gpubuffer; pub mod gpubufferusage; pub mod gpudevice; +pub mod gpushaderstage; pub mod hashchangeevent; pub mod headers; pub mod history; |