blob: 7b618cd7d8e11321cb33ad845dec972eb9463cee [file] [log] [blame]
#[cfg(target_arch = "spirv")]
macro_rules! unsupported_features {
($($feature:literal),+ $(,)?) => {
$(
#[cfg(feature = $feature)]
compile_error!(
concat!(
"`",
$feature,
"`",
" feature is not supported when building for SPIR-V.",
)
);
)+
}
}
#[cfg(target_arch = "spirv")]
unsupported_features! {
"approx",
"debug-glam-assert",
"glam-assert",
"rand",
"serde",
"std",
}