diff options
author | Kenneth Russel <[email protected]> | 2005-12-21 23:32:38 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2005-12-21 23:32:38 +0000 |
commit | 4d1216921e546cb9c38a9ace5d8d99a61385ca44 (patch) | |
tree | bb1f30887fc9294df8cbe81b20cab40d54e98dc2 /make/gl-win32.cfg | |
parent | 17b304bac231962835f93e62d72b707bc423446c (diff) |
Refactored glue code generation for APIs requiring run-time lookup of
individual function pointers into generic ProcAddressEmitter. Removed
all OpenGL-specific routines and names from this emitter. The new
ProcAddressConfiguration is more generic than the GLConfiguration and
supports mostly-arbitrary mappings from function names to function
pointer typedefs via the new ProcAddressNameExpr directive. Refactored
GLEmitter into thin layer on top of this ProcAddressEmitter providing
only ignoring of extensions and checking for buffer object variants of
functions. Made GLConfiguration a stand-alone class. Deleted
ContextVariableName directive in favor of more generic
GetProcAddressTableExpr command. Moved resetting of generated
ProcAddressTables into GlueGen runtime class ProcAddressHelper; user
provides the dynamic lookup function (dlsym, etc.) through new
DynamicLookupHelper interface. Fixed bug in generation of Java
epilogues for routines returning primitive values. Fixed bugs in
AccessControl directive, in particular when generating interfaces.
Made small changes to autogenerated comments for routines called
through function pointers.
These changes do not impact the public API of JOGL -- this has been
verified by examining diffs between the current and new autogenerated
code. They do make the GlueGen tool more generic and allow it to be
easily applied to the task of autogenerating the JOAL API and
implementation as well. Also verified by running JOGL demos and JOAL
demos in new JOAL workspace.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@500 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make/gl-win32.cfg')
-rw-r--r-- | make/gl-win32.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/gl-win32.cfg b/make/gl-win32.cfg index 950d67320..978b624c1 100644 --- a/make/gl-win32.cfg +++ b/make/gl-win32.cfg @@ -8,7 +8,7 @@ Include gl-common-win32.cfg EmitProcAddressTable true ProcAddressTableClassName GLProcAddressTable -ContextVariableName _context +GetProcAddressTableExpr _context.getGLProcAddressTable() CustomCCode #define WIN32_LEAN_AND_MEAN CustomCCode #include <windows.h> |