Skip to content
The Jenkins Controller is preparing for shutdown. No new builds can be started.
Aborted

Changes

Summary

  1. Merge branch 'master' of github.com:sgothel/jogl (details)
  2. added JFrame and Window runs to testAWT01GLn testcase + EDT fixes. (details)
  3. swing on edt only, awt off edt. cleaned up the test a bit. (details)
  4. exclude inner classes as tests to prevent junit from executing anonymous (details)
  5. Merge branch 'master' of github.com:sgothel/jogl (details)
  6. Merge branch 'master' of github.com:sgothel/jogl (details)
  7. XHTML cleanup and final JogAmplification for jogl main www page. (details)
  8. fixed Linux bullet list on HowToBuild www page. (details)
  9. updated paths in netbeans project.xml. (details)
  10. added junit debug test nb ide bindings. (details)
  11. cleaned up jackpot scripts, updated download locations. (details)
  12. forked TestAWT01GLn into TestSwingAWT01GLn. (details)
  13. continued with jackpot code transformations. (details)
  14. Merge branch 'master' of github.com:sgothel/jogl (details)
  15. refactored GLProfile. Removed Clonable (Profiles are unique), added (details)
  16. NEWT Add: add<type>Listener(int index, <type>Listener l) ; (details)
  17. Merge branch 'master' of github.com:mbien/jogl (details)
  18. NEWT Add: add<type>Listener(int index, <type>Listener l) ; (details)
Commit e2273258a844a1a77d57efeab85ce4ba8c02de5c by Michael Bien
Merge branch 'master' of github.com:sgothel/jogl
Commit 5cde948df47ecf435eda95b846a1b5c7afd6f5f9 by Michael Bien
added JFrame and Window runs to testAWT01GLn testcase + EDT fixes.
The file was modifiedsrc/junit/com/jogamp/test/junit/jogl/awt/TestAWT01GLn.java (diff)
Commit dcc946e925ec73740e2985e5febf5fbb732ad1d9 by Michael Bien
swing on edt only, awt off edt. cleaned up the test a bit.
The file was modifiedsrc/junit/com/jogamp/test/junit/jogl/awt/TestAWT01GLn.java (diff)
Commit ace04b51b41dd7887aec4095c8c4792dfc4c284b by Michael Bien
exclude inner classes as tests to prevent junit from executing anonymous inner classes.
The file was modifiedmake/build-junit.xml (diff)
Commit 1c4dadcc23b3920b0c612254af361da370d86cb8 by Michael Bien
Merge branch 'master' of github.com:sgothel/jogl
Commit 51abf405624f4f9bd3031842fac858f77671b838 by Michael Bien
Merge branch 'master' of github.com:sgothel/jogl
Commit 1789c3583436abd47dbebc7266ba1f91ac66795b by Michael Bien
XHTML cleanup and final JogAmplification for jogl main www page.
The file was modifiedwww/index.html (diff)
Commit 336c85eac57cbdd756dd9b1ffa8c057ac6a8b88a by Michael Bien
fixed Linux bullet list on HowToBuild www page.
The file was modifieddoc/HowToBuild.html (diff)
Commit d135db3fb2ccfe13e2a6b6f8a196a5baab8db575 by Michael Bien
updated paths in netbeans project.xml.
The file was modifiednbproject/project.xml (diff)
Commit c088e23874aee3299ab191605a76943e078b2fbc by Michael Bien
added junit debug test nb ide bindings.
The file was addednbproject/ide-file-targets.xml (diff)
The file was modifiednbproject/project.xml (diff)
Commit 16111d6280a46a04e71e0904944cb983ae34c3ff by Michael Bien
cleaned up jackpot scripts, updated download locations.
The file was modifiedtools/jackpotc/bttf (diff)
The file was modifiedtools/jackpotc/setup (diff)
Commit 9dedeb00e80c4b8e5323abc8ebd226893a791e72 by Michael Bien
forked TestAWT01GLn into TestSwingAWT01GLn.

Revert "swing on edt only, awt off edt. cleaned up the test a bit."
This reverts commit dcc946e925ec73740e2985e5febf5fbb732ad1d9.

