diff options
author | Samson <16504129+sagudev@users.noreply.github.com> | 2024-05-08 15:53:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-08 13:53:39 +0000 |
commit | 168d43f24a18184afadc6aa8646537289c85860a (patch) | |
tree | 138629b4b003141fbb5c6cb8fcf8cee3272664c2 /components/script/dom/gpuqueue.rs | |
parent | c4f8599404e52da58e9e4e8f8aef3e7efa4996c9 (diff) | |
download | servo-168d43f24a18184afadc6aa8646537289c85860a.tar.gz servo-168d43f24a18184afadc6aa8646537289c85860a.zip |
webgpu: Refactor webgpu crate (#32255)
* wgpu(_core) -> wgc
* Refactor webgpu crate
split lib.rs into multiple modules
Diffstat (limited to 'components/script/dom/gpuqueue.rs')
-rw-r--r-- | components/script/dom/gpuqueue.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/script/dom/gpuqueue.rs b/components/script/dom/gpuqueue.rs index bcc60eb5dd2..4a2fef174b3 100644 --- a/components/script/dom/gpuqueue.rs +++ b/components/script/dom/gpuqueue.rs @@ -6,8 +6,7 @@ use std::rc::Rc; use dom_struct::dom_struct; use ipc_channel::ipc::IpcSharedMemory; -use webgpu::identity::WebGPUOpResult; -use webgpu::{wgt, WebGPU, WebGPUQueue, WebGPURequest, WebGPUResponse}; +use webgpu::{wgt, WebGPU, WebGPUOpResult, WebGPUQueue, WebGPURequest, WebGPUResponse}; use super::bindings::codegen::Bindings::WebGPUBinding::{GPUImageCopyTexture, GPUImageDataLayout}; use super::gpu::{response_async, AsyncWGPUListener}; |