| 2998 | }; |
| 2999 | |
| 3000 | static const ImGuiStyleVarInfo* GetStyleVarInfo(ImGuiStyleVar idx) |
| 3001 | { |
| 3002 | IM_ASSERT(idx >= 0 && idx < ImGuiStyleVar_COUNT); |
| 3003 | IM_ASSERT(IM_ARRAYSIZE(GStyleVarInfo) == ImGuiStyleVar_COUNT); |
| 3004 | return &GStyleVarInfo[idx]; |
| 3005 | } |
| 3006 | |
| 3007 | void ImGui::PushStyleVar(ImGuiStyleVar idx, float val) |
| 3008 | { |
no outgoing calls
no test coverage detected