[][src]Struct rendy_shader::SpirvShader

pub struct SpirvShader { /* fields omitted */ }

Spir-V shader.

Methods

impl SpirvShader[src]

pub fn new(spirv: Vec<u32>, stage: ShaderStageFlags, entrypoint: &str) -> Self[src]

Create Spir-V shader from bytes.

pub fn from_bytes(
    spirv: &[u8],
    stage: ShaderStageFlags,
    entrypoint: &str
) -> Result<Self>
[src]

Create Spir-V shader from bytecode stored as bytes. Errors when passed byte array length is not a multiple of 4.

Trait Implementations

impl Shader for SpirvShader[src]

type Error = ShaderError

The error type returned by the spirv function of this shader.

impl Clone for SpirvShader[src]

impl Eq for SpirvShader[src]

impl Ord for SpirvShader[src]

impl PartialEq<SpirvShader> for SpirvShader[src]

impl PartialOrd<SpirvShader> for SpirvShader[src]

impl Debug for SpirvShader[src]

impl Hash for SpirvShader[src]

impl StructuralPartialEq for SpirvShader[src]

impl StructuralEq for SpirvShader[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]