diff options
author | Kenneth Russel <[email protected]> | 2005-12-31 18:21:26 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2005-12-31 18:21:26 +0000 |
commit | 5032e7686b7acd5db0d55920d6d8b8604661efa4 (patch) | |
tree | 64c2b1092565cfe5421aee7662c01960b2fb7214 /make | |
parent | be22527200af0c94d1e2550fbeace2c6c7ab171e (diff) |
Fixed bugs in struct layout introduced during recent rewrite to
support simultaneous 32/64-bit struct accessor generation. Generated
code has been validated on 64-bit platforms only by visual inspection
so far but now appears correct. Tested and verified 32-bit build on
Windows. Reorganized build process to generate JAWT interface later to
allow cross-platform testing of generation of window system-specific
code.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@504 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make')
-rw-r--r-- | make/build.xml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/make/build.xml b/make/build.xml index 531c4ceb0..55ad448e6 100644 --- a/make/build.xml +++ b/make/build.xml @@ -491,6 +491,15 @@ <classpath refid="gen.classpath" /> </gluegen> + <!-- Generate WGL/GLX/CGL implementation class --> + <echo message="Generating WGL/GLX/CGL implementation class" /> + <gluegen src="${stub.includes.platform}/window-system.c" + config="${window.cfg}" + includeRefid="stub.includes.fileset.platform" + emitter="com.sun.gluegen.opengl.GLEmitter"> + <classpath refid="gen.classpath" /> + </gluegen> + <!-- Generate JAWT class --> <!-- NOTE: the "literalInclude" in this GlueGen call is simply to - get around the fact that neither FileSet nor DirSet can @@ -506,15 +515,6 @@ <classpath refid="gen.classpath" /> </gluegen> - <!-- Generate WGL/GLX/CGL implementation class --> - <echo message="Generating WGL/GLX/CGL implementation class" /> - <gluegen src="${stub.includes.platform}/window-system.c" - config="${window.cfg}" - includeRefid="stub.includes.fileset.platform" - emitter="com.sun.gluegen.opengl.GLEmitter"> - <classpath refid="gen.classpath" /> - </gluegen> - <!-- Generate StaticGLInfo class --> <echo message="Generating StaticGLInfo class" /> <staticglgen package="com.sun.opengl.impl" |