Type Alias TexelCopyBufferInfo

Source
pub type TexelCopyBufferInfo<'a> = TexelCopyBufferInfo<&'a Buffer>;
Available on crate feature unstable-wgpu-24 only.
Expand description

View of a buffer which can be used to copy to/from a texture.

Corresponds to WebGPU GPUTexelCopyBufferInfo.

Aliased Type§

#[repr(C)]
pub struct TexelCopyBufferInfo<'a> { pub buffer: &'a Buffer, pub layout: TexelCopyBufferLayout, }

Fields§

§buffer: &'a Buffer

The buffer to be copied to/from.

§layout: TexelCopyBufferLayout

The layout of the texture data in this buffer.