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