summaryrefslogtreecommitdiffstats
path: root/src/java/com/sun/gluegen/runtime/PointerBuffer.java.javase
Commit message (Collapse)AuthorAgeFilesLines
* renamed com.sun.gluegen.runtime -> com.jogamp.gluegen.runtime.Michael Bien2010-03-271-169/+0
|
* Drop PointerBuffer.wrapNative2Java(..)Sven Gothel2010-03-191-26/+7
| | | | | | in favor of a simple PointerBuffer.wrap(..), due to the new semantics, ie internal integer/long presentation. Fixed the javame code in this regard.
* PointerBuffer supports now 32bit architectures.Michael Bien2010-01-191-15/+33
|
* fixed off-by-one bug in put and get.Michael Bien2010-01-121-3/+12
| | | | | implemented method chaining pattern. added position(int pos) method.
* Build CDC named JARs for CVM in default build, no more specialized build ↵sg2158892009-07-151-1/+1
| | | | necessary. Fix PointerBuffer allocateDirect()
* Add missing changes ..sg2158892009-07-131-7/+105
|
* Add: Extended support for CVM:sg2158892009-07-131-0/+63
- GLX, CGL, WGL - GL2ES12 desktop ES1 and ES2 common profile Add: BufferFactory: Determine the Buffer's Endianess Add: com.sun.gluegen.runtime.PointerBuffer - Solution for CDC/CVM (no LongBuffer), holds a buffer of pointer objects in native endian format and converts natively passed 32bit pointers to 64 bit. - supports a few Buffer mechanics, so the BufferFactory can easily use them. - behaves as an NIO Buffer, code generation - included a unit test Add: StructAccessor get/set long value, incl. endian check