Struct rps_sys::RpsRenderGraphRecordCommandInfo
source · #[repr(C)]pub struct RpsRenderGraphRecordCommandInfo {
pub hCmdBuffer: RpsRuntimeCommandBuffer,
pub pUserContext: *mut c_void,
pub frameIndex: u64,
pub cmdBeginIndex: u32,
pub numCmds: u32,
pub flags: RpsRecordCommandFlags,
}Expand description
Parameters for recording commands using a processed render graph.
Fields§
§hCmdBuffer: RpsRuntimeCommandBufferHandle to the runtime command buffer object.
pUserContext: *mut c_voidUser defined context to be passed to the callbacks during recording.
frameIndex: u64Index of the frame to record commands for.
cmdBeginIndex: u32Index of the first command to be recorded.
numCmds: u32Number of commands to record.
flags: RpsRecordCommandFlagsFlags for specifying recording behavior.
Trait Implementations§
source§impl Clone for RpsRenderGraphRecordCommandInfo
impl Clone for RpsRenderGraphRecordCommandInfo
source§fn clone(&self) -> RpsRenderGraphRecordCommandInfo
fn clone(&self) -> RpsRenderGraphRecordCommandInfo
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