You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This way PartialEq, Eq, PartialOrd, Ord, Hash can start depending on inner arcs, so there would be no need to bound them on InterfaceTypes. This will make #6658 simpler and more inline with this (and will also remove more Arc indirections).
This would allow us to eventually remove Arc wrapping Core as we already have Arcs inside Core types (essentially lowering Arc even further down).
With #6665
wgpu::Adapter
becomeArc<dispatch::DispatchAdapter>
, but we could move Arc one level lower intoDispatch*
, like so:This way
PartialEq, Eq, PartialOrd, Ord, Hash
can start depending on inner arcs, so there would be no need to bound them on InterfaceTypes. This will make #6658 simpler and more inline with this (and will also remove more Arc indirections).This would allow us to eventually remove Arc wrapping Core as we already have Arcs inside Core types (essentially lowering Arc even further down).
cc @cwfitzgerald
The text was updated successfully, but these errors were encountered: