MCPcopy Index your code
hub / github.com/benfry/processing4 / main

Method main

app/src/processing/app/ui/Splash.java:165–179  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls 7

getDisableHiDPIMethod · 0.95
showSplashMethod · 0.95
getContentFileMethod · 0.95
invokeMainMethod · 0.95
disposeSplashMethod · 0.95
setPropertyMethod · 0.65
printStackTraceMethod · 0.45

Tested by

no test coverage detected