pub struct DrawCall {
pub vertex_count: u32,
pub instance_count: u32,
pub pass_name: String,
pub draw_type: DrawType,
}Expand description
Simulated draw call for bookkeeping.
Fields§
§vertex_count: u32§instance_count: u32§pass_name: String§draw_type: DrawTypeTrait Implementations§
Auto Trait Implementations§
impl Freeze for DrawCall
impl RefUnwindSafe for DrawCall
impl Send for DrawCall
impl Sync for DrawCall
impl Unpin for DrawCall
impl UnsafeUnpin for DrawCall
impl UnwindSafe for DrawCall
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more