Skip to content

Commit

Permalink
Merge pull request gfx-rs#3 from gfx-rs/master
Browse files Browse the repository at this point in the history
Update outdated notice of GL being unsupported (gfx-rs#3638)
  • Loading branch information
gents83 committed Apr 2, 2023
2 parents ecd0cc2 + ea396e2 commit a1b6b81
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wgpu-types/src/lib.rs
Expand Up @@ -135,7 +135,8 @@ bitflags::bitflags! {
pub struct Backends: u32 {
/// Supported on Windows, Linux/Android, and macOS/iOS via Vulkan Portability (with the Vulkan feature enabled)
const VULKAN = 1 << Backend::Vulkan as u32;
/// Currently unsupported
/// Supported on Linux/Android, the web through webassembly via WebGL, and Windows and
/// macOS/iOS via ANGLE
const GL = 1 << Backend::Gl as u32;
/// Supported on macOS/iOS
const METAL = 1 << Backend::Metal as u32;
Expand Down

0 comments on commit a1b6b81

Please sign in to comment.