mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
[msl-out] add min version check for primitive_id
This commit is contained in:
@@ -258,6 +258,11 @@ impl Options {
|
||||
crate::BuiltIn::InstanceIndex if self.lang_version < (1, 2) => {
|
||||
return Err(Error::UnsupportedAttribute("instance_id".to_string()));
|
||||
}
|
||||
// macOS: Since Metal 2.2
|
||||
// iOS: Since Metal 2.3 (check depends on https://github.com/gfx-rs/naga/issues/2164)
|
||||
crate::BuiltIn::PrimitiveIndex if self.lang_version < (2, 2) => {
|
||||
return Err(Error::UnsupportedAttribute("primitive_id".to_string()));
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user