diff options
author | Samson <16504129+sagudev@users.noreply.github.com> | 2023-12-25 08:11:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-25 07:11:37 +0000 |
commit | 7973cb64586d94a6987562fe6f180ac29ef0e971 (patch) | |
tree | 7f1a0b5635c886a0da4f1bc839001d2dc5011e72 /components/webgpu/identity.rs | |
parent | 3ce590bec4f281ab68a817ce2d9872234a66ddf6 (diff) | |
download | servo-7973cb64586d94a6987562fe6f180ac29ef0e971.tar.gz servo-7973cb64586d94a6987562fe6f180ac29ef0e971.zip |
Update wgpu to 0.18.1 (#30926)
* Update wgpu to 0.18.1
* Fix webgpu code
* tidy
Diffstat (limited to 'components/webgpu/identity.rs')
-rw-r--r-- | components/webgpu/identity.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/components/webgpu/identity.rs b/components/webgpu/identity.rs index 4f4121a6652..6cd38008d30 100644 --- a/components/webgpu/identity.rs +++ b/components/webgpu/identity.rs @@ -164,4 +164,8 @@ where } } -impl GlobalIdentityHandlerFactory for IdentityRecyclerFactory {} +impl GlobalIdentityHandlerFactory for IdentityRecyclerFactory { + fn ids_are_generated_in_wgpu() -> bool { + false + } +} |