Struct wgpu_core::hub::Hub

source ·
pub struct Hub {
Show 18 fields pub(crate) adapters: Registry<Arc<Adapter>>, pub(crate) devices: Registry<Arc<Device>>, pub(crate) queues: Registry<Arc<Queue>>, pub(crate) pipeline_layouts: Registry<Fallible<PipelineLayout>>, pub(crate) shader_modules: Registry<Fallible<ShaderModule>>, pub(crate) bind_group_layouts: Registry<Fallible<BindGroupLayout>>, pub(crate) bind_groups: Registry<Fallible<BindGroup>>, pub(crate) command_buffers: Registry<Arc<CommandBuffer>>, pub(crate) render_bundles: Registry<Fallible<RenderBundle>>, pub(crate) render_pipelines: Registry<Fallible<RenderPipeline>>, pub(crate) compute_pipelines: Registry<Fallible<ComputePipeline>>, pub(crate) pipeline_caches: Registry<Fallible<PipelineCache>>, pub(crate) query_sets: Registry<Fallible<QuerySet>>, pub(crate) buffers: Registry<Fallible<Buffer>>, pub(crate) staging_buffers: Registry<StagingBuffer>, pub(crate) textures: Registry<Fallible<Texture>>, pub(crate) texture_views: Registry<Fallible<TextureView>>, pub(crate) samplers: Registry<Fallible<Sampler>>,
}
Expand description

All the resources tracked by a crate::global::Global.

§Locking

Each field in Hub is a Registry holding all the values of a particular type of resource, all protected by a single RwLock. So for example, to access any Buffer, you must acquire a read lock on the Hubs entire buffers registry. The lock guard gives you access to the Registry’s Storage, which you can then index with the buffer’s id. (Yes, this design causes contention; see [#2272].)

But most wgpu operations require access to several different kinds of resource, so you often need to hold locks on several different fields of your Hub simultaneously.

Inside the Registry there are Arc<T> where T is a Resource Lock of Registry happens only when accessing to get the specific resource

Fields§

§adapters: Registry<Arc<Adapter>>§devices: Registry<Arc<Device>>§queues: Registry<Arc<Queue>>§pipeline_layouts: Registry<Fallible<PipelineLayout>>§shader_modules: Registry<Fallible<ShaderModule>>§bind_group_layouts: Registry<Fallible<BindGroupLayout>>§bind_groups: Registry<Fallible<BindGroup>>§command_buffers: Registry<Arc<CommandBuffer>>§render_bundles: Registry<Fallible<RenderBundle>>§render_pipelines: Registry<Fallible<RenderPipeline>>§compute_pipelines: Registry<Fallible<ComputePipeline>>§pipeline_caches: Registry<Fallible<PipelineCache>>§query_sets: Registry<Fallible<QuerySet>>§buffers: Registry<Fallible<Buffer>>§staging_buffers: Registry<StagingBuffer>§textures: Registry<Fallible<Texture>>§texture_views: Registry<Fallible<TextureView>>§samplers: Registry<Fallible<Sampler>>

Implementations§

source§

impl Hub

source

pub(crate) fn new() -> Self

source

pub fn generate_report(&self) -> HubReport

Auto Trait Implementations§

§

impl !Freeze for Hub

§

impl !RefUnwindSafe for Hub

§

impl Send for Hub

§

impl Sync for Hub

§

impl Unpin for Hub

§

impl !UnwindSafe for Hub

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> Downcast<T> for T

source§

fn downcast(&self) -> &T

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Upcast<T> for T

source§

fn upcast(&self) -> Option<&T>

source§

impl<T> WasmNotSend for T
where T: Send,

source§

impl<T> WasmNotSendSync for T

source§

impl<T> WasmNotSync for T
where T: Sync,