[][src]Struct rendy_resource::DescriptorSet

pub struct DescriptorSet<B: Backend> { /* fields omitted */ }

Generic descriptor set resource wrapper.

Methods

impl<B> DescriptorSet<B> where
    B: Backend, 

pub fn device_id(&self) -> DeviceId

Get owned id.

pub fn assert_device_owner(&self, device: &Device<B>)

Assert specified device is owner.

pub fn instance_id(&self) -> InstanceId

Get owned id.

pub fn assert_instance_owner(&self, instance: &Instance<B>)

Assert specified instance is owner.

impl<B> DescriptorSet<B> where
    B: Backend, 
[src]

pub unsafe fn create(
    device: &Device<B>,
    allocator: &mut DescriptorAllocator<B>,
    layout: Handle<DescriptorSetLayout<B>>
) -> Result<Self, OutOfMemory>
[src]

Create new descriptor set.

pub unsafe fn create_many(
    device: &Device<B>,
    allocator: &mut DescriptorAllocator<B>,
    layout: Handle<DescriptorSetLayout<B>>,
    count: u32,
    extend: &mut impl Extend<Self>
) -> Result<(), OutOfMemory>
[src]

Create new descriptor sets.

pub unsafe fn dispose(self, allocator: &mut DescriptorAllocator<B>)[src]

Destroy descriptor set resource.

pub fn raw(&self) -> &B::DescriptorSet[src]

Get reference to raw descriptor set resource.

pub unsafe fn raw_mut(&mut self) -> &mut B::DescriptorSet[src]

Get mutable reference to raw descriptor set resource.

pub fn layout(&mut self) -> &Handle<DescriptorSetLayout<B>>[src]

Get layout of descriptor set.

Trait Implementations

impl<B: Debug + Backend> Debug for DescriptorSet<B>[src]

Auto Trait Implementations

impl<B> Send for DescriptorSet<B> where
    <B as Backend>::DescriptorSet: Send,
    <B as Backend>::DescriptorSetLayout: Send + Sync

impl<B> Sync for DescriptorSet<B> where
    <B as Backend>::DescriptorSet: Sync,
    <B as Backend>::DescriptorSetLayout: Send + Sync

impl<B> Unpin for DescriptorSet<B> where
    <B as Backend>::DescriptorSet: Unpin

impl<B> UnwindSafe for DescriptorSet<B> where
    <B as Backend>::DescriptorSet: UnwindSafe,
    <B as Backend>::DescriptorSetLayout: RefUnwindSafe

impl<B> RefUnwindSafe for DescriptorSet<B> where
    <B as Backend>::DescriptorSet: RefUnwindSafe,
    <B as Backend>::DescriptorSetLayout: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]