copyTextureToTexture method

void copyTextureToTexture(
  1. GPUImageCopyTexture source,
  2. GPUImageCopyTexture destination,
  3. GPUExtent3D copySize
)

The copyTextureToTexture() method of the GPUCommandEncoder interface encodes a command that copies data from one GPUTexture to another.

Implementation

external void copyTextureToTexture(
  GPUImageCopyTexture source,
  GPUImageCopyTexture destination,
  GPUExtent3D copySize,
);