#[repr(C)]
pub struct RpsCommandBatch { pub queueIndex: u32, pub waitFencesBegin: u32, pub numWaitFences: u32, pub signalFenceIndex: u32, pub cmdBegin: u32, pub numCmds: u32, }
Expand description

Parameters of a batch of commands to be recorded by the graphics API in use.

These commands are the result of scheduling and have to be executed on the same queue.

Fields§

§queueIndex: u32

Index of the queue to submit the current batch to.

§waitFencesBegin: u32

Offset of the range of fence IDs into the

§numWaitFences: u32

Number of fence IDs to wait for before submitting.

§signalFenceIndex: u32

Index of the fence to signal after submitting.

§cmdBegin: u32

Index of the first runtime command in the batch.

§numCmds: u32

Number of runtime commands in the batch.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.