aboutsummaryrefslogtreecommitdiffstats
path: root/src/native
Commit message (Collapse)AuthorAgeFilesLines
* Add support for clangSven Gothel2013-09-131-0/+1
|
* Remove system dependency of intptr_t and uint64_t.Xerxes Rånby2013-01-291-9/+0
| | | | Signed-off-by: Xerxes Rånby <[email protected]>
* Bug 567 (part 1): add support for openal extensionsMichael Zucchi2013-01-251-1/+1
| | | | | | | Imported JOAL specific parts from the patch made by Michael Zucchi. Author: Michael Zucchi <[email protected]> Signed-off-by: Xerxes Rånby <[email protected]>
* Move implementation private files from com.jogamp.<module>.impl. to ↵Sven Gothel2011-02-091-4/+4
| | | | | | | | | | | | jogamp.<module> (2/2) - edit files - jogamp.openal -> jogamp.openal This sorts implementation details from the top level, ie skipping the public 'com', allowing a better seperation of public classes and implementation details and also reduces strings. This approach of public/private seperation is also used in the OpenJDK.
* Bring back JOAL (code fixes and project structure)Sven Gothel2010-12-131-0/+71
| | | | | | | | | | | | | | | - Use GlueGen DynamicLibraryBundle - Fix alGetString - Proper test/junit structure - NB project fix - add artifacts.properties and jar's manifest - proper ZIP file structure TODO: - check on windows and osx - actually hear a sound - add jnlp file template - joal-demos
* Changed NativeLibrary.open() to accept boolean argument indicatingkbr2006-08-271-6/+21
| | | | | | | | | | | | | | | | | whether to search the system path first; perhaps useful if applications ship only a backup version of native libraries associated with a particular Java binding. In the case of JOAL we plan to ship a recent OpenAL implementation so we will not need to search the system path first. Changed ForceProcAddressGen directive to force call-through-function-pointer semantics for the targeted function. Changed JOAL to not link directly against the OpenAL library at all, but instead to look up all entry points using the GlueGen NativeLibrary class (instead of the custom dlsym code, now removed) in particular to solve DSO versioning problems on Linux. Updated EAX binding to work with dynamically loading OpenAL. Tested on Windows so far; more testing needed on Linux in Java Web Start scenarios. git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@269 03bf7f67-59de-4072-a415-9a990d468a3f
* Merged gluegen-branch-1-0 on to the main JOAL trunk. JOAL is now builtkbr2006-01-1013-2983/+8
| | | | | | | | using GlueGen and currently requires a built JOGL workspace as a sibling workspace of the JOAL workspace. git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@101 03bf7f67-59de-4072-a415-9a990d468a3f
* Issue 5athomas2004-08-161-2/+2
| | | | | | | fixed incorrect reference in EAX binding git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@94 03bf7f67-59de-4072-a415-9a990d468a3f
* slight change based on web search of error we're seeing.athomas2003-12-091-2/+2
| | | | git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@83 03bf7f67-59de-4072-a415-9a990d468a3f
* Added not conditional for isUnix since OSX is part of the osFamily unix and ↵gregorypierce2003-11-231-1/+6
| | | | | | | | | | | | | this would result in the Unix/Linux version of OpenAL being built and throwing errors. With this change, the OSX version builds and runs properly (though not without some warnings from the C compile). Issue number: Obtained from: Submitted by: Gregory Pierce Reviewed by: git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@74 03bf7f67-59de-4072-a415-9a990d468a3f
* merged mac osx build fileathomas2003-11-231-3/+18
| | | | git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@73 03bf7f67-59de-4072-a415-9a990d468a3f
* Several changes, uses newest lwjgl extal, throws exceptions from native code ↵athomas2003-11-238-279/+552
| | | | | | if AL doesn't load correctly and creates Context and Device objects in Native code. git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@69 03bf7f67-59de-4072-a415-9a990d468a3f
* updated navbarathomas2003-11-223-19/+41
| | | | git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@63 03bf7f67-59de-4072-a415-9a990d468a3f
* Simplified alcOpenDeviceNative a littleathomas2003-11-191-11/+8
| | | | git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@61 03bf7f67-59de-4072-a415-9a990d468a3f
* Removed a redundant call to alcOpenDevice, Eliminated a call to ↵athomas2003-11-191-4/+18
| | | | | | ReleaseStringUTFChars in the event that null is passed in and added some instrumentation printouts to try to figure out what's causing this crash on people's systems (and not mine!) git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@60 03bf7f67-59de-4072-a415-9a990d468a3f
* Proper handling of nulll parameter in alcOpenDevice() Somehow managed to ↵athomas2003-11-181-1/+1
| | | | | | undo (or not save) a recent fix before checking in the file. The fix should be in now. git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@59 03bf7f67-59de-4072-a415-9a990d468a3f
* Proper handling of null in alcOpenDeviceathomas2003-11-181-2/+4
| | | | git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@58 03bf7f67-59de-4072-a415-9a990d468a3f
* added support for compiling under Linuxathomas2003-07-083-15/+42
| | | | git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@46 03bf7f67-59de-4072-a415-9a990d468a3f
* Initial check-in of project filesathomas2003-06-0713-0/+2882
git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@21 03bf7f67-59de-4072-a415-9a990d468a3f