| 1963 | void SetCurrentContext(ImNodesContext* ctx) { GImNodes = ctx; } |
| 1964 | |
| 1965 | ImNodesEditorContext* EditorContextCreate() |
| 1966 | { |
| 1967 | void* mem = ImGui::MemAlloc(sizeof(ImNodesEditorContext)); |
| 1968 | new (mem) ImNodesEditorContext(); |
| 1969 | return (ImNodesEditorContext*)mem; |
| 1970 | } |
| 1971 | |
| 1972 | void EditorContextFree(ImNodesEditorContext* ctx) |
| 1973 | { |
no outgoing calls
no test coverage detected