23//---- Don't implement test window functionality (ShowTestWindow()/ShowStyleEditor()/ShowUserGuide() methods will be empty)
24//---- It is very strongly recommended to NOT disable the test windows. Please read the comment at the top of imgui_demo.cpp to learn why.
25//#define IMGUI_DISABLE_TEST_WINDOWS
26
27//---- Don't define obsolete functions names. Consider enabling from time to time or when updating to reduce like hood of using already obsolete function/names
28//#define IMGUI_DISABLE_OBSOLETE_FUNCTIONS
29
30//---- Pack colors to BGRA instead of RGBA (remove need to post process vertex buffer in back ends)
31//#define IMGUI_USE_BGRA_PACKED_COLOR
32
33//---- Implement STB libraries in a namespace to avoid conflicts
34//#define IMGUI_STB_NAMESPACE ImGuiStb
35
36//---- Define constructor and implicit cast operators to convert back<>forth from your math types and ImVec2/ImVec4.
37/*
38#define IM_VEC2_CLASS_EXTRA \
39 ImVec2(const MyVec2& f) { x = f.x; y = f.y; } \