Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | GLDrawableFactory Cleanup (-> On- Offscreen and PBuffer) | Sven Gothel | 2009-10-05 | 20 | -381/+337 |
| | | | | | | | | | | | | | | | | | | | | | | | | - Base all PBuffer/Offscreen GLDrawable creators on a prev. created 'NativeWindow + SurfaceChangeable' instance. Simplifies implementation path. This also removes the almost cyclic referencing of GLWindow -> OffscreenWindow GLWindow -> Drawable -> NullWindow -> OffscreenWindow Now it is just GLWindow -> OffscreenWindow GLWindow -> Drawable -> OffscreenWindow - createGLDrawable() shall be used for all types now, especially if you want to pass the offscreen NativeWindow and benefit from the surfaceChangedListener etc .. - Add public createOffscreenDrawable(..) - EGLDrawable: - Query surface only if not 0 - [re]create surface only if needed, using 'ownEGL*' flag for destruction only. | ||||
* | Add com.sun.opengl.util.texture.spi.NetPbmTextureWriter | Sven Gothel | 2009-10-04 | 1 | -0/+161 |
| | |||||
* | EGL: Use surfaceHandle, not windowHandle (2) for eglSurface | Sven Gothel | 2009-10-04 | 1 | -2/+2 |
| | |||||
* | EGLContext: Just debug lines .. | Sven Gothel | 2009-10-04 | 1 | -3/+5 |
| | |||||
* | FIX: EGL Config: on-/offscreen and pbuffer; Added EGL-PBuffer setSurfaceHandle | Sven Gothel | 2009-10-04 | 4 | -36/+50 |
| | |||||
* | Fix Config: Set doublebuffer:=false if offscreen; NEWT: Fix KDWindow. | Sven Gothel | 2009-10-04 | 7 | -1/+13 |
| | |||||
* | Fix EGL SurfaceType query/setup [on-/offscreen, pbuffer] using ↵ | Sven Gothel | 2009-10-04 | 3 | -42/+54 |
| | | | | EGLConfig/GLCapabilities | ||||
* | Texture: Relax/Pending creation of texture ID, no context must be current | Sven Gothel | 2009-10-03 | 1 | -17/+25 |
| | |||||
* | Avoid NPE if no context current | Sven Gothel | 2009-10-03 | 1 | -1/+1 |
| | |||||
* | NativeWindow extends SurfaceUpdatedListener for 'surfaceUpdated' ↵ | Sven Gothel | 2009-10-03 | 8 | -37/+54 |
| | | | | propagation. GLDrawableFactory.createGLDrawable() propagates NativeWindow to offscreen NullWindow. | ||||
* | surfaceupdated:: NativeWindow: passing 'updater'; NEWT: adding event listener | Sven Gothel | 2009-10-03 | 8 | -18/+113 |
| | |||||
* | EGL Fix: Use the surface handle for creation, not the window handle; More ↵ | Sven Gothel | 2009-10-03 | 4 | -28/+53 |
| | | | | fixedCaps. | ||||
* | EGL debug fixes .. | Sven Gothel | 2009-10-03 | 4 | -11/+28 |
| | |||||
* | Offscreen/PBuffer capabilities cleanup ; Generic read drawable support | Sven Gothel | 2009-10-03 | 23 | -121/+291 |
| | |||||
* | NEWT: Offscreen integration | Sven Gothel | 2009-10-02 | 3 | -2/+95 |
| | |||||
* | Pbuffer GLDrawableFactory integration (2) | Sven Gothel | 2009-10-02 | 3 | -6/+60 |
| | |||||
* | Proper PBuffer drawable abstraction | Sven Gothel | 2009-10-02 | 5 | -67/+63 |
| | |||||
* | NEWT Intel GDL: Proper Pos/Size/Fullscreen | Sven Gothel | 2009-10-02 | 2 | -23/+112 |
| | |||||
* | NEWT Intel GDL: Surface Size tuning .. ; Add missing getSurfaceHandle() | Sven Gothel | 2009-10-02 | 2 | -12/+25 |
| | |||||
* | NativeWindowFactory: | Sven Gothel | 2009-10-02 | 20 | -97/+798 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - If property 'nativewindow.ws.name' is set, use it as the custom windowing type returned by getNativeWindowType(true) NEWT: - Using NativeWindowFactory's property 'nativewindow.ws.name' as a package name for custom NEWT windowing imlementations, ie: -Dnativewindow.ws.name=com.sun.javafx.newt.intel.gdl -Dnativewindow.ws.name=com.sun.javafx.newt.broadcom.egl This allows far more flexibility to add custom impl. - Add Intel-GDL, define property 'useIntelGDL' to build the native part. Intel GDL is impl in the package 'com.sun.javafx.newt.intel.gdl' JOGL: - All impl. of 'createGLDrawable(..)', which were actually creating onscreen drawable only, were renamed to 'createOnscreenDrawable(..)'. - GLDrawableFactoryImpl impl. 'createGLDrawable(..)' now and dispatches to the actual create* methods in respect to the Capabilities, ie onscreen, pbuffer and offscreen. - GLDrawableFactory: - If using a native ES profile -> EGLDrawableFactory - If existing native OS factory -> Use that .. - Else -> Use EGLDrawableFactory, if available | ||||
* | NEWT: Fix X11 ConfigureEvent ; X11Window don't propagate pos change if parented | Sven Gothel | 2009-09-29 | 2 | -36/+57 |
| | |||||
* | Oops .. fixed compile error | Sven Gothel | 2009-09-25 | 1 | -1/+1 |
| | |||||
* | Fix MacOSX External GLContext | Sven Gothel | 2009-09-25 | 8 | -178/+448 |
| | |||||
* | Let the GLCapabilityChooser run over the fallback fixed GLCapabilities [last ↵ | Sven Gothel | 2009-09-24 | 1 | -2/+13 |
| | | | | resort] | ||||
* | NEWT AWT: Use size/pos from external frame | Sven Gothel | 2009-09-14 | 1 | -0/+4 |
| | |||||
* | NEWT: More elegant custom constructor type verification and setting by ↵ | Sven Gothel | 2009-09-14 | 2 | -34/+107 |
| | | | | Window class impl. ; AWTWindow allow pure Container in cstr, ie an Applet | ||||
* | Newt.AWT: avoid npe | Sven Gothel | 2009-09-13 | 1 | -2/+4 |
| | |||||
* | NEWT: remove redundant test code | Sven Gothel | 2009-09-13 | 1 | -3/+0 |
| | |||||
* | NEWT: native parenting Win32 OK | Sven Gothel | 2009-09-13 | 2 | -43/+88 |
| | |||||
* | Newt: MacOSX child clipping tests (failed) | Sven Gothel | 2009-09-12 | 3 | -6/+25 |
| | |||||
* | Newt: native window parenting MacOSX: OK (but parent clipping is missing) ; ↵ | Sven Gothel | 2009-09-12 | 6 | -54/+101 |
| | | | | X11: windowResize event handled | ||||
* | NEWT: Native window parenting (X11: OK); AWTWindow external Frame OK | Sven Gothel | 2009-09-12 | 6 | -31/+115 |
| | |||||
* | NEWT: Basic/Naive window parenting support ; NEWT GLWindow: remove ambigous ↵ | Sven Gothel | 2009-09-12 | 12 | -49/+73 |
| | | | | create functions, ie with Window and Capabilities arguments | ||||
* | newt: mac os mouse wheel event support, also made it more consistent with ↵ | trembovetski | 2009-08-25 | 2 | -3/+54 |
| | | | | windows | ||||
* | newt: one more attempt to commit insets-related changes | trembovetski | 2009-08-20 | 8 | -14/+262 |
| | |||||
* | newt: additional insets support for GL and AWT Window | trembovetski | 2009-08-20 | 2 | -1/+23 |
| | |||||
* | newt: added support for window insets. Only implemented for Windows and MacOS. | trembovetski | 2009-08-20 | 1 | -0/+96 |
| | | | | | Also clarified the meaning of setSize/getWidth/getHeight - they are assumed to be the size of the client area, excluding decorations. | ||||
* | newt: added expose/paint event notification needed for passive rendering. ↵ | trembovetski | 2009-08-14 | 4 | -1/+177 |
| | | | | Currently only implemented on Windows. | ||||
* | NativeWindow: Add destroy() method, allowing external module to dispose a ↵ | Sven Gothel | 2009-08-10 | 3 | -0/+22 |
| | | | | NativeWindow instance | ||||
* | Fix Offscreen/PBuffer [WGL/GLX]: No XVisual/PFD necessary here .. | Sven Gothel | 2009-08-06 | 3 | -13/+18 |
| | |||||
* | Update GlueGen to 7dc9c5601d5689dcbc003ca51cfe826942ea3e6b (latest) | Sven Gothel | 2009-08-05 | 5 | -31/+55 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Fixes for OpenGL 3.2 - More strict define/function checking - Better documentation in source code: extension relation - GL extension marker exclusion is done by GlueGen now - Adapted gluegen cfg files Added OpenGL 3.2 extensions for GL3 Revalidation of all OpenGL 2.0/3.0/3.1 and 3.2 extensions GL2GL3 based on OpenGL 2.0/3.0 headers EGL shares common egl-common.cfg file Removed experimental java system property 'jogl.GLContext.3_2', try a 3.2 context in case of GL3. X11GLXContext: - Always try to make a created context current, to verify it's usability. This is different than under WGL. - Temporary removed usage: GLX.GLX_CONTEXT_PROFILE_MASK_ARB NV driver bug. | ||||
* | WGL 3.2: No need for 'jogl.GLContext.3_2' - just works. | Sven Gothel | 2009-08-03 | 2 | -35/+22 |
| | |||||
* | Doc: OpenGL 3.1 .. 3.2 profile clarification | Sven Gothel | 2009-08-03 | 3 | -50/+108 |
| | | | | | | | | | | | | GLX_ARB_create_context: Add 3.2 context WGL_ARB_create_context: Add 3.2 context Add: Trying to use 3.2 core profile creation for GL3, disabled by default. (Disabled per default due to a freezing JVM on Linux _after_ the Java main thread and Hotspot finishes.) Experimental: You may try '3.2 core profile creation' setting the java system property 'jogl.GLContext.3_2'. | ||||
* | Fix GLX/WGL GraphicsConfigurationFactory: Be more relaxed in error handling ↵ | Sven Gothel | 2009-08-02 | 2 | -8/+34 |
| | | | | - keep going, even if underlying impl/modules cannot choose a config. Allows VBOX to run NEWT/JOGL | ||||
* | Fix doc bug @arg -> @param | Sven Gothel | 2009-08-02 | 7 | -25/+25 |
| | |||||
* | Update documentation (OpenGL 3.0, 3.1 specifics); Fix ↵ | Sven Gothel | 2009-08-02 | 1 | -9/+6 |
| | | | | ExtensionAvailabilityCache: Add Version 2.1 in case of GL2/OpenGL 3.0 | ||||
* | Update OpenGL GL2 profile subsumed/promoted extensions. Base is 3.0, ignore ↵ | Sven Gothel | 2009-08-02 | 1 | -5/+4 |
| | | | | the colission-free subsumed extensions. | ||||
* | Oops: Accidently removed AWT Display selection in NEWT | Sven Gothel | 2009-08-01 | 1 | -0/+2 |
| | |||||
* | Fix: updateGLProcAddressTable() call order - child before parent, broke WGL | Sven Gothel | 2009-08-01 | 4 | -4/+4 |
| | |||||
* | Cleanup GLSL ShaderUtil/Code; Add dumpCode | Sven Gothel | 2009-08-01 | 3 | -62/+124 |
| |