diff options
author | 派卡 (pi-cla) <pirateclip@protonmail.com> | 2024-07-03 18:39:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-03 18:39:45 +0000 |
commit | 650af7db926e9cc070e136f21a56bd47d566d10a (patch) | |
tree | 9c63cd631fd63d710fc5632cf5816fde0e759df7 /components/script/dom/gpucommandencoder.rs | |
parent | 959ffad99a57f5f8f0554fed0983317577ae8290 (diff) | |
download | servo-650af7db926e9cc070e136f21a56bd47d566d10a.tar.gz servo-650af7db926e9cc070e136f21a56bd47d566d10a.zip |
webgpu: Remove mutex around Identities (#32682)
Diffstat (limited to 'components/script/dom/gpucommandencoder.rs')
-rw-r--r-- | components/script/dom/gpucommandencoder.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/components/script/dom/gpucommandencoder.rs b/components/script/dom/gpucommandencoder.rs index 5024f9ff9f9..f926853b794 100644 --- a/components/script/dom/gpucommandencoder.rs +++ b/components/script/dom/gpucommandencoder.rs @@ -109,7 +109,6 @@ impl GPUCommandEncoderMethods for GPUCommandEncoder { let compute_pass_id = self .global() .wgpu_id_hub() - .lock() .create_compute_pass_id(self.device.id().0.backend()); if let Err(e) = self.channel.0.send(WebGPURequest::BeginComputePass { |