diff options
author | tanishka <109246904+taniishkaaa@users.noreply.github.com> | 2024-10-04 21:57:23 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-04 16:27:23 +0000 |
commit | 4850caeec49b22e9c4e9618185408882ad76832c (patch) | |
tree | 0d1792eb9515ed843a27dbb2ebcc7d1b3daba456 /components/webgpu | |
parent | 2234bc56a54c488d39762060b4dbd3e613c8174b (diff) | |
download | servo-4850caeec49b22e9c4e9618185408882ad76832c.tar.gz servo-4850caeec49b22e9c4e9618185408882ad76832c.zip |
clippy: Fix too_many_arguments warnings (#33648)
Signed-off-by: taniishkaaa <tanishkasingh2004@gmail.com>
Diffstat (limited to 'components/webgpu')
-rw-r--r-- | components/webgpu/swapchain.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/webgpu/swapchain.rs b/components/webgpu/swapchain.rs index ac9c7603a95..a50dd64713d 100644 --- a/components/webgpu/swapchain.rs +++ b/components/webgpu/swapchain.rs @@ -548,6 +548,7 @@ impl crate::WGPU { } } +#[allow(clippy::too_many_arguments)] fn update_wr_image( result: Result<(), BufferAccessError>, global: Arc<Global>, |