Method to initialize Dear ImGui context. Could be overridden to do custom Dear ImGui setup before application start. @param config configuration object with basic window information
(final Configuration config)
| 73 | * @param config configuration object with basic window information |
| 74 | */ |
| 75 | protected void initImGui(final Configuration config) { |
| 76 | ImGui.createContext(); |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Method called every frame, before calling {@link #process()} method. |
no test coverage detected