wgpu 29.0.1

Cross-platform, safe, pure-rust graphics API
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(feature = "std")]
pub fn is_panicking() -> bool {
    std::thread::panicking()
}

#[cfg(not(feature = "std"))]
pub fn is_panicking() -> bool {
    false
}