aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/com/sun/gluegen/runtime/PointerBuffer.java.javase
Commit message (Collapse)AuthorAgeFilesLines
* 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