From cd87f1e80fdd63c55113b5442b1c29f9391f63ae Mon Sep 17 00:00:00 2001 From: Andreas Reich Date: Sat, 27 Jun 2020 22:33:47 +0200 Subject: [PATCH] added independent blending to the list of required features --- wgpu-core/src/instance.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/wgpu-core/src/instance.rs b/wgpu-core/src/instance.rs index 0ec7e9382..dfa7a1641 100644 --- a/wgpu-core/src/instance.rs +++ b/wgpu-core/src/instance.rs @@ -581,6 +581,7 @@ impl Global { let wishful_features = hal::Features::VERTEX_STORES_AND_ATOMICS | hal::Features::FRAGMENT_STORES_AND_ATOMICS | hal::Features::NDC_Y_UP + | hal::Features::INDEPENDENT_BLENDING | hal::Features::SAMPLER_ANISOTROPY; let mut enabled_features = available_features & wishful_features; if enabled_features != wishful_features {