Struct wgpu::BufferBinding
source · pub struct BufferBinding<'a> {
pub buffer: &'a Buffer,
pub offset: BufferAddress,
pub size: Option<BufferSize>,
}
Expand description
Describes the segment of a buffer to bind.
Corresponds to WebGPU GPUBufferBinding
.
Fields§
§buffer: &'a Buffer
The buffer to bind.
offset: BufferAddress
Base offset of the buffer, in bytes.
If the has_dynamic_offset
field of this buffer’s layout entry is
true
, the offset here will be added to the dynamic offset passed to
RenderPass::set_bind_group
or ComputePass::set_bind_group
.
If the buffer was created with BufferUsages::UNIFORM
, then this
offset must be a multiple of
Limits::min_uniform_buffer_offset_alignment
.
If the buffer was created with BufferUsages::STORAGE
, then this
offset must be a multiple of
Limits::min_storage_buffer_offset_alignment
.
size: Option<BufferSize>
Size of the binding in bytes, or None
for using the rest of the buffer.
Trait Implementations§
source§impl<'a> Clone for BufferBinding<'a>
impl<'a> Clone for BufferBinding<'a>
source§fn clone(&self) -> BufferBinding<'a>
fn clone(&self) -> BufferBinding<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a> Freeze for BufferBinding<'a>
impl<'a> !RefUnwindSafe for BufferBinding<'a>
impl<'a> Send for BufferBinding<'a>
impl<'a> Sync for BufferBinding<'a>
impl<'a> Unpin for BufferBinding<'a>
impl<'a> !UnwindSafe for BufferBinding<'a>
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