pub struct FillBatchEntry {
pub vertex_buffer: Buffer,
pub index_buffer: Buffer,
pub index_count: u32,
pub fill_params_buffer: Buffer,
pub bind_group: BindGroup,
}Expand description
GPU buffers for a dedicated fill layer.
Fields§
§vertex_buffer: BufferVertex buffer ([FillVertex]).
index_buffer: BufferIndex buffer (u32 indices).
index_count: u32Total number of indices to draw.
fill_params_buffer: BufferFill-specific parameter buffer for the fill-params uniform.
bind_group: BindGroupBind group that holds view-proj (binding 0) + fill params (binding 1).
Auto Trait Implementations§
impl Freeze for FillBatchEntry
impl !RefUnwindSafe for FillBatchEntry
impl Send for FillBatchEntry
impl Sync for FillBatchEntry
impl Unpin for FillBatchEntry
impl UnsafeUnpin for FillBatchEntry
impl !UnwindSafe for FillBatchEntry
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