Skip to content

Commit d417aa5

Browse files
WebGPU: Activate Float32 Blendable Feature
1 parent f792d3c commit d417aa5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Graphics/GraphicsEngineWebGPU/src/EngineFactoryWebGPU.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,9 @@ WebGPUDeviceWrapper CreateDeviceForAdapter(const DeviceFeatures& Features, WGPUI
244244
if (wgpuAdapterHasFeature(wgpuAdapter, WGPUFeatureName_Float32Filterable))
245245
wgpuFeatures.push_back(WGPUFeatureName_Float32Filterable);
246246

247+
if (wgpuAdapterHasFeature(wgpuAdapter, WGPUFeatureName_Float32Blendable))
248+
wgpuFeatures.push_back(WGPUFeatureName_Float32Blendable);
249+
247250
if (wgpuAdapterHasFeature(wgpuAdapter, WGPUFeatureName_IndirectFirstInstance))
248251
wgpuFeatures.push_back(WGPUFeatureName_IndirectFirstInstance);
249252

0 commit comments

Comments
 (0)