diff options
author | Samson <16504129+sagudev@users.noreply.github.com> | 2023-09-30 14:30:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-30 12:30:12 +0000 |
commit | ddc47aa56b2c59911b7fec018d7ae89bf2a77bee (patch) | |
tree | 754019c50c36ec2a59dcf861036d6c624490fb32 /components/script/dom/gpubuffer.rs | |
parent | ebd41d41017ee9727eb8417a0a01237b75f3e9c4 (diff) | |
download | servo-ddc47aa56b2c59911b7fec018d7ae89bf2a77bee.tar.gz servo-ddc47aa56b2c59911b7fec018d7ae89bf2a77bee.zip |
Codegen support multiple interfaces in single webidl file & WebGPU single webidl (#30448)
* Codegen support multiple interfaces in single webidl file
* Merge GPU*.webidl into WebGPU.webidl
* Update gpu files to use WebGPUBinding module file
Diffstat (limited to 'components/script/dom/gpubuffer.rs')
-rw-r--r-- | components/script/dom/gpubuffer.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/components/script/dom/gpubuffer.rs b/components/script/dom/gpubuffer.rs index f57faac9ab6..8f2b9b0f988 100644 --- a/components/script/dom/gpubuffer.rs +++ b/components/script/dom/gpubuffer.rs @@ -17,8 +17,9 @@ use webgpu::wgpu::device::HostMap; use webgpu::{WebGPU, WebGPUBuffer, WebGPURequest, WebGPUResponse, WebGPUResponseResult}; use crate::dom::bindings::cell::DomRefCell; -use crate::dom::bindings::codegen::Bindings::GPUBufferBinding::{GPUBufferMethods, GPUSize64}; -use crate::dom::bindings::codegen::Bindings::GPUMapModeBinding::GPUMapModeConstants; +use crate::dom::bindings::codegen::Bindings::WebGPUBinding::{ + GPUBufferMethods, GPUMapModeConstants, GPUSize64, +}; use crate::dom::bindings::error::{Error, Fallible}; use crate::dom::bindings::reflector::{reflect_dom_object, Reflector}; use crate::dom::bindings::root::{Dom, DomRoot}; |