Type Alias ImageCopyBuffer

Source
pub type ImageCopyBuffer<'a> = ImageCopyBufferBase<&'a Buffer>;
Expand description

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

Corresponds to WebGPU GPUImageCopyBuffer.

Aliased Type§

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

Fields§

§buffer: &'a Buffer

The buffer to be copied to/from.

§layout: ImageDataLayout

The layout of the texture data in this buffer.