pub struct PushConstantItem {
    pub access_path: String,
    pub ty: Handle<Type>,
    pub offset: u32,
}
Available on wgpu_core and crate feature glsl-out only.
Expand description

All information to bind a single uniform value to the shader.

Push constants are emulated using traditional uniforms in OpenGL.

These are composed of a set of primitives (scalar, vector, matrix) that are given names. Because they are not backed by the concept of a buffer, we must do the work of calculating the offset of each primitive in the push constant block.

Fields§

§access_path: String

GL uniform name for the item. This name is the same as if you were to access it directly from a GLSL shader.

The with the following example, the following names will be generated, one name per GLSL uniform.

struct InnerStruct {
    value: f32,
}

struct PushConstant {
    InnerStruct inner;
    vec4 array[2];
}

uniform PushConstants _push_constant_binding_cs;
- _push_constant_binding_cs.inner.value
- _push_constant_binding_cs.array[0]
- _push_constant_binding_cs.array[1]
§ty: Handle<Type>

Type of the uniform. This will only ever be a scalar, vector, or matrix.

§offset: u32

The offset in the push constant memory block this uniform maps to.

The size of the uniform can be derived from the type.

Trait Implementations§

source§

impl Clone for PushConstantItem

source§

fn clone(&self) -> PushConstantItem

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for PushConstantItem

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

source§

impl<T> WasmNotSend for T
where T: Send,

source§

impl<T> WasmNotSendSync for T

source§

impl<T> WasmNotSync for T
where T: Sync,