pub struct SymbolBatchEntry {
pub vertex_buffer: Buffer,
pub index_buffer: Buffer,
pub index_count: u32,
}Expand description
Prepared GPU buffers for one symbol batch.
Fields§
§vertex_buffer: BufferVertex buffer ([SymbolVertex]).
index_buffer: BufferIndex buffer (u32 indices).
index_count: u32Total number of indices to draw.
Auto Trait Implementations§
impl Freeze for SymbolBatchEntry
impl !RefUnwindSafe for SymbolBatchEntry
impl Send for SymbolBatchEntry
impl Sync for SymbolBatchEntry
impl Unpin for SymbolBatchEntry
impl UnsafeUnpin for SymbolBatchEntry
impl !UnwindSafe for SymbolBatchEntry
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