Struct rps_sys::RpsRenderGraphPhaseInfo
source · #[repr(C)]pub struct RpsRenderGraphPhaseInfo {
pub hPhase: RpsRenderGraphPhase,
pub pfnRun: PFN_rpsRenderGraphPhaseRun,
pub pfnDestroy: PFN_rpsRenderGraphPhaseDestroy,
}Expand description
Parameters of a render graph processing phase.
Fields§
§hPhase: RpsRenderGraphPhaseHandle to the render graph phase object.
pfnRun: PFN_rpsRenderGraphPhaseRunPointer to a function for executing the render graph phase.
pfnDestroy: PFN_rpsRenderGraphPhaseDestroyPointer to a function for destroying the render graph phase.
Trait Implementations§
source§impl Clone for RpsRenderGraphPhaseInfo
impl Clone for RpsRenderGraphPhaseInfo
source§fn clone(&self) -> RpsRenderGraphPhaseInfo
fn clone(&self) -> RpsRenderGraphPhaseInfo
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 more