aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/gpurenderbundleencoder.rs
diff options
context:
space:
mode:
authorSamson <16504129+sagudev@users.noreply.github.com>2024-05-08 15:53:39 +0200
committerGitHub <noreply@github.com>2024-05-08 13:53:39 +0000
commit168d43f24a18184afadc6aa8646537289c85860a (patch)
tree138629b4b003141fbb5c6cb8fcf8cee3272664c2 /components/script/dom/gpurenderbundleencoder.rs
parentc4f8599404e52da58e9e4e8f8aef3e7efa4996c9 (diff)
downloadservo-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/gpurenderbundleencoder.rs')
-rw-r--r--components/script/dom/gpurenderbundleencoder.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/gpurenderbundleencoder.rs b/components/script/dom/gpurenderbundleencoder.rs
index 6287b8233d7..7fb3de9c489 100644
--- a/components/script/dom/gpurenderbundleencoder.rs
+++ b/components/script/dom/gpurenderbundleencoder.rs
@@ -3,7 +3,7 @@
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
use dom_struct::dom_struct;
-use webgpu::wgpu::command::{bundle_ffi as wgpu_bundle, RenderBundleEncoder};
+use webgpu::wgc::command::{bundle_ffi as wgpu_bundle, RenderBundleEncoder};
use webgpu::{wgt, WebGPU, WebGPURenderBundle, WebGPURequest};
use super::bindings::codegen::Bindings::WebGPUBinding::GPUIndexFormat;