CommandEncoder.copyTextureToBuffer - multiple declarations

Function CommandEncoder.copyTextureToBuffer

Copy data from a Texture to a Buffer.

void copyTextureToBuffer (
  const(Texture) source,
  const(Buffer) destination
);

Remarks

Copies the whole extent of the source texture.

Function CommandEncoder.copyTextureToBuffer

Copy data from a Texture to a Buffer.

void copyTextureToBuffer (
  const(Texture) source,
  const(Buffer) destination,
  const(__C.WGPUExtent3D) copySize
);

Function CommandEncoder.copyTextureToBuffer

Copy data from a texture to a buffer.

void copyTextureToBuffer (
  const(__C.WGPUImageCopyTexture) source,
  const(__C.WGPUImageCopyBuffer) destination,
  const(__C.WGPUExtent3D) copySize
) @trusted;