diff options
author | sg215889 <[email protected]> | 2009-07-13 01:29:44 -0700 |
---|---|---|
committer | sg215889 <[email protected]> | 2009-07-13 01:29:44 -0700 |
commit | 558389f22d7a257e422ae50385364dcc74c4f106 (patch) | |
tree | c56820b796661a8a25d6da9dbbee8b8a9d352114 /make | |
parent | 29a8ca00f0e153ab30e756f4db1ecfa425e7e45c (diff) |
Add: Extended support for CVM:
- 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
Diffstat (limited to 'make')
-rw-r--r-- | make/make.gluegen.all.linux-x86.sh | 14 | ||||
-rw-r--r-- | make/make.gluegen.all.linux-x86_64.sh | 14 | ||||
-rw-r--r-- | make/make.gluegen.cdcfp.linux-x86.sh | 15 | ||||
-rw-r--r-- | make/make.gluegen.cdcfp.macosx.sh | 12 |
4 files changed, 55 insertions, 0 deletions
diff --git a/make/make.gluegen.all.linux-x86.sh b/make/make.gluegen.all.linux-x86.sh new file mode 100644 index 0000000..58c4215 --- /dev/null +++ b/make/make.gluegen.all.linux-x86.sh @@ -0,0 +1,14 @@ +#! /bin/sh + +. ../../setenv-build-jogl-x86.sh + +# -Dc.compiler.debug=true + +ant -v \ + -Drootrel.build=build-x86 \ + -Dgluegen.cpptasks.detected.os=true \ + -DisUnix=true \ + -DisLinux=true \ + -DisLinuxX86=true \ + -DisX11=true \ + $* 2>&1 | tee make.gluegen.all.linux-x86.log diff --git a/make/make.gluegen.all.linux-x86_64.sh b/make/make.gluegen.all.linux-x86_64.sh new file mode 100644 index 0000000..a787c57 --- /dev/null +++ b/make/make.gluegen.all.linux-x86_64.sh @@ -0,0 +1,14 @@ +#! /bin/sh + +. ../../setenv-build-jogl-x86_64.sh + +# -Dc.compiler.debug=true + +ant -v \ + -Drootrel.build=build-x86_64 \ + -Dgluegen.cpptasks.detected.os=true \ + -DisUnix=true \ + -DisLinux=true \ + -DisLinuxAMD64=true \ + -DisX11=true \ + $* 2>&1 | tee make.gluegen.all.linux-x86_64.log diff --git a/make/make.gluegen.cdcfp.linux-x86.sh b/make/make.gluegen.cdcfp.linux-x86.sh new file mode 100644 index 0000000..cc02d0f --- /dev/null +++ b/make/make.gluegen.cdcfp.linux-x86.sh @@ -0,0 +1,15 @@ +#! /bin/sh + +. ../../setenv-build-jogl-x86.sh + +# -Dc.compiler.debug=true + +ant -v \ + -DisCDCFP=true \ + -Drootrel.build=build-cdcfp-x86 \ + -Dgluegen.cpptasks.detected.os=true \ + -DisUnix=true \ + -DisLinux=true \ + -DisLinuxX86=true \ + -DisX11=true \ + $* 2>&1 | tee make.gluegen.cdcfp.linux-x86.log diff --git a/make/make.gluegen.cdcfp.macosx.sh b/make/make.gluegen.cdcfp.macosx.sh new file mode 100644 index 0000000..016cb8d --- /dev/null +++ b/make/make.gluegen.cdcfp.macosx.sh @@ -0,0 +1,12 @@ +#! /bin/sh + +if [ -e /devtools/etc/profile.ant ] ; then + . /devtools/etc/profile.ant +fi + +# -Dc.compiler.debug=true + +ant -v \ + -DisCDCFP=true \ + -Drootrel.build=build-cdcfp-macosx \ + $* 2>&1 | tee make.gluegen.cdcfp.macosx-x86.log |