macro_rules! render {
( $callback:expr $(,)? ) => { ... };
}Expand description
Macro to wrap an ImGui render callback.
Generates a RawGuiRender wrapper around the passed callback.
ยงUsage
let render_callback: RawGuiRender = render!(|ui| ui.text("Hello World"));