| 3593 | #ifndef IMGUI_DISABLE_DEBUG_TOOLS |
| 3594 | |
| 3595 | static const char* DebugNodeTableGetSizingPolicyDesc(ImGuiTableFlags sizing_policy) |
| 3596 | { |
| 3597 | sizing_policy &= ImGuiTableFlags_SizingMask_; |
| 3598 | if (sizing_policy == ImGuiTableFlags_SizingFixedFit) { return "FixedFit"; } |
| 3599 | if (sizing_policy == ImGuiTableFlags_SizingFixedSame) { return "FixedSame"; } |
| 3600 | if (sizing_policy == ImGuiTableFlags_SizingStretchProp) { return "StretchProp"; } |
| 3601 | if (sizing_policy == ImGuiTableFlags_SizingStretchSame) { return "StretchSame"; } |
| 3602 | return "N/A"; |
| 3603 | } |
| 3604 | |
| 3605 | void ImGui::DebugNodeTable(ImGuiTable* table) |
| 3606 | { |