summaryrefslogtreecommitdiffstats
path: root/src/native/common/PointerBuffer.c
Commit message (Collapse)AuthorAgeFilesLines
* remove warningsSven Gothel2011-06-101-1/+3
|
* Fix C / JNI compilation: Add/use javah, recompile if out of date,Sven Gothel2011-06-071-0/+2
|
* introduced com.jogamp.common.{nio,os} packages and moved some classes.Michael Bien2010-03-311-1/+1
|
* http://www.jogamp.org/bugzilla/show_bug.cgi?id=392Sven Gothel2010-03-301-0/+10
32bit/64bit values and arrays are misrepresented - PointerBuffer: Adding methods PointeRBuffer referenceBuffer(int index, Buffer data) PointeRBuffer referenceBuffer(Buffer data) Buffer getReferencedBuffer(int index) Buffer getReferencedBuffer() Adding a reference of a given direct Buffer to this pointer buffer, and retrieving a previously referenced direct Buffer. This allows a more convenient handling of PointerBuffer with the user API's ..