aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/mod.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2019-12-05 13:59:34 -0500
committerGitHub <noreply@github.com>2019-12-05 13:59:34 -0500
commitbb00a83ec404215c54e013d85227bf467be563f4 (patch)
tree65a98947475263b159f119ef63bcbfb6052b6512 /components/script/dom/mod.rs
parentc90dd15feccdb121af5422d13b32ea0cc3bc0ac6 (diff)
parentb15d2bb7d70870e26e1834099bf5fdcdcbb8d673 (diff)
downloadservo-bb00a83ec404215c54e013d85227bf467be563f4.tar.gz
servo-bb00a83ec404215c54e013d85227bf467be563f4.zip
Auto merge of #25029 - szeged:wgpu_request_device, r=jdm
Initial implementation of GPUDevice for WebGPU Added the WebIDL bindigs for GPUDevice, GPUObjectDescriptorBase, GPUDeviceDescriptor, GPUObjectBase Implemented the `requestDevice` function of `GPUAdapter` <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes addresses a part of #24706 cc @jdm, @kvark, @zakorgy <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Diffstat (limited to 'components/script/dom/mod.rs')
-rw-r--r--components/script/dom/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/mod.rs b/components/script/dom/mod.rs
index d348633df88..bb1110389c6 100644
--- a/components/script/dom/mod.rs
+++ b/components/script/dom/mod.rs
@@ -317,6 +317,7 @@ pub mod gamepadlist;
pub mod globalscope;
pub mod gpu;
pub mod gpuadapter;
+pub mod gpudevice;
pub mod hashchangeevent;
pub mod headers;
pub mod history;