macro_rules! debug_print {
($format:literal, $($args:expr),*) => { ... };
($format:literal, $($args:expr,)*) => { ... };
}
Expand description
Print a formatted message using the target’s debug print facilities. The format string is target specific, but Vulkan and CUDA both use the C++ conventions. WGSL isn’t currently supported.