Enum FeatureName

Features that are not guaranteed to be supported.

enum FeatureName : __C.WGPUFeatureName { ... }

These are either part of the webgpu standard, or are extension features supported by wgpu when targeting native.

If you want to use a feature, you need to first verify that the adapter supports the feature. If the adapter does not support the feature, requesting a device with it enabled will panic.

Enum members

NameDescription
depth24UnormStencil8
depth32FloatStencil8
depthClamping
pipelineStatisticsQuery
textureCompressionBc
timestampQuery
undefined

See Also

wgpu::Features