[−][src]Enum wgpu::BindingType
Specific type of a binding. WebGPU spec: https://gpuweb.github.io/gpuweb/#dictdef-gpubindgrouplayoutentry
Variants (Non-exhaustive)
A buffer for uniform values.
Example GLSL syntax:
layout(std140, binding = 0)
uniform Globals {
vec2 aUniform;
vec2 anotherUniform;
};
Fields of UniformBuffer
dynamic: bool
Indicates that the binding has a dynamic offset. One offset must be passed to [RenderPass::set_bind_group] for each dynamic binding in increasing order of binding number.
min_binding_size: Option<NonZeroU64>
Minimum size of the corresponding BufferBinding
required to match this entry.
When pipeline is created, the size has to cover at least the corresponding structure in the shader
plus one element of the unbound array, which can only be last in the structure.
If None
, the check is performed at draw call time instead of pipeline and bind group creation.
A storage buffer.
Example GLSL syntax:
layout (set=0, binding=0) buffer myStorageBuffer {
vec4 myElement[];
};
Fields of StorageBuffer
dynamic: bool
Indicates that the binding has a dynamic offset. One offset must be passed to [RenderPass::set_bind_group] for each dynamic binding in increasing order of binding number.
min_binding_size: Option<NonZeroU64>
Minimum size of the corresponding BufferBinding
required to match this entry.
When pipeline is created, the size has to cover at least the corresponding structure in the shader
plus one element of the unbound array, which can only be last in the structure.
If None
, the check is performed at draw call time instead of pipeline and bind group creation.
readonly: bool
The buffer can only be read in the shader and it must be annotated with readonly
.
Example GLSL syntax:
layout (set=0, binding=0) readonly buffer myStorageBuffer {
vec4 myElement[];
};
A sampler that can be used to sample a texture.
Example GLSL syntax:
layout(binding = 0)
uniform sampler s;
Fields of Sampler
comparison: bool
Use as a comparison sampler instead of a normal sampler. For more info take a look at the analogous functionality in OpenGL: https://www.khronos.org/opengl/wiki/Sampler_Object#Comparison_mode.
A texture.
Example GLSL syntax:
layout(binding = 0)
uniform texture2D t;
Fields of SampledTexture
dimension: TextureViewDimension
Dimension of the texture view that is going to be sampled.
component_type: TextureComponentType
Component type of the texture. This must be compatible with the format of the texture.
multisampled: bool
True if the texture has a sample count greater than 1.
A storage texture.
Example GLSL syntax:
layout(set=0, binding=0, r32f) uniform image2D myStorageImage;
Note that the texture format must be specified in the shader as well. A list of valid formats can be found in the specification here: https://www.khronos.org/registry/OpenGL/specs/gl/GLSLangSpec.4.60.html#layout-qualifiers
Fields of StorageTexture
dimension: TextureViewDimension
Dimension of the texture view that is going to be sampled.
format: TextureFormat
Format of the texture.
readonly: bool
The texture can only be read in the shader and it must be annotated with readonly
.
Example GLSL syntax:
layout(set=0, binding=0, r32f) readonly uniform image2D myStorageImage;
Trait Implementations
impl Clone for BindingType
[src]
fn clone(&self) -> BindingType
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for BindingType
[src]
impl Eq for BindingType
[src]
impl PartialEq<BindingType> for BindingType
[src]
fn eq(&self, other: &BindingType) -> bool
[src]
fn ne(&self, other: &BindingType) -> bool
[src]
impl Serialize for BindingType
[src]
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
impl StructuralEq for BindingType
[src]
impl StructuralPartialEq for BindingType
[src]
Auto Trait Implementations
impl RefUnwindSafe for BindingType
impl Send for BindingType
impl Sync for BindingType
impl Unpin for BindingType
impl UnwindSafe for BindingType
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
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> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
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>,