fullscreen-p5
fullscreen-p5 copied to clipboard
Fullscreen-API for the Processing programming language
This line needs to be modified for the new class if ( clazz.getName().equals("processing.opengl.PGraphicsOpenGL")) isGL = true; should now be: ``` if ( clazz.getName().equals("processing.opengl.PGraphicsOpenGL") || clazz.getName().equals("processing.opengl2.PGraphicsOpenGL2") ) isGL = true; ```...
When using the GLGRAPHICS library for drawing in openGL the display renders a white square when in full screen. Steps to reproduce: 1. Install GLGRAPHICS - http://glgraphics.sourceforge.net/ 2. Import GLGRAPHICS...
I have an issue where most of my machines are running an AppBar. http://support.microsoft.com/kb/134206 Sometimes this causes an issue as it tries to breakthrough, making buttons and stuff under the...
the library breaks applets because it tries to use commands which can only be invoked in application mode. proposed solution: the library should detect if the sketch is running as...
Model Name: MacBook Model Identifier: MacBook5,1 Processor Name: Intel Core 2 Duo Processor Speed: 2.4 GHz Number Of Processors: 1 Total Number Of Cores: 2 L2 Cache: 3 MB Memory:...
When I exit softfullscreen, it completely screws up all the text and textures.
The AntiAlias does not work correctly in OpenGL (both FullScreen & SoftFullScreen) smooth() and gl.glEnable(gl.GL_LINE_SMOOTH); have no effect. import fullscreen.*; import processing.opengl.*; import javax.media.opengl.GL; PGraphicsOpenGL pgl; GL gl; FullScreen fs;...
SoftFullScreen mode throws a invocationtargetexception Fullscreen 0.98.2 Processing 1.0.9 OSX 10.4.11 java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at processing.core.PApplet$RegisteredMethods.handle(PApplet.java:723) at processing.core.PApplet$RegisteredMethods.handle(PApplet.java:716) at processing.core.PApplet.handleDraw(PApplet.java:1460) at processing.core.PApplet.run(PApplet.java:1327) at...
SoftFullScreen will very likely break applets on MacOSX now, because to hide the menu bar it needs to use a native-library which is of course not allowed. Proposed solutions: 1....
original bug-report: The cursor problem occurs when the mouse is at the very top of the screen. It seems that there are a few pixels of space above the active...