Interface gpuGPUTextureDescriptor

interface gpuGPUTextureDescriptor {
    dimension?: string;
    format: string;
    label: string;
    mipLevelCount?: number;
    sampleCount?: number;
    size: number[] | gpuGPUExtent3DDict;
    usage: number;
    viewFormats?: string[];
}

Properties

dimension?: string
format: string
label: string
mipLevelCount?: number
sampleCount?: number
size: number[] | gpuGPUExtent3DDict
usage: number
viewFormats?: string[]