(String[] args)
| 163 | |
| 164 | |
| 165 | static public void main(String[] args) { |
| 166 | // Has to be done before AWT is initialized, so the hack lives here |
| 167 | // instead of Base or anywhere else that might make more sense. |
| 168 | if (getDisableHiDPI()) { |
| 169 | System.setProperty("sun.java2d.uiScale.enabled", "false"); |
| 170 | } |
| 171 | try { |
| 172 | showSplash(Platform.getContentFile("lib/about-2x.png")); |
| 173 | invokeMain("processing.app.Base", args); |
| 174 | disposeSplash(); |
| 175 | |
| 176 | } catch (Exception e) { |
| 177 | e.printStackTrace(); |
| 178 | } |
| 179 | } |
| 180 | } |
nothing calls this directly
no test coverage detected