diff options
author | Samson <16504129+sagudev@users.noreply.github.com> | 2024-09-21 06:20:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-21 04:20:18 +0000 |
commit | 24ad2a05268ebc21b5ad127dac28d1e6f880512c (patch) | |
tree | e8338c9b9f0876f5896cc6ea13540a9c6edac6f5 /components/script/dom/window.rs | |
parent | 28d28d0a0a9c9ee2acf45593b9e6c0288857f0a9 (diff) | |
download | servo-24ad2a05268ebc21b5ad127dac28d1e6f880512c.tar.gz servo-24ad2a05268ebc21b5ad127dac28d1e6f880512c.zip |
chore: Update wgpu (#33506)
* Update wgpu
Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com>
* use all backends at runtime
Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com>
* clean up some adapter stuff
Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com>
* Update expectations
Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com>
* flakes
Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com>
---------
Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com>
Diffstat (limited to 'components/script/dom/window.rs')
-rw-r--r-- | components/script/dom/window.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/window.rs b/components/script/dom/window.rs index 2c71a2c9fc6..80267002f15 100644 --- a/components/script/dom/window.rs +++ b/components/script/dom/window.rs @@ -123,7 +123,7 @@ use crate::dom::hashchangeevent::HashChangeEvent; use crate::dom::history::History; use crate::dom::htmlcollection::{CollectionFilter, HTMLCollection}; use crate::dom::htmliframeelement::HTMLIFrameElement; -use crate::dom::identityhub::Identities; +use crate::dom::identityhub::IdentityHub; use crate::dom::location::Location; use crate::dom::mediaquerylist::{MediaQueryList, MediaQueryListMatchState}; use crate::dom::mediaquerylistevent::MediaQueryListEvent; @@ -2558,7 +2558,7 @@ impl Window { replace_surrogates: bool, user_agent: Cow<'static, str>, player_context: WindowGLContext, - gpu_id_hub: Arc<Identities>, + gpu_id_hub: Arc<IdentityHub>, inherited_secure_context: Option<bool>, ) -> DomRoot<Self> { let error_reporter = CSSErrorReporter { |