Struct naga::back::glsl::PipelineOptions
source · pub struct PipelineOptions {
pub shader_stage: ShaderStage,
pub entry_point: String,
pub multiview: Option<NonZeroU32>,
}
Expand description
A subset of options meant to be changed per pipeline.
Fields§
§shader_stage: ShaderStage
The stage of the entry point.
entry_point: String
The name of the entry point.
If no entry point that matches is found while creating a Writer
, a error will be thrown.
multiview: Option<NonZeroU32>
How many views to render to, if doing multiview rendering.
Trait Implementations§
source§impl Clone for PipelineOptions
impl Clone for PipelineOptions
source§fn clone(&self) -> PipelineOptions
fn clone(&self) -> PipelineOptions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PipelineOptions
impl Debug for PipelineOptions
source§impl Hash for PipelineOptions
impl Hash for PipelineOptions
source§impl PartialEq for PipelineOptions
impl PartialEq for PipelineOptions
source§fn eq(&self, other: &PipelineOptions) -> bool
fn eq(&self, other: &PipelineOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for PipelineOptions
impl StructuralEq for PipelineOptions
impl StructuralPartialEq for PipelineOptions
Auto Trait Implementations§
impl RefUnwindSafe for PipelineOptions
impl Send for PipelineOptions
impl Sync for PipelineOptions
impl Unpin for PipelineOptions
impl UnwindSafe for PipelineOptions
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.