ResolvedTaskState

Type Alias ResolvedTaskState 

Source
pub type ResolvedTaskState<'a> = TaskState<'a, Arc<ShaderModule>>;

Aliased Type§

pub struct ResolvedTaskState<'a> {
    pub stage: ProgrammableStageDescriptor<'a, Arc<ShaderModule>>,
}

Fields§

§stage: ProgrammableStageDescriptor<'a, Arc<ShaderModule>>

The compiled task stage and its entry point.

Trait Implementations§

Source§

impl<'a> IntoTrace for ResolvedTaskState<'a>

Available on crate feature trace and (crate features trace or replay) only.
Source§

type Output = TaskState<'a, PointerId<ShaderModule>>

Source§

fn into_trace(self) -> Self::Output

Source§

fn to_trace(&self) -> Self::Output
where Self: Sized + Clone,