diff options
Diffstat (limited to 'components/script/dom/gpucommandencoder.rs')
-rw-r--r-- | components/script/dom/gpucommandencoder.rs | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/components/script/dom/gpucommandencoder.rs b/components/script/dom/gpucommandencoder.rs index b0086ec0704..03b9373f3ab 100644 --- a/components/script/dom/gpucommandencoder.rs +++ b/components/script/dom/gpucommandencoder.rs @@ -17,7 +17,7 @@ use crate::dom::gpucomputepassencoder::GPUComputePassEncoder; use dom_struct::dom_struct; use ipc_channel::ipc; use std::collections::HashSet; -use webgpu::{wgpu::command::RawPass, WebGPU, WebGPUCommandEncoder, WebGPURequest}; +use webgpu::{WebGPU, WebGPUCommandEncoder, WebGPURequest}; #[dom_struct] pub struct GPUCommandEncoder { @@ -69,11 +69,7 @@ impl GPUCommandEncoderMethods for GPUCommandEncoder { &self, _descriptor: &GPUComputePassDescriptor, ) -> DomRoot<GPUComputePassEncoder> { - GPUComputePassEncoder::new( - &self.global(), - self.channel.clone(), - RawPass::new_compute(self.encoder.0), - ) + GPUComputePassEncoder::new(&self.global(), self.channel.clone(), self.encoder) } /// https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-copybuffertobuffer |