pub struct BindGroupLayoutEntry {
pub binding: u32,
pub visibility: ShaderStage,
pub ty: BindingType,
pub count: Option<u32>,
pub _non_exhaustive: NonExhaustive,
}
Expand description
Describes a single binding inside a bind group.
Fields§
§binding: u32
Binding index. Must match shader index and be unique inside a BindGroupLayout. A binding
of index 1, would be described as layout(set = 0, binding = 1) uniform
in shaders.
visibility: ShaderStage
Which shader stages can see this binding.
ty: BindingType
The type of the binding
count: Option<u32>
If this value is Some, indicates this entry is an array. Array size must be 1 or greater.
If this value is Some and ty
is BindingType::SampledTexture
, [Capabilities::SAMPLED_TEXTURE_BINDING_ARRAY
] must be supported.
If this value is Some and ty
is any other variant, bind group creation will fail.
_non_exhaustive: NonExhaustive
This struct should be partially initalized using the default method, but binding, visibility, and ty should be set.
Implementations§
Source§impl BindGroupLayoutEntry
impl BindGroupLayoutEntry
pub fn new( binding: u32, visibility: ShaderStage, ty: BindingType, ) -> BindGroupLayoutEntry
pub fn has_dynamic_offset(&self) -> bool
Trait Implementations§
Source§impl Clone for BindGroupLayoutEntry
impl Clone for BindGroupLayoutEntry
Source§fn clone(&self) -> BindGroupLayoutEntry
fn clone(&self) -> BindGroupLayoutEntry
Returns a copy 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 BindGroupLayoutEntry
impl Debug for BindGroupLayoutEntry
Source§impl<'de> Deserialize<'de> for BindGroupLayoutEntry
impl<'de> Deserialize<'de> for BindGroupLayoutEntry
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<BindGroupLayoutEntry, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<BindGroupLayoutEntry, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BindGroupLayoutEntry
impl PartialEq for BindGroupLayoutEntry
Source§impl Serialize for BindGroupLayoutEntry
impl Serialize for BindGroupLayoutEntry
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for BindGroupLayoutEntry
impl StructuralPartialEq for BindGroupLayoutEntry
Auto Trait Implementations§
impl Freeze for BindGroupLayoutEntry
impl RefUnwindSafe for BindGroupLayoutEntry
impl Send for BindGroupLayoutEntry
impl Sync for BindGroupLayoutEntry
impl Unpin for BindGroupLayoutEntry
impl UnwindSafe for BindGroupLayoutEntry
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