[−][src]Struct rendy::resource::DescriptorSet
Generic descriptor set resource wrapper.
Methods
impl<B> DescriptorSet<B> where
B: Backend,
[src]
B: Backend,
pub unsafe fn create(
device: &Device<B>,
allocator: &mut DescriptorAllocator<B>,
layout: Handle<DescriptorSetLayout<B>>
) -> Result<DescriptorSet<B>, OutOfMemory>
[src]
device: &Device<B>,
allocator: &mut DescriptorAllocator<B>,
layout: Handle<DescriptorSetLayout<B>>
) -> Result<DescriptorSet<B>, OutOfMemory>
Create new descriptor set.
pub unsafe fn create_many<impl Extend>(
device: &Device<B>,
allocator: &mut DescriptorAllocator<B>,
layout: Handle<DescriptorSetLayout<B>>,
count: u32,
extend: &mut impl Extend
) -> Result<(), OutOfMemory> where
impl Extend: Extend<DescriptorSet<B>>,
[src]
device: &Device<B>,
allocator: &mut DescriptorAllocator<B>,
layout: Handle<DescriptorSetLayout<B>>,
count: u32,
extend: &mut impl Extend
) -> Result<(), OutOfMemory> where
impl Extend
Create new descriptor sets.
pub unsafe fn dispose(self, allocator: &mut DescriptorAllocator<B>)
[src]
Destroy descriptor set resource.
pub fn raw(&self) -> &<B as Backend>::DescriptorSet
[src]
Get reference to raw descriptor set resource.
pub unsafe fn raw_mut(&mut self) -> &mut <B as Backend>::DescriptorSet
[src]
Get mutable reference to raw descriptor set resource.
pub fn layout(&mut self) -> &Handle<DescriptorSetLayout<B>>
[src]
Get layout of descriptor set.
impl<B> DescriptorSet<B> where
B: Backend,
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.
Trait Implementations
impl<B> Debug for DescriptorSet<B> where
B: Debug + Backend,
[src]
B: Debug + Backend,
Auto Trait Implementations
impl<B> Unpin for DescriptorSet<B> where
<B as Backend>::DescriptorSet: Unpin,
<B as Backend>::DescriptorSet: Unpin,
impl<B> Sync for DescriptorSet<B> where
<B as Backend>::DescriptorSet: Sync,
<B as Backend>::DescriptorSetLayout: Send + Sync,
<B as Backend>::DescriptorSet: Sync,
<B as Backend>::DescriptorSetLayout: Send + Sync,
impl<B> Send for DescriptorSet<B> where
<B as Backend>::DescriptorSet: Send,
<B as Backend>::DescriptorSetLayout: Send + Sync,
<B as Backend>::DescriptorSet: Send,
<B as Backend>::DescriptorSetLayout: Send + Sync,
impl<B> UnwindSafe for DescriptorSet<B> where
<B as Backend>::DescriptorSet: UnwindSafe,
<B as Backend>::DescriptorSetLayout: RefUnwindSafe,
<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,
<B as Backend>::DescriptorSet: RefUnwindSafe,
<B as Backend>::DescriptorSetLayout: RefUnwindSafe,
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Supports<T> for T
[src]
impl<T> SetParameter for T
[src]
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>,
[src]
T: Parameter<Self>,
Sets value
as a parameter of self
.
impl<T> Erased for T
[src]
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
[src]
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
fn adapt_into_using<M>(self, method: M) -> D where
M: TransformMatrix<Swp, Dwp, T>,
[src]
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into(self) -> D
[src]
Convert the source color to the destination color using the bradford method by default Read more