(defaultScene Scene, headless bool)
| 74 | func DestroyWindow() { /* nothing to do here? */ } |
| 75 | |
| 76 | func runLoop(defaultScene Scene, headless bool) { |
| 77 | go func() { |
| 78 | for { |
| 79 | mobileDraw(defaultScene) |
| 80 | } |
| 81 | }() |
| 82 | } |
| 83 | |
| 84 | // RunPreparation is called only once, and is called automatically when calling Open |
| 85 | // It is only here for benchmarking in combination with OpenHeadlessNoRun |
nothing calls this directly
no test coverage detected