Revert "added JFrame and Window runs to testAWT01GLn testcase + EDT fixes."
This reverts commit 5cde948df47ecf435eda95b846a1b5c7afd6f5f9.
The file was modifiedsrc/junit/com/jogamp/test/junit/jogl/awt/TestAWT01GLn.java (diff)
The file was addedsrc/junit/com/jogamp/test/junit/jogl/awt/TestSwingAWT01GLn.java (diff)
Commit 57d3d3f9f9475ae167cd9d33c9450eea66439fd2 by Michael Bien
continued with jackpot code transformations.
- added buildscript to test transformed results
- added more renaming transformations
The file was modifiedtools/jackpotc/test/oldgears/build.xml (diff)
The file was removedtools/jackpotc/test/oldgears/nbproject/genfiles.properties (diff)
The file was modifiedtools/jackpotc/test/oldgears/src/jogl111/gears/Gears.java (diff)
The file was modifiedtools/jackpotc/jogl1Tojogl2.hint (diff)
The file was modifiedtools/jackpotc/test/oldgears/nbproject/project.xml (diff)
The file was removedtools/jackpotc/test/oldgears/nbproject/project.properties (diff)
The file was removedtools/jackpotc/test/oldgears/nbproject/build-impl.xml (diff)
The file was modifiedtools/jackpotc/test/oldgears/.gitignore (diff)
The file was modifiedtools/jackpotc/bttf (diff)
Commit 2522d4f1ebffec030d7e8c3688e5f952c574c3d0 by Michael Bien
Merge branch 'master' of github.com:sgothel/jogl
Commit a2b89550a73adb8e103d13daf48abc2e37fcdedf by Michael Bien
refactored GLProfile. Removed Clonable (Profiles are unique), added hashCode(), extracted initializer.
The file was modifiedsrc/jogl/classes/javax/media/opengl/GLProfile.java (diff)
Commit 302f183c4a659be9cedb5b6993ff78e7379d9cad by Sven Gothel
NEWT Add: add<type>Listener(int index, <type>Listener l) ; get<type>Listener(int index) ; NEWTEvent attachments

NEWT Add:
    add<type>Listener(int index, <type>Listener l) ;
    get<type>Listener(int index) ;

    NEWTEvent attachments for listener to listener communication
    via object passing. This methodology is similar to the 'Atom'
    attachment of native systems.
    It is preferred to a 'consume()/isConsumed()' pattern,
    since it is less flexible and would 'endanger' system events.

TODO: <type>Listener[] get<type>Listeners() doesn't work and was always buggy.
The file was modifiedsrc/newt/classes/com/jogamp/newt/opengl/GLWindow.java (diff)
The file was modifiedsrc/newt/classes/com/jogamp/newt/event/NEWTEvent.java (diff)
The file was addedsrc/junit/com/jogamp/test/junit/newt/TestListenerCom01AWT.java (diff)
The file was addedsrc/junit/com/jogamp/test/junit/newt/WindowEventCom3.java (diff)
The file was modifiedsrc/newt/classes/com/jogamp/newt/Window.java (diff)
The file was modifiedsrc/junit/com/jogamp/test/junit/newt/TestParenting01AWT.java (diff)
The file was addedsrc/junit/com/jogamp/test/junit/newt/WindowEventCom1.java (diff)
The file was addedsrc/junit/com/jogamp/test/junit/newt/WindowEventCom2.java (diff)
Commit 856a6e9ff524692bb4e2ac7b2f754bc7fee5f849 by Sven Gothel
Merge branch 'master' of github.com:mbien/jogl
Commit c0ece5ebd634662f99f3217bb749e2c4795f9de6 by Sven Gothel
NEWT Add: add<type>Listener(int index, <type>Listener l) ; get<type>Listener(int index) ; NEWTEvent attachments

NEWT Add:
    add<type>Listener(int index, <type>Listener l) ;
    get<type>Listener(int index) ;

    NEWTEvent attachments for listener to listener communication
    via object passing. This methodology is similar to the 'Atom'
    attachment of native systems.
    It is preferred to a 'consume()/isConsumed()' pattern,
    since it is less flexible and would 'endanger' system events.

TODO: <type>Listener[] get<type>Listeners() doesn't work and was always buggy.
The file was modifiedsrc/newt/classes/com/jogamp/newt/Window.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/opengl/impl/GLDrawableHelper.java (diff)