Struct naga::back::spv::image::Load

source ·
struct Load {
    opcode: Op,
    type_id: Word,
    image_id: Word,
}
Expand description

Texel access information for an ImageLoad expression.

Fields§

§opcode: Op

The specific opcode we’ll use to perform the fetch. Storage images require OpImageRead, while sampled images require OpImageFetch.

§type_id: Word

The type id produced by the actual image access instruction.

§image_id: Word

The id of the image being accessed.

Implementations§

source§

impl Load

source

fn from_image_expr( ctx: &mut BlockContext<'_>, image_id: Word, image_class: ImageClass, result_type_id: Word, ) -> Result<Load, Error>

Trait Implementations§

source§

impl Access for Load

source§

fn generate( &self, id_gen: &mut IdGenerator, coordinates_id: Word, level_id: Option<Word>, sample_id: Option<Word>, block: &mut Block, ) -> Word

Write an instruction to access a given texel of this image.

§

type Output = u32

The Rust type that represents SPIR-V values and types for this access. Read more
source§

fn result_type(&self) -> Word

Return the SPIR-V type of the value produced by the code written by generate. If the access does not produce a value, Self::Output should be ().
source§

fn out_of_bounds_value(&self, ctx: &mut BlockContext<'_>) -> Word

Construct the SPIR-V ‘zero’ value to be returned for an out-of-bounds access under the ReadZeroSkipWrite policy. If the access does not produce a value, Self::Output should be ().

Auto Trait Implementations§

§

impl Freeze for Load

§

impl RefUnwindSafe for Load

§

impl Send for Load

§

impl Sync for Load

§

impl Unpin for Load

§

impl UnwindSafe for Load

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
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, 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.