dear-imgui-sys 0.16.0-alpha.2

Low-level FFI bindings to Dear ImGui v1.92.9b (docking branch) via cimgui (C API)
Documentation
#include "imgui.h"
#include "imgui_internal.h"

void DearImGuiRsShowDemoWindowWithoutFontAtlas(bool* p_open);
void DearImGuiRsShowMetricsWindowWithoutFontAtlas(bool* p_open);
void DearImGuiRsShowStyleEditorWithoutFontAtlas(ImGuiStyle* ref);

extern "C"
{
void dear_imgui_rs_show_demo_window_without_font_atlas(bool* p_open)
{
    DearImGuiRsShowDemoWindowWithoutFontAtlas(p_open);
}

void dear_imgui_rs_show_metrics_window_without_font_atlas(bool* p_open)
{
    DearImGuiRsShowMetricsWindowWithoutFontAtlas(p_open);
}

void dear_imgui_rs_show_style_editor_without_font_atlas(ImGuiStyle* ref)
{
    DearImGuiRsShowStyleEditorWithoutFontAtlas(ref);
}

void dear_imgui_rs_show_font_atlas_debug_panel()
{
    ImGui::ShowFontAtlas(ImGui::GetIO().Fonts);
}
}