imgui-sys 0.10.0

Raw FFI bindings to dear imgui
Documentation
1
2
3
4
5
6
7
8
9
10
// This improves build speed by only compiling a single file, and performance by
// allowing the optimizer to inline across separate object files (note that even
// when rust is built with LTO, unless the steps are taken to allow cross-lang
// LTO (tricky), the C/C++ code won't be LTOed).
#include "./third-party/imgui-master/imgui/imgui.cpp"
#include "./third-party/imgui-master/imgui/imgui_demo.cpp"
#include "./third-party/imgui-master/imgui/imgui_draw.cpp"
#include "./third-party/imgui-master/imgui/imgui_widgets.cpp"
#include "./third-party/imgui-master/imgui/imgui_tables.cpp"
#include "./third-party/imgui-master/cimgui.cpp"