diff options
Diffstat (limited to 'components/script/dom/gputexture.rs')
-rw-r--r-- | components/script/dom/gputexture.rs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/components/script/dom/gputexture.rs b/components/script/dom/gputexture.rs index 5b420276d47..b10f79915d3 100644 --- a/components/script/dom/gputexture.rs +++ b/components/script/dom/gputexture.rs @@ -11,11 +11,9 @@ use webgpu::wgpu::resource; use webgpu::{wgt, WebGPU, WebGPURequest, WebGPUTexture, WebGPUTextureView}; use crate::dom::bindings::cell::DomRefCell; -use crate::dom::bindings::codegen::Bindings::GPUTextureBinding::{ - GPUExtent3DDict, GPUTextureDimension, GPUTextureFormat, GPUTextureMethods, -}; -use crate::dom::bindings::codegen::Bindings::GPUTextureViewBinding::{ - GPUTextureAspect, GPUTextureViewDescriptor, +use crate::dom::bindings::codegen::Bindings::WebGPUBinding::{ + GPUExtent3DDict, GPUTextureAspect, GPUTextureDimension, GPUTextureFormat, GPUTextureMethods, + GPUTextureViewDescriptor, }; use crate::dom::bindings::reflector::{reflect_dom_object, DomObject, Reflector}; use crate::dom::bindings::root::{Dom, DomRoot}; |