@feng3d/render-api
    Preparing search index...

    Interface ImageCopyTexture

    被操作的纹理相关信息。

    GPUCommandEncoder.copyTextureToTexture GPUImageCopyTexture

    interface ImageCopyTexture {
        aspect?: ITextureAspect;
        mipLevel?: number;
        origin?: TextureOrigin;
        texture: Texture;
    }
    Index

    Properties

    Defines which aspects of the GPUImageCopyTexture#texture to copy to/from.

    mipLevel?: number

    Mip-map level of the GPUImageCopyTexture#texture to copy to/from.

    origin?: TextureOrigin

    Defines the origin of the copy - the minimum corner of the texture sub-region to copy to/from. Together with copySize, defines the full copy sub-region.

    texture: Texture

    Texture to copy to/from.