| 103 | } |
| 104 | |
| 105 | void AppImplAndroid::setup() |
| 106 | { |
| 107 | mApp->privateSetup__(); |
| 108 | mSetupHasBeenCalled = true; |
| 109 | |
| 110 | // issue initial app activation event |
| 111 | mApp->emitDidBecomeActive(); |
| 112 | |
| 113 | for( auto &window : mWindows ) { |
| 114 | window->resize(); |
| 115 | } |
| 116 | |
| 117 | // initialize our next frame time |
| 118 | mNextFrameTime = getElapsedSeconds(); |
| 119 | |
| 120 | // enable event processing |
| 121 | mCanProcessEvents = true; |
| 122 | } |
| 123 | |
| 124 | void AppImplAndroid::sleepUntilNextFrame() |
| 125 | { |
no test coverage detected