(input: TokenStream)
| 377 | /// See <https://github.com/KhronosGroup/Vulkan-ValidationLayers/blob/main/docs/debug_printf.md#debug-printf-format-string> for formatting rules. |
| 378 | #[proc_macro] |
| 379 | pub fn debug_printf(input: TokenStream) -> TokenStream { |
| 380 | debug_printf_inner(syn::parse_macro_input!(input as DebugPrintfInput)) |
| 381 | } |
| 382 | |
| 383 | /// Similar to `debug_printf` but appends a newline to the format string. |
| 384 | #[proc_macro] |
nothing calls this directly
no test coverage detected