(PApplet sketch)
| 141 | |
| 142 | |
| 143 | public void initFrame(PApplet sketch) { |
| 144 | this.sketch = sketch; |
| 145 | |
| 146 | initIcons(); |
| 147 | // For 4.0.2, swapped the order to do initGL() before initDisplay() |
| 148 | // https://github.com/processing/processing4/issues/544 |
| 149 | initGL(); |
| 150 | initDisplay(); |
| 151 | initWindow(); |
| 152 | initListeners(); |
| 153 | initAnimator(); |
| 154 | } |
| 155 | |
| 156 | |
| 157 | public Object getNative() { |
nothing calls this directly
no test coverage detected