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
@brief Parameters for recording commands using a processed render graph.
Fields§
§hCmdBuffer: RpsRuntimeCommandBuffer< Handle to the runtime command buffer object.
pUserContext: *mut c_void< User defined context to be passed to the callbacks during recording.
frameIndex: u64< Index of the frame to record commands for.
cmdBeginIndex: u32< Index of the first command to be recorded.
numCmds: u32< Number of commands to record.
flags: RpsRecordCommandFlags< Flags 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