#[repr(C)]pub enum DescriptorType {
Sampler = 0,
CombinedImageSampler = 1,
SampledImage = 2,
StorageImage = 3,
UniformTexelBuffer = 4,
StorageTexelBuffer = 5,
UniformBuffer = 6,
StorageBuffer = 7,
UniformBufferDynamic = 8,
StorageBufferDynamic = 9,
InputAttachment = 10,
}
Expand description
Specified the type of a descriptor in a descriptor set
Variants§
Sampler = 0
CombinedImageSampler = 1
SampledImage = 2
StorageImage = 3
UniformTexelBuffer = 4
StorageTexelBuffer = 5
UniformBuffer = 6
StorageBuffer = 7
UniformBufferDynamic = 8
StorageBufferDynamic = 9
InputAttachment = 10
Implementations§
Source§impl DescriptorType
impl DescriptorType
pub const fn make_size(self, count: u32) -> VkDescriptorPoolSize
pub const fn make_binding<'a>( self, binding: u32, count: u32, ) -> DescriptorSetLayoutBinding<'a>
Trait Implementations§
Source§impl Clone for DescriptorType
impl Clone for DescriptorType
Source§fn clone(&self) -> DescriptorType
fn clone(&self) -> DescriptorType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DescriptorType
impl Debug for DescriptorType
Source§impl Hash for DescriptorType
impl Hash for DescriptorType
Source§impl Ord for DescriptorType
impl Ord for DescriptorType
Source§fn cmp(&self, other: &DescriptorType) -> Ordering
fn cmp(&self, other: &DescriptorType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DescriptorType
impl PartialEq for DescriptorType
Source§impl PartialOrd for DescriptorType
impl PartialOrd for DescriptorType
impl Copy for DescriptorType
impl Eq for DescriptorType
impl StructuralPartialEq for DescriptorType
Auto Trait Implementations§
impl Freeze for DescriptorType
impl RefUnwindSafe for DescriptorType
impl Send for DescriptorType
impl Sync for DescriptorType
impl Unpin for DescriptorType
impl UnwindSafe for DescriptorType
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