Interface GPUStorageTextureBindingLayout

    interface GPUStorageTextureBindingLayout {
        access?: GPUStorageTextureAccess;
        format: GPUTextureFormat;
        viewDimension?: GPUTextureViewDimension;
    }

    Properties

    The access mode for this binding, indicating readability and writability.

    The required GPUTextureViewDescriptor#format of texture views bound to this binding.

    viewDimension?: GPUTextureViewDimension

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