MCPcopy Create free account
hub / github.com/casssoft/imgui_lua_bindings / AddToStack

Function AddToStack

imgui_lua_bindings.cpp:27–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25// Stack for imgui begin and end
26std::deque<int> endStack;
27static void AddToStack(int type) {
28 endStack.push_back(type);
29}
30
31static void PopEndStack(int type) {
32 if (!endStack.empty()) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected