()
| 164 | // None of those functions is reliant on the current context. |
| 165 | |
| 166 | public static ImGuiContext createContext() { |
| 167 | return new ImGuiContext(nCreateContext()); |
| 168 | } |
| 169 | |
| 170 | public static ImGuiContext createContext(final ImFontAtlas sharedFontAtlas) { |
| 171 | return new ImGuiContext(nCreateContext(sharedFontAtlas.ptr)); |
no test coverage detected