From 30c96bfead0de8db91576497766aec83f7297419 Mon Sep 17 00:00:00 2001 From: Andreas Reich Date: Wed, 6 Jan 2021 17:59:53 +0100 Subject: [PATCH] Added note on why hal update needed for STORAGE_READ_WRITE is blocked atm --- wgpu-core/src/instance.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgpu-core/src/instance.rs b/wgpu-core/src/instance.rs index 54e6743a64..c4813bdf38 100644 --- a/wgpu-core/src/instance.rs +++ b/wgpu-core/src/instance.rs @@ -287,7 +287,7 @@ impl Adapter { if texture_format_properties.contains(hal::format::ImageFeature::STORAGE_ATOMIC) { flags |= wgt::TextureFormatFeatureFlags::STORAGE_ATOMICS; } - // TODO: hal update + // TODO: Hal update required. This in turn is blocked by https://github.com/zakarumych/gpu-alloc/issues/33 //if texture_format_properties.contains(hal::format::ImageFeature::STORAGE_READ_WRITE) { // flags |= wgt::TextureFormatFeatureFlags::STORAGE_READ_WRITE; //}