isVisible is the main visibility check; don't do any window updates if not visible!
()
| 364 | |
| 365 | // isVisible is the main visibility check; don't do any window updates if not visible! |
| 366 | func (w *renderWindow) isVisible() bool { |
| 367 | if w == nil || w.SystemWindow == nil || w.isClosed() || w.closing || !w.SystemWindow.IsVisible() { |
| 368 | return false |
| 369 | } |
| 370 | return true |
| 371 | } |
| 372 | |
| 373 | // goStartEventLoop starts the event processing loop for this window in a new |
| 374 | // goroutine, and returns immediately. Adds to WindowWait wait group so a main |
no test coverage detected