| 25 | // Stack for imgui begin and end |
| 26 | std::deque<int> endStack; |
| 27 | static void AddToStack(int type) { |
| 28 | endStack.push_back(type); |
| 29 | } |
| 30 | |
| 31 | static void PopEndStack(int type) { |
| 32 | if (!endStack.empty()) { |
nothing calls this directly
no outgoing calls
no test coverage detected