diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs index 8c7fed9753..7ee83df80c 100644 --- a/wgpu/src/lib.rs +++ b/wgpu/src/lib.rs @@ -1791,9 +1791,9 @@ impl Instance { backends = backends.union(Backends::VULKAN); } - // GL Vulkan on Mac is only available through angle. + // GL on Mac is only available through angle. if cfg!(target_os = "macos") && cfg!(feature = "angle") { - backends = backends.union(Backends::VULKAN); + backends = backends.union(Backends::GL); } } else { if cfg!(webgpu) {