aboutsummaryrefslogtreecommitdiffstats
path: root/make
Commit message (Collapse)AuthorAgeFilesLines
* test scriptsSven Gothel2011-09-301-1/+5
|
* Android: Use standard launch mode; Add default actions to NewtBaseActivity; ↵Sven Gothel2011-09-302-4/+32
| | | | Add RedSquare ES1 + ES2
* scriptsSven Gothel2011-09-301-0/+4
|
* test scriptSven Gothel2011-09-301-2/+2
|
* Android/Demos: Add ElektronenMultiplizierer (fix shader and keylistener ↵Sven Gothel2011-09-285-5/+19
| | | | add/remove)
* Android: Add jogl-test manifest. APK scriptsSven Gothel2011-09-283-0/+25
|
* Android Activity Launching (jogl.test)Sven Gothel2011-09-284-28/+62
| | | | | | | | | | | | | | | | Launching activity is in: jogl.android-launcher.apk and directly derives from NewtLauncherActivity. It daisy chains apk's via ClassLoaderUtil: - gluegen-rt.apk - jogl.all-android.apk - jogl.test.apk (*) (*) This has to made configurable so the generic NewtLauncherActivity can be reused by any user application. After preparing the ClassLoader (see above), NewtLauncherActivity instanciates the configurable user Activity and passes all it's activity calls down to it.
* NEWT/OSX: Enable OSXSven Gothel2011-09-271-4/+3
|
* NEWT/OSX: 'Better' child window positioning, still, after reparenting into ↵Sven Gothel2011-09-271-2/+2
| | | | | | | | | parent, a white window rectangle remains. .. we also need to understand the absolute screen position better, ie. when required and when not (at window creation currently).
* test script ..Sven Gothel2011-09-271-4/+7
|
* NEWT/JOGL: MacOSX UpdateSven Gothel2011-09-251-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Feature related: - Added always-on-top - Added translucency - Child Window Position - AWT parent: manual traverse up the tree and calc position on screen (Problem: the parent view rect is not at the proper position, but covers the whole frame) EDTUtil related: - Works now w/ AWT ot headless (again) - OSX native JNI callbacks gathering JNIEnv properly and attaches/detaches thread. - AWT case: using AWT-Event which properly dispatches our cocoa events - MainThread (headless) case: Fork off thread w/ main class and kick off NSApp run(). This leads to same behavior as w/ AWT case. - Using DefaultEDTUtil - Cleanup MainThread (implements EDTUtil) - Currently not used as EDTUtil (osx), just as launcher - Removed EDTUtil impl code, reuse DefaultEDTUtil - Cleanup AWTEDTUtil (implements EDTUtil) - Currently not used as EDTUtil (osx)
* NativeWindow/OSX: Add nativewindow_macosx lib and nativewindow.os.macosx.jar ↵Sven Gothel2011-09-252-3/+32
| | | | for 'GetLocationOnScreen()'
* test scriptsSven Gothel2011-09-241-2/+7
|
* Use new JNILIbLoaderBase addNativeJarLibs(all, atomic) for JOGL, ↵Sven Gothel2011-09-241-2/+3
| | | | NativeWindow and NEWT; no more LD_LIB_.. in setenv.sh for test scripts
* Adding html launch type and page for new 'NApplet', using new TempJarCache ↵Sven Gothel2011-09-231-1/+1
| | | | for native libs.
* test scripts: use build/lib for JOGL native lib access (will be removed though)Sven Gothel2011-09-231-3/+10
|
* Remove native lib cg from jogl native lib jarSven Gothel2011-09-212-0/+2
|
* remove jogl.cg.jar from jogl.all*.jarSven Gothel2011-09-211-3/+2
|
* Remove obsolete WinCE .lib filesSven Gothel2011-09-216-0/+0
|
* test scriptsv2.0-rc3Sven Gothel2011-09-162-3/+4
|
* test scriptsSven Gothel2011-09-162-4/+5
|
* test scriptsSven Gothel2011-09-162-5/+6
|
* test scriptSven Gothel2011-09-151-1/+1
|
* NEWT (Manual) Test Case: Add fullscreen and alwaysOnTop at window creationSven Gothel2011-09-151-2/+2
|
* ant build: don't delete jar/lib on 'one.dir', but 'clean' onlySven Gothel2011-09-151-5/+2
|
* Minor edits: generics, test scriptSven Gothel2011-09-141-2/+2
|
* Remove duplicates in jogl.test.jar, jogl.util.jar, jogl.util.fixedfuncemu.jarSven Gothel2011-09-142-17/+9
|
* jogl test.compile post one.dir, before zip archiveSven Gothel2011-09-141-4/+4
|
* Don't generate android.jar pre default, incl atomic jar/jnlp in 7zSven Gothel2011-09-131-16/+18
|
* Promote jogl.test.jar to build/jarSven Gothel2011-09-119-10/+9
|
* disable test of NV swap group - but add explicit test case (disabled) for ↵Sven Gothel2011-09-091-5/+3
| | | | documentation purposes
* test scriptsSven Gothel2011-09-092-23/+21
|
* NEWT/ScreenMode: X11 fixes ; Ensure Screen's size is set if screenMode ↵Sven Gothel2011-09-081-2/+15
| | | | | | | | | | | | | | | | | | changed ; Enhanced tests; Catch NV/XRANDR/GL bug X11 fixes - X11Screen properly uses it's display's connection decorated in lock/unlock (for ScreenMode etc) Ensure Screen's size is set if screenMode changed - ScreenImpl's ScreenModeListener updates it's screen size so 'external' changes will be detected. Enhanced tests - Verify more data rel. ScreenMode Catch NV/XRANDR/GL bug - Read TestScreenMode01NEWT/TestScreenMode01bNEWT comments
* test scriptsSven Gothel2011-09-072-7/+8
|
* test scriptsSven Gothel2011-09-063-15/+18
|
* Complete translucency support for Win32 - tested w/ NEWTSven Gothel2011-09-047-6/+50
| | | | | | | https://jogamp.org/bugzilla/show_bug.cgi?id=517 - Adding some Windows DWM entries to GDI (manual) for translucency support - Add translucency setting in WindowsWGLGraphicsConfiguration*
* test script ..Sven Gothel2011-09-031-1/+1
|
* Complete translucency support (core w/ X11 (only) - tested w/ NEWT)Sven Gothel2011-09-031-2/+3
| | | | | | | | | | | | | | | | | DefaultGLCapabilitiesChooser: - Add penalty for opaque mismatch: dbl-buf > opaq > stencil GLGraphicsConfigurationFactory: - Case no-chooser && has-recommended-idx: - Only use recommended index if caps is opaque, otherwise use default chooser to validate translucency NativeWindow Capabilities: - transparent default values -> 0 Added NEWT Test: TestTranslucencyNEWT Added command line translucency/undecorated options for TestGearsES2NEWT
* NativeWindow X11: Add DSO Xrender dependencySven Gothel2011-09-031-0/+6
|
* Fix XRenderFindVisualFormat return capacity (commit ↵Sven Gothel2011-09-031-1/+1
| | | | dcb0cc571298be90d0db7ad00fef835fe5fdc46d)
* NativeWindow/X11: Add XVisualInfo.Visual opaque long access ; Add ↵Sven Gothel2011-09-033-0/+49
| | | | XRenderFindVisualFormat for translucent window config
* test scripts ..Sven Gothel2011-09-013-5/+9
|
* TestScreenMode01NEWT: Validate window size after FS toggleSven Gothel2011-09-011-3/+3
|
* test scriptSven Gothel2011-09-011-5/+5
|
* test script ..Sven Gothel2011-08-311-3/+5
|
* TestFocus01SwingAWTRobot: Run AWT destruction on AWT-EDTSven Gothel2011-08-301-8/+4
|
* Cont w/ 5a7811ecd23a3ab1af62b243c82d362431793a57: test-x*.shSven Gothel2011-08-302-4/+11
|
* Use GlueGen's setenv-build-jogl scripts from commit ↵Sven Gothel2011-08-304-29/+15
| | | | 4a75b64107e157ff1db3991cf89bf8d856ddc0e6
* Proper classpath for all javah commands, using 'rootrel.build'Sven Gothel2011-08-303-23/+29
|
* Merge remote-tracking branch 'remotes/wwalker/bug_512_no_build_with_Java_7'Sven Gothel2011-08-302-2/+2
|\