Interface GPUTextureBindingLayout

    interface GPUTextureBindingLayout {
        multisampled?: boolean;
        sampleType?: GPUTextureSampleType;
        viewDimension?: GPUTextureViewDimension;
    }

    Properties

    multisampled?: boolean

    Indicates whether or not texture views bound to this binding must be multisampled.

    Indicates the type required for texture views bound to this binding.

    viewDimension?: GPUTextureViewDimension

    Indicates the required GPUTextureViewDescriptor#dimension for texture views bound to this binding.