How do I set the window size to "windowed fullscreen"?
The best I can do is:
surface.setLocation(0, 0);
surface.setSize(displayWidth, displayHeight);
however it doesn't fit because of the taskbar and setLocation(0, 0)
doesn't set the position to exactly the top left corner (it is a little off to the right and bottom)
I am using Windows 10 with Processing 4.0b2. I am also not using the processing application, but using the core jar as a library.