Struct rps_sys::RpsRenderGraphBatchLayout
source · #[repr(C)]pub struct RpsRenderGraphBatchLayout {
pub numCmdBatches: u32,
pub numFenceSignals: u32,
pub pCmdBatches: *const RpsCommandBatch,
pub pWaitFenceIndices: *const u32,
}
Expand description
Parameters of the command batch layout of a render graph.
Fields§
§numCmdBatches: u32
Number of command batches.
numFenceSignals: u32
Number of fence signals in the pipeline.
pCmdBatches: *const RpsCommandBatch
Pointer to an array of [const RpsCommandBatch] with
pWaitFenceIndices: *const u32
Pointer to an array of [const uint32_t] numFenceSignals
Trait Implementations§
source§impl Clone for RpsRenderGraphBatchLayout
impl Clone for RpsRenderGraphBatchLayout
source§fn clone(&self) -> RpsRenderGraphBatchLayout
fn clone(&self) -> RpsRenderGraphBatchLayout
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