Commit
670df25aae92079945a83401db9722d543730193
by Sven GothelBug 1241 - Util's Texture.coords (image coordinates) not updated properly Adding 'imageTarget', i.e. GL target for this texture or its sub-components if cubemap The imageTarget preserves the used 2D image type for the 2D Texture coordinates. Note: 'Texture.updateImage(final GL gl, final TextureData data, final int targetOverride)' needs an overhaul targeted for 2.4.0.
|
 | src/jogl/classes/com/jogamp/opengl/util/texture/Texture.java (diff) |
 | make/scripts/tests-win.bat (diff) |
Commit
731c473740e3e7ccd26ecda7ea0200382795c3a6
by Sven GothelBug 1237: Adopt GlueGen's clarification of IOUtil.getResource(..), commit d78bb1be0a6290cb94918b21865a023c01825048 - Skip relative lookup for IOUtil.ClassResources using 'asset' only (from JAR file) - Tested w/ jar file and build-dir, see scripts/tests.sh 'USE_BUILDDIR'
|
 | src/test/com/jogamp/opengl/test/junit/graph/FontSet01.java (diff) |
 | src/test/com/jogamp/opengl/test/junit/jogl/util/texture/TestPixelFormatUtil01NEWT.java (diff) |
 | src/test/com/jogamp/opengl/test/junit/graph/TestTextRendererNEWT10.java (diff) |
 | src/test/com/jogamp/opengl/test/junit/jogl/util/texture/TestJPEGJoglAWTBenchmarkNewtAWT.java (diff) |
 | make/scripts/tests.sh (diff) |
 | src/jogl/classes/com/jogamp/graph/font/FontFactory.java (diff) |
 | src/jogl/classes/com/jogamp/opengl/util/glsl/sdk/CompileShader.java (diff) |
 | src/newt/classes/com/jogamp/newt/NewtFactory.java (diff) |
 | src/test/com/jogamp/opengl/test/junit/jogl/demos/gl2/Teapot.java (diff) |
 | src/test/com/jogamp/opengl/test/junit/jogl/util/texture/TestPNGTextureFromFileAWT.java (diff) |
 | src/jogl/classes/com/jogamp/opengl/util/texture/ImageSequence.java (diff) |
 | src/test/com/jogamp/opengl/test/junit/jogl/demos/es2/newt/TestGearsES2SimpleNEWT.java (diff) |
 | src/jogl/classes/jogamp/graph/font/UbuntuFontLoader.java (diff) |
 | src/test/com/jogamp/opengl/test/junit/jogl/util/texture/TestTGATextureFromFileNEWT.java (diff) |
 | src/test/com/jogamp/opengl/test/junit/jogl/util/texture/TestPNGPixelRect01NEWT.java (diff) |
 | src/test/com/jogamp/opengl/test/junit/jogl/demos/gl3/GeomShader01TextureGL3.java (diff) |
 | src/newt/classes/com/jogamp/newt/opengl/util/NEWTDemoListener.java (diff) |
 | src/test/com/jogamp/opengl/test/junit/jogl/util/texture/TestBug362DDSImageCreateFromData.java (diff) |
 | src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderCode.java (diff) |
 | src/test/com/jogamp/opengl/test/junit/jogl/util/texture/TestJPEGTextureFromFileNEWT.java (diff) |
 | src/test/com/jogamp/opengl/test/junit/newt/TestWindowAndPointerIconNEWT.java (diff) |
 | src/test/com/jogamp/opengl/test/junit/jogl/util/texture/TestJPEGImage01NEWT.java (diff) |
 | src/test/com/jogamp/opengl/test/junit/jogl/util/texture/ImageTstFiles.java (diff) |
 | src/test/com/jogamp/opengl/test/junit/jogl/util/texture/TestJPEGJoglAWTCompareNewtAWT.java (diff) |
 | src/test/com/jogamp/opengl/test/junit/jogl/util/texture/TestPNGPixelRect00NEWT.java (diff) |
 | src/newt/classes/jogamp/newt/driver/bcm/vc/iv/DisplayDriver.java (diff) |
 | src/test/com/jogamp/opengl/test/junit/jogl/util/texture/TestPNGTextureFromFileNEWT.java (diff) |
 | src/test/com/jogamp/opengl/test/junit/jogl/util/DemoGL2ES1TextureImmModeSink.java (diff) |
Commit
24d30eec425ca6c62f72e7c218a9149777dbec52
by Sven GothelBug 1238 - Fix NPE for Window-Icon's PNGPixelRect for unresolved location; Bug 1199 - Add setting to disable default window icons Bug 1238 - Fix NPE for Window-Icon's PNGPixelRect for unresolved location, i.e. null URLConnections Testing w/ jogl/make/scripts/tests.sh USE_BUILDDIR=1, discloses this issue - since the icons are available in jar only. Handling all unresolved resources, i.e. null URLConnection, is required. Further more, the icon list passed via property 'newt.window.icons' shall be separated by comma as well. This allows passing the list via scripts more conveniently.
-Dnewt.window.icons="newt/data/jogamp-16x16.png,newt/data/jogamp-32x32.png" +++ Bug 1199 - Add setting to disable default window icons This patch also allows disabling JogAmp's own window icons by simply defining a non-existing location, i.e. -Dnewt.window.icons="null,null"
|
 | src/newt/classes/com/jogamp/newt/Window.java (diff) |
 | src/newt/classes/jogamp/newt/driver/bcm/vc/iv/DisplayDriver.java (diff) |
 | src/newt/classes/jogamp/newt/driver/macosx/DisplayDriver.java (diff) |
 | src/newt/classes/jogamp/newt/driver/opengl/JoglUtilPNGIcon.java (diff) |
 | make/scripts/tests.sh (diff) |
 | src/newt/classes/jogamp/newt/driver/windows/DisplayDriver.java (diff) |
 | src/newt/classes/com/jogamp/newt/NewtFactory.java (diff) |