The Jenkins Controller is preparing for shutdown. No new builds can be started.
Commit
6611735d544a2e09d56213dbfff4a1cd8a029529
by code Produce duplicate natives in the build, in preparation for removing support for aliasing in native library loading. Specifically, produce: jogl-all-noawt-natives-${os_and_arch}.jar jogl-all-mobile-natives-${os_and_arch}.jar jogl-all-android-natives-${os_and_arch}.jar The file was modified make/build.xml (diff)
Commit
5951b33b303df3a12888fe0fbc5ccc88112a3984
by code Attempt to remove aliasing from native libraries. Renamed: jogl-core.jar → jogl.jar nativewindow-core.jar → nativewindow.jar The build scripts have been edited to produce sets of natives for each "module" (as opposed to producing one set of natives and then have each module point to them via aliasing). Bug: 1023 Bug: 1024 Depends on 46faa59d439ef235d7691fc64d56eedc600ffa1a from gluegen. The file was modified doc/wiki/FAQ.xml (diff) The file was modified jnlp-files/atomic/newt-noawt-jogl.jnlp (diff) The file was modified src/jogl/classes/com/jogamp/opengl/cg/CgDynamicLibraryBundleInfo.java (diff) The file was modified doc/deployment/JOGL-DEPLOYMENT.html (diff) The file was modified jnlp-files/atomic/newt-noawt.jnlp (diff) The file was modified jnlp-files/atomic/jogl-awt.jnlp (diff) The file was modified make/build-newt.xml (diff) The file was modified jnlp-files/atomic/nativewindow-noawt.jnlp (diff) The file was modified make/build-nativewindow.xml (diff) The file was modified make/build-common.xml (diff) The file was modified make/scripts/lstjars.sh (diff) The file was modified make/build-jogl.xml (diff) The file was modified jnlp-files/atomic/newt-awt.jnlp (diff) The file was modified jnlp-files/atomic/nativewindow-awt.jnlp (diff) The file was modified src/oculusvr/classes/com/jogamp/oculusvr/OVRDynamicLibraryBundleInfo.java (diff) The file was modified jnlp-files/atomic/jogl-noawt.jnlp (diff) The file was modified jnlp-files/atomic/newt-awt-jogl.jnlp (diff) The file was modified make/scripts/tests.sh (diff)
Commit
38e51e4a5f6f35c658df10f6d48a33e3ffaea2f3
by Sven Gothel Bug 1021 : Add GenericStereoDevice* Supporting custom configurations; Hook-in oculusvr-sdk java distortion-mesh calculation if available StereoDeviceFactory support new GenericStereoDeviceFactory, with it's GenericStereoDevice and GenericStereoDeviceRenderer. GenericStereoDevice maintains different configurations, triggered either by passing a GenericStereoDevice.Config instance directly or by the device-index parameter: - 0: monoscopi device: No post-processing - 1: stereoscopic device SBS: No post-processing - 2: stereoscopic device SBS + Lenses: Distortion post-processing (only available w/ oculusvr-sdk sub-module) Producing a 'GenericStereoDevice.Config' instance is self containing and may extend if supporting more device types like top-bottom, interlaced etc. StereoDemo01 handles all use-cases and may be used as a test-bed to add and experiment with stereoscopy, devices and settings. The file was modified src/jogl/classes/com/jogamp/opengl/math/FovHVHalves.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/PMVMatrix.java (diff) The file was modified src/oculusvr/classes/jogamp/opengl/oculusvr/OVRStereoDeviceRenderer.java (diff) The file was modified src/oculusvr/classes/jogamp/opengl/oculusvr/OVRUtil.java (diff) The file was modified make/build-jogl.xml (diff) The file was added src/jogl/classes/jogamp/opengl/util/stereo/GenericStereoDevice.java The file was added src/jogl/classes/jogamp/opengl/util/stereo/DistortionMesh.java The file was added src/jogl/classes/jogamp/opengl/util/stereo/shader/dist01_plain.fp The file was added src/jogl/classes/jogamp/opengl/util/stereo/shader/dist01_timewarp_chroma.vp The file was added src/jogl/classes/jogamp/opengl/util/stereo/shader/dist01_timewarp.vp The file was modified src/jogl/classes/com/jogamp/opengl/util/stereo/StereoClientRenderer.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/stereo/StereoDeviceRenderer.java (diff) The file was modified oculusvr-sdk (diff) The file was added src/jogl/classes/jogamp/opengl/util/stereo/shader/dist01_chroma.vp The file was modified .classpath (diff) The file was added src/jogl/classes/jogamp/opengl/util/stereo/shader/dist01_chroma.fp The file was modified src/jogl/classes/com/jogamp/opengl/util/stereo/StereoDevice.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/math/FloatUtil.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/stereo/StereoDemo01.java (diff) The file was added src/jogl/classes/jogamp/opengl/util/stereo/GenericStereoDeviceFactory.java The file was modified src/oculusvr/classes/jogamp/opengl/oculusvr/OVRStereoDeviceFactory.java (diff) The file was added src/jogl/classes/jogamp/opengl/util/stereo/GenericStereoDeviceRenderer.java The file was added src/jogl/classes/jogamp/opengl/util/stereo/ScaleAndOffset2D.java The file was added src/jogl/classes/jogamp/opengl/util/stereo/shader/dist01_plain.vp The file was modified src/jogl/classes/com/jogamp/opengl/math/VectorUtil.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/stereo/StereoUtil.java (diff) The file was modified make/build-oculusvr.xml (diff) The file was modified make/scripts/tests.sh (diff) The file was modified src/oculusvr/classes/jogamp/opengl/oculusvr/OVRStereoDevice.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/stereo/StereoDeviceFactory.java (diff) The file was modified src/jogl/classes/jogamp/opengl/egl/EGLDrawableFactory.java (diff) The file was modified src/newt/classes/com/jogamp/newt/awt/applet/JOGLNewtApplet1Run.java (diff) The file was modified src/newt/classes/com/jogamp/newt/event/MouseEvent.java (diff) The file was modified src/jogl/classes/jogamp/opengl/macosx/cgl/MacOSXCGLContext.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/util/texture/TestPixelFormatUtil00NEWT.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/FBObject.java (diff)
Commit
b5910f18f0b82a8a1f6f6252dc19971d5e487f39
by Sven Gothel Findbugs.normal: Adding safeguard hashCode() implementation throwing InternalError("hashCode not designed") As long we don't use Object.hashCode() to idenitify the memory address, we can safeguard the code. The file was modified src/jogl/classes/com/jogamp/graph/geom/Outline.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/math/geom/AABBox.java (diff) The file was modified src/jogl/classes/jogamp/graph/geom/plane/AffineTransform.java (diff) The file was modified src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java (diff) The file was modified src/jogl/classes/com/jogamp/graph/geom/SVertex.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/math/Quaternion.java (diff) The file was modified src/nativewindow/classes/jogamp/nativewindow/windows/GDIUtil.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/FPSAnimator.java (diff)
Commit
96d530e7127c89db9991080e6268c6e8430d0619
by Sven Gothel Findbugs.not-written.null: Fix referencing non-written fields (never written or due branching) - AWT TextRenderer: Add throw new InternalError("fontRenderContext never initialized!"); FIXME! - GLContextImpl.hasFBOImpl(): Fix serious NPE issue if extCache is null - GLDrawableFactoryImpl.createOffscreenDrawableImpl(..): - Fix NPE issue w/ null drawable - Fix resetting GammaRamp by ensuring originalGammaRamp will be set at 1st setGammaRamp(..) - AndroidGLMediaPlayerAPI14: Fix NPE: Use already resolved local referenced - EGLDrawableFactory: Fix NPE: Only operate on non null surface! - ALAudioSink.dequeueBuffer(..): Only resolve releasedBuffer elements if not null - The file was modified src/newt/classes/jogamp/newt/swt/SWTEDTUtil.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/awt/TextRenderer.java (diff) The file was modified src/jogl/classes/jogamp/opengl/openal/av/ALAudioSink.java (diff) The file was modified src/jogl/classes/jogamp/opengl/GLContextImpl.java (diff) The file was modified src/jogl/classes/jogamp/opengl/egl/EGLUpstreamSurfaceHook.java (diff) The file was modified src/jogl/classes/jogamp/opengl/android/av/AndroidGLMediaPlayerAPI14.java (diff) The file was modified src/jogl/classes/javax/media/opengl/awt/GLCanvas.java (diff) The file was modified src/jogl/classes/jogamp/graph/curve/opengl/VBORegion2PVBAAES2.java (diff) The file was modified src/jogl/classes/jogamp/opengl/GLDrawableFactoryImpl.java (diff) The file was modified src/jogl/classes/jogamp/opengl/egl/EGLDrawableFactory.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/GLBuffers.java (diff) The file was modified src/nativewindow/classes/jogamp/nativewindow/SharedResourceToolkitLock.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/util/AWTRobotUtil.java (diff) The file was modified src/test/com/jogamp/opengl/test/bugs/DemoBug910ExtendedAWTAppletLifecycleCheck.java (diff) The file was modified src/jogl/classes/jogamp/opengl/util/av/GLMediaPlayerImpl.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/perf/TestPerf001GLJPanelInit01AWT.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/util/UITestCase.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLContextSurfaceLockNEWT.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/newt/event/BaseNewtEventModifiers.java (diff) The file was modified src/jogl/classes/jogamp/opengl/openal/av/ALAudioSink.java (diff) The file was modified src/jogl/classes/jogamp/opengl/util/stereo/GenericStereoDevice.java (diff) The file was modified src/jogl/classes/com/jogamp/gluegen/opengl/BuildStaticGLInfo.java (diff) The file was modified src/jogl/classes/jogamp/graph/curve/tess/HEdge.java (diff) The file was modified src/test/com/jogamp/opengl/test/bugs/Bug735Inv2AppletAWT.java (diff) The file was modified src/jogl/classes/jogamp/opengl/util/pngj/PngHelperInternal.java (diff) The file was modified src/test/com/jogamp/opengl/test/bugs/Bug735Inv4AWT.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/demos/es1/OlympicES1.java (diff) The file was modified src/test/com/jogamp/opengl/test/bugs/Bug735Inv3AppletAWT.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/newt/event/BaseNewtEventModifiers.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/shader/RedSquareShader.java (diff) The file was modified src/test/com/jogamp/opengl/test/bugs/Bug735Inv1AppletAWT.java (diff) The file was modified src/jogl/classes/jogamp/opengl/glu/GLUquadricImpl.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/TestSharedContextNewtAWTBug523.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/GLEventListenerState.java (diff) The file was modified src/test/com/jogamp/opengl/test/bugs/Bug735Inv0AppletAWT.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/GLPixelBuffer.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/LandscapeES2.java (diff) The file was modified src/newt/classes/com/jogamp/newt/event/awt/AWTWindowAdapter.java (diff) The file was modified src/newt/classes/com/jogamp/newt/awt/applet/JOGLNewtApplet1Run.java (diff) The file was modified src/jogl/classes/jogamp/graph/geom/plane/AffineTransform.java (diff) The file was modified src/nativewindow/classes/javax/media/nativewindow/DefaultGraphicsConfiguration.java (diff) The file was modified src/jogl/classes/jogamp/opengl/x11/glx/GLXUtil.java (diff) The file was modified src/jogl/classes/jogamp/opengl/util/av/GLMediaPlayerImpl.java (diff) The file was modified src/jogl/classes/jogamp/opengl/android/av/AndroidGLMediaPlayerAPI14.java (diff) The file was modified src/jogl/classes/jogamp/graph/geom/plane/Crossing.java (diff) The file was modified src/newt/classes/jogamp/newt/WindowImpl.java (diff) The file was modified src/newt/classes/jogamp/newt/driver/awt/AWTEDTUtil.java (diff) The file was modified src/newt/classes/jogamp/newt/swt/SWTEDTUtil.java (diff) The file was modified src/newt/classes/jogamp/newt/DefaultEDTUtil.java (diff) The file was modified src/jogl/classes/jogamp/opengl/egl/EGLDrawableFactory.java (diff) The file was modified src/jogl/classes/com/jogamp/audio/windows/waveout/Mixer.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/texture/spi/LEDataInputStream.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderState.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/awt/TextRenderer.java (diff) The file was modified src/jogl/classes/javax/media/opengl/GLContext.java (diff) The file was modified src/nativewindow/classes/jogamp/nativewindow/jawt/windows/Win32SunJDKReflection.java (diff) The file was modified src/jogl/classes/jogamp/opengl/awt/Java2D.java (diff) The file was modified src/jogl/classes/javax/media/opengl/GLUniformData.java (diff) The file was modified src/jogl/classes/jogamp/graph/font/typecast/ot/table/CharstringType2.java (diff) The file was modified src/nativewindow/classes/com/jogamp/nativewindow/swt/SWTAccessor.java (diff) The file was modified src/jogl/classes/jogamp/opengl/windows/wgl/awt/WindowsAWTWGLGraphicsConfigurationFactory.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderUtil.java (diff) The file was modified src/jogl/classes/jogamp/graph/font/typecast/ot/table/CffTable.java (diff) The file was modified src/newt/classes/jogamp/newt/driver/x11/ScreenDriver.java (diff) The file was modified src/jogl/classes/com/jogamp/gluegen/opengl/BuildComposablePipeline.java (diff) The file was modified src/newt/classes/jogamp/newt/driver/x11/WindowDriver.java (diff) The file was modified src/jogl/classes/jogamp/graph/curve/opengl/VBORegion2PMSAAES2.java (diff) The file was modified src/jogl/classes/jogamp/opengl/glu/tessellator/GLUtessellatorImpl.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderCode.java (diff) The file was modified src/nativewindow/classes/com/jogamp/nativewindow/awt/AppContextInfo.java (diff) The file was modified src/jogl/classes/jogamp/opengl/glu/tessellator/PriorityQHeap.java (diff) The file was modified src/jogl/classes/jogamp/opengl/glu/tessellator/PriorityQSort.java (diff) The file was modified src/jogl/classes/jogamp/opengl/glu/tessellator/Sweep.java (diff) The file was modified src/jogl/classes/jogamp/opengl/util/av/GLMediaPlayerImpl.java (diff) The file was modified src/jogl/classes/jogamp/opengl/glu/nurbs/Mapdesc.java (diff) The file was modified src/jogl/classes/jogamp/opengl/glu/nurbs/Subdivider.java (diff) The file was modified src/jogl/classes/com/jogamp/graph/curve/opengl/RegionRenderer.java (diff) The file was modified src/jogl/classes/jogamp/opengl/glu/gl2/nurbs/GLUgl2nurbsImpl.java (diff) The file was modified src/jogl/classes/javax/media/opengl/GLContext.java (diff) The file was modified src/jogl/classes/jogamp/opengl/glu/nurbs/Curve.java (diff) The file was modified src/jogl/classes/jogamp/opengl/windows/wgl/awt/WindowsAWTWGLGraphicsConfigurationFactory.java (diff) The file was modified src/jogl/classes/jogamp/graph/font/typecast/ot/table/GsubTable.java (diff) The file was modified src/jogl/classes/jogamp/opengl/egl/EGLGraphicsConfigurationFactory.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/av/MovieSBSStereo.java (diff) The file was modified src/jogl/classes/jogamp/graph/font/typecast/ot/table/GposTable.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/math/TestPMVMatrix01NEWT.java (diff) The file was modified src/jogl/classes/jogamp/graph/font/typecast/ot/mac/ResourceMap.java (diff) The file was modified src/jogl/classes/jogamp/graph/font/typecast/t2/T2Interpreter.java (diff) The file was modified src/jogl/classes/jogamp/graph/font/typecast/ot/table/KernSubtable.java (diff) The file was modified src/jogl/classes/jogamp/opengl/glu/mipmap/HalveImage.java (diff) The file was modified src/jogl/classes/jogamp/opengl/glu/nurbs/Maplist.java (diff) The file was modified src/jogl/classes/jogamp/graph/font/typecast/tt/engine/Interpreter.java (diff) The file was modified src/test/com/jogamp/opengl/test/bugs/Issue344Base.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/av/MovieSimple.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/TextureSequenceCubeES2.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/awt/TestGLCanvasAWTActionDeadlock02AWT.java (diff) The file was modified src/nativewindow/classes/javax/media/nativewindow/NativeWindowFactory.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/GLRendererQuirks.java (diff) The file was modified src/jogl/classes/javax/media/opengl/GLProfile.java (diff) The file was modified src/jogl/classes/jogamp/opengl/GLContextImpl.java (diff) The file was modified src/jogl/classes/com/jogamp/graph/geom/SVertex.java (diff) The file was modified src/test/com/jogamp/opengl/test/android/NEWTGearsES2Activity.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/TestSharedContextVBOES2AWT3.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/TestMainVersionGLCanvasAWT.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderUtil.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/newt/WindowEventCom1.java (diff) The file was modified src/newt/classes/jogamp/newt/MonitorModeProps.java (diff) The file was modified src/newt/classes/jogamp/newt/WindowImpl.java (diff) The file was modified src/jogl/classes/jogamp/opengl/glu/mipmap/Mipmap.java (diff) The file was modified src/jogl/classes/jogamp/opengl/glu/mipmap/ExtractSByte.java (diff) The file was modified src/jogl/classes/jogamp/opengl/util/glsl/fixedfunc/FixedFuncPipeline.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/glsl/GLSLMiscHelper.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/av/MovieSimple.java (diff) The file was modified src/jogl/classes/jogamp/graph/font/typecast/ot/table/CmapFormat4.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/util/UITestCase.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/newt/WindowEventCom2.java (diff) The file was modified src/jogl/classes/jogamp/opengl/glu/GLUquadricImpl.java (diff) The file was modified src/jogl/classes/jogamp/opengl/macosx/cgl/MacOSXPbufferCGLDrawable.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/AnimatorBase.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/perf/TestPerf001GLWindowInit03NEWT.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/TestSharedContextNewtAWTBug523.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/perf/TestPerf001GLJPanelInit02AWT.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/util/DemoGL2ES2ImmModeSink.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/demos/es1/OneTriangle.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/util/DemoGL2ES1ImmModeSink.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/MultisampleDemoES2.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/TextureDraw01ES2Listener.java (diff) The file was modified src/jogl/classes/com/jogamp/gluegen/runtime/opengl/GLNameResolver.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLDebug00NEWT.java (diff) The file was modified src/jogl/classes/jogamp/graph/geom/plane/Path2D.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/graph/TestTextRendererNEWT00.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLDebug01NEWT.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLContextSurfaceLockNEWT.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/glsl/TestTransformFeedbackVaryingsBug407NEWT.java (diff) The file was modified src/jogl/classes/jogamp/graph/font/typecast/TypecastGlyph.java (diff) The file was modified src/jogl/classes/jogamp/opengl/x11/glx/X11ExternalGLXDrawable.java (diff) The file was modified src/jogl/classes/jogamp/graph/font/typecast/ot/table/CffTable.java (diff) The file was modified src/jogl/classes/jogamp/graph/font/typecast/ot/table/BaseTable.java (diff) The file was modified src/jogl/classes/jogamp/graph/font/typecast/ot/table/HdmxTable.java (diff) The file was modified src/jogl/classes/jogamp/graph/font/typecast/ot/table/CmapFormat2.java (diff) The file was modified src/jogl/classes/jogamp/opengl/macosx/cgl/MacOSXPbufferCGLDrawable.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/graph/TestRegionRendererNEWT01.java (diff) The file was modified src/jogl/classes/jogamp/graph/font/typecast/ot/table/CmapFormat.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLMesaBug651NEWT.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/InitConcurrentBaseNEWT.java (diff) The file was modified src/jogl/classes/jogamp/opengl/util/jpeg/JPEGDecoder.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/awt/TestGLCanvasAWTActionDeadlock02AWT.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/graph/TestTextRendererNEWT01.java (diff) The file was modified src/jogl/classes/com/jogamp/gluegen/opengl/BuildComposablePipeline.java (diff) The file was modified src/newt/classes/com/jogamp/newt/util/applet/VersionApplet3.java (diff) The file was modified src/jogl/classes/jogamp/graph/font/typecast/ot/table/VdmxTable.java (diff) The file was modified src/jogl/classes/jogamp/graph/curve/opengl/VBORegion2PVBAAES2.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/awt/TextRenderer.java (diff) The file was modified src/jogl/classes/jogamp/graph/curve/opengl/VBORegion2PMSAAES2.java (diff) The file was modified src/jogl/classes/javax/media/opengl/GLBufferStorage.java (diff) The file was modified src/jogl/classes/jogamp/opengl/GLBufferStateTracker.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/packrect/RectanglePacker.java (diff) The file was modified src/newt/classes/jogamp/newt/driver/bcm/vc/iv/ScreenDriver.java (diff) The file was modified src/newt/classes/jogamp/newt/driver/kd/ScreenDriver.java (diff) The file was modified src/jogl/classes/jogamp/graph/font/typecast/ot/table/PostTable.java (diff) The file was modified src/newt/classes/jogamp/newt/driver/android/event/AndroidNewtEventFactory.java (diff) The file was modified src/jogl/classes/jogamp/opengl/util/stereo/GenericStereoDevice.java (diff) The file was modified src/jogl/classes/com/jogamp/graph/curve/opengl/RegionRenderer.java (diff) The file was removed src/jogl/classes/jogamp/graph/curve/opengl/shader/curverenderer01-pass2-vbaa_allequal.glsl The file was added src/jogl/classes/jogamp/graph/curve/opengl/shader/curverenderer01-pass2-vbaa_bforce_even.glsl The file was modified src/test/com/jogamp/opengl/test/junit/graph/demos/ui/SceneUIController.java (diff) The file was modified src/jogl/classes/jogamp/graph/curve/opengl/VBORegion2PVBAAES2.java (diff) The file was added src/jogl/classes/jogamp/graph/curve/opengl/shader/curverenderer01-pass2-vbaa_bforce_odd.glsl The file was modified src/test/com/jogamp/opengl/test/junit/graph/demos/GPUUISceneGLListener0A.java (diff)
Commit
ec2d94ca26ddab8ec67135ebc5f2d0a43f6a4c25
by Sven Gothel Bug 1031 : Remove Deprecated Classes and Methods (JOGL) Removed Deprecated Class: - com/jogamp/opengl/util/TGAWriter.java - Use TextureIO w/ .tga suffix - com/jogamp/opengl/util/awt/Screenshot.java - Use: - com.jogamp.opengl.util.GLReadBufferUtil, or - com.jogamp.opengl.util.awt.AWTGLReadBufferUtil The latter for reading into AWT BufferedImage See: TestBug461FBOSupersamplingSwingAWT, TestBug605FlippedImageAWT - javax/media/opengl/GLPbuffer.java - Use: caps.setPBuffer(true); final GLAutoDrawable pbuffer = GLDrawableFactory.getFactory( caps.getGLProfile() ).createOffscreenAutoDrawable(null, caps, null, 512, 512); - See: TestPBufferDeadlockAWT, .. Removed Deprecated Methods: - Constructor of AWT-GLCanvas, SWT-GLCanvas, AWT-GLJPanel with argument 'final GLContext shareWith' See GLSharedContextSetter, i.e. glCanvas.setSharedContext(..) ! - GLDrawableFactory.createOffscreenAutoDrawable(..) with argument 'final GLContext shareWith' See GLSharedContextSetter, i.e. offscreenAutoDrawable.setSharedContext(..) ! - GLDrawableFactory.createGLPbuffer(..), see above! - com.jogamp.opengl.util.av.AudioSink 'enqueueData(AudioDataFrame audioDataFrame)', use 'enqueueData(int, ByteBuffer, int)' - GLSharedContextSetter.areAllGLEventListenerInitialized(), migrated to GLAutoDrawable ! - GLBase's - glGetBoundBuffer(int), use getBoundBuffer(int) - glGetBufferSize(int), use getBufferStorage(int).getSize() - glIsVBOArrayBound(), use isVBOArrayBound() - glIsVBOElementArrayBound(), use isVBOElementArrayBound() - NEWT MouseEvent.BUTTON_NUMBER, use BUTTON_COUNT The file was modified make/config/jogl/glu-CustomJavaCode-base.java (diff) The file was modified make/config/jogl/glu-CustomJavaCode-gl2.java (diff) The file was modified src/jogl/classes/javax/media/opengl/GLAutoDrawable.java (diff) The file was modified make/config/jogl/gl-if-CustomJavaCode-es3.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/swt/GLCanvas.java (diff) The file was modified make/config/jogl/gl-impl-CustomJavaCode-gles3.java (diff) The file was modified src/jogl/classes/javax/media/opengl/GLBase.java (diff) The file was removed src/jogl/classes/javax/media/opengl/GLPbuffer.java The file was removed src/jogl/classes/jogamp/opengl/MemoryObject.java The file was modified make/config/jogl/gl-impl-CustomJavaCode-gl4bc.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/awt/TestBug461PBufferSupersamplingSwingAWT.java (diff) The file was modified make/config/jogl/glu-CustomJavaCode-gl2es1.java (diff) The file was modified src/jogl/classes/jogamp/opengl/util/av/JavaSoundAudioSink.java (diff) The file was modified src/jogl/classes/javax/media/opengl/awt/GLCanvas.java (diff) The file was modified src/jogl/classes/javax/media/opengl/GLSharedContextSetter.java (diff) The file was modified src/jogl/classes/jogamp/opengl/util/av/NullAudioSink.java (diff) The file was modified src/jogl/classes/javax/media/opengl/GLDrawableFactory.java (diff) The file was modified src/jogl/classes/javax/media/opengl/Threading.java (diff) The file was removed src/jogl/classes/com/jogamp/opengl/util/awt/Screenshot.java The file was modified src/jogl/classes/com/jogamp/opengl/util/awt/AWTGLReadBufferUtil.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/TestNEWTCloseX11DisplayBug565.java (diff) The file was modified src/jogl/classes/javax/media/opengl/awt/GLJPanel.java (diff) The file was modified src/jogl/classes/jogamp/opengl/openal/av/ALAudioSink.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/av/AudioSink.java (diff) The file was modified make/scripts/tests.sh (diff) The file was removed src/jogl/classes/com/jogamp/opengl/util/TGAWriter.java The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/TestPBufferDeadlockAWT.java (diff) The file was removed src/jogl/classes/jogamp/opengl/GLPbufferImpl.java The file was modified src/test/com/jogamp/opengl/test/junit/jogl/caps/TestBug605FlippedImageAWT.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLExtensionQueryOffscreen.java (diff) The file was modified make/config/jogl/gl-impl-CustomJavaCode-common.java (diff) The file was modified src/newt/classes/com/jogamp/newt/event/MouseEvent.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/glsl/GLSLMiscHelper.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/awt/TestBug461FBOSupersamplingSwingAWT.java (diff) The file was modified src/jogl/classes/jogamp/opengl/GLContextImpl.java (diff) The file was modified src/jogl/classes/jogamp/opengl/GLDrawableFactoryImpl.java (diff) The file was modified src/jogl/classes/jogamp/opengl/GLBufferObjectTracker.java (diff) The file was added src/test/com/jogamp/opengl/test/junit/jogl/util/texture/bug982.rle32.256x256.tga The file was modified make/scripts/tests.sh (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/util/texture/TestTGATextureFromFileNEWT.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/stereo/StereoDeviceRenderer.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/stereo/StereoClientRenderer.java (diff)
Commit
808d95cd692ab666271a83c70e8509859586de72
by Sven Gothel Refine JOGL's LICENSE.txt: Distinguish between 'New BSD 2-Clause License' compatible and not-compatible materials! OculusVR RIFT SDK license is not compatible, but usable and optional! .. also refine A.7) Oculus VR Rift SDK Software License The file was modified LICENSE.txt (diff) The file was modified src/jogl/classes/jogamp/opengl/GLDrawableHelper.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/TestSharedContextVBOES2NEWT1.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/TestSharedContextVBOES1NEWT.java (diff) The file was modified make/scripts/tests.sh (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/TestSharedContextVBOES2NEWT0.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/TestSharedContextListNEWT2.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/TestSharedContextVBOES2NEWT2.java (diff) The file was modified src/test/com/jogamp/opengl/test/android/MovieSimpleActivity1.java (diff) The file was modified src/test/com/jogamp/opengl/test/junit/jogl/acore/TestSharedContextListNEWT.java (diff) The file was modified src/jogl/classes/javax/media/opengl/GLSharedContextSetter.java (diff) The file was modified src/jogl/classes/com/jogamp/opengl/util/stereo/StereoClientRenderer.java (diff) The file was modified LICENSE.txt (diff)