[−][src]Struct rendy_shader::ShaderSetBuilder
Builder class which is used to begin the reflection and shader set construction process for a shader set. Provides all the functionality needed to build a shader set with provided shaders and then reflect appropriate gfx-hal and generic shader information.
Implementations
impl ShaderSetBuilder
[src]
pub fn build<B: Backend>(
&self,
factory: &Factory<B>,
spec_constants: SpecConstantSet
) -> Result<ShaderSet<B>, ShaderError>
[src]
&self,
factory: &Factory<B>,
spec_constants: SpecConstantSet
) -> Result<ShaderSet<B>, ShaderError>
Builds the Backend-specific shader modules using the provided SPIRV code provided to the builder. This function is called during the creation of a render pass.
Parameters
factory
- factory to create shader modules.
pub fn with_vertex<S: Shader>(self, shader: &S) -> Result<Self, S::Error>
[src]
Add a vertex shader to this shader set
pub fn with_fragment<S: Shader>(self, shader: &S) -> Result<Self, S::Error>
[src]
Add a fragment shader to this shader set
pub fn with_geometry<S: Shader>(self, shader: &S) -> Result<Self, S::Error>
[src]
Add a geometry shader to this shader set
pub fn with_hull<S: Shader>(self, shader: &S) -> Result<Self, S::Error>
[src]
Add a hull shader to this shader set
pub fn with_domain<S: Shader>(self, shader: &S) -> Result<Self, S::Error>
[src]
Add a domain shader to this shader set
pub fn with_compute<S: Shader>(self, shader: &S) -> Result<Self, S::Error>
[src]
Add a compute shader to this shader set. Note a compute or vertex shader must always exist in a shader set.
Trait Implementations
impl Clone for ShaderSetBuilder
[src]
fn clone(&self) -> ShaderSetBuilder
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for ShaderSetBuilder
[src]
impl Default for ShaderSetBuilder
[src]
fn default() -> ShaderSetBuilder
[src]
Auto Trait Implementations
impl RefUnwindSafe for ShaderSetBuilder
impl Send for ShaderSetBuilder
impl Sync for ShaderSetBuilder
impl Unpin for ShaderSetBuilder
impl UnwindSafe for ShaderSetBuilder
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>,