pub struct GfxDescriptorDevice<B: Backend> { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl<B> DescriptorDevice<<B as Backend>::DescriptorSetLayout, <B as Backend>::DescriptorPool, <B as Backend>::DescriptorSet> for GfxDescriptorDevice<B>where
B: Backend,
impl<B> DescriptorDevice<<B as Backend>::DescriptorSetLayout, <B as Backend>::DescriptorPool, <B as Backend>::DescriptorSet> for GfxDescriptorDevice<B>where
B: Backend,
unsafe fn create_descriptor_pool( &self, descriptor_count: &DescriptorTotalCount, max_sets: u32, flags: DescriptorPoolCreateFlags, ) -> Result<B::DescriptorPool, CreatePoolError>
unsafe fn destroy_descriptor_pool(&self, pool: B::DescriptorPool)
unsafe fn alloc_descriptor_sets<'a>( &self, pool: &mut B::DescriptorPool, layouts: impl ExactSizeIterator<Item = &'a B::DescriptorSetLayout>, sets: &mut impl Extend<B::DescriptorSet>, ) -> Result<(), DeviceAllocationError>
unsafe fn dealloc_descriptor_sets<'a>( &self, pool: &mut B::DescriptorPool, sets: impl Iterator<Item = B::DescriptorSet>, )
Auto Trait Implementations§
impl<B> Freeze for GfxDescriptorDevice<B>
impl<B> RefUnwindSafe for GfxDescriptorDevice<B>
impl<B> Send for GfxDescriptorDevice<B>
impl<B> Sync for GfxDescriptorDevice<B>
impl<B> Unpin for GfxDescriptorDevice<B>
impl<B> UnwindSafe for GfxDescriptorDevice<B>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more