mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
Merge #1530
1530: Fix wgpu downlevel check r=kvark a=kvark **Connections** Fixes #1529 **Description** The anisotropic flag is not in the compliant set, but the check was made for equality of the flags (instead of inclusion). **Testing** Untested Co-authored-by: Dzmitry Malyshau <kvarkus@gmail.com>
This commit is contained in:
@@ -720,7 +720,7 @@ impl DownlevelCapabilities {
|
||||
/// If this returns false, some parts of the API will result in validation errors where they would not normally.
|
||||
/// These parts can be determined by the values in this structure.
|
||||
pub fn is_webgpu_compliant(self) -> bool {
|
||||
self == Self::default()
|
||||
self.flags.contains(DownlevelFlags::COMPLIANT) && self.shader_model >= ShaderModel::Sm5
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user