pub struct MeshPipeline {
pub drawcalls: Vec<MeshDrawCall>,
pub projection: Mat4,
/* private fields */
}
Expand description
A pipeline for drawing quads.
Fields§
§drawcalls: Vec<MeshDrawCall>
The draw calls in the pipeline.
projection: Mat4
The projection the pipeline will draw with.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MeshPipeline
impl RefUnwindSafe for MeshPipeline
impl !Send for MeshPipeline
impl !Sync for MeshPipeline
impl Unpin for MeshPipeline
impl UnwindSafe for MeshPipeline
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