diff options
author | Michael Bien <[email protected]> | 2010-04-24 18:13:36 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-04-24 18:13:36 +0200 |
commit | 64b0148972c410a8f76c5f55ed866060886849a7 (patch) | |
tree | 2c4b83305268df4a1c9a2d4556c3bf1cb21ed6d2 /src/junit/com | |
parent | 734a341e4703870dc5d562099bd267aa41e850f2 (diff) |
Refactored ProcAddressTable generation.
- ProcAddressTable is now the common superclass for all tables
- Removed ProcAddressHelpers and added FunctionAddressResolver extension mechanism
Diffstat (limited to 'src/junit/com')
-rw-r--r-- | src/junit/com/jogamp/gluegen/test/junit/generation/test1p2-gluegen.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/junit/com/jogamp/gluegen/test/junit/generation/test1p2-gluegen.cfg b/src/junit/com/jogamp/gluegen/test/junit/generation/test1p2-gluegen.cfg index e5ace6e..fe6328c 100644 --- a/src/junit/com/jogamp/gluegen/test/junit/generation/test1p2-gluegen.cfg +++ b/src/junit/com/jogamp/gluegen/test/junit/generation/test1p2-gluegen.cfg @@ -29,7 +29,7 @@ Import com.jogamp.gluegen.test.junit.generation.BindingTest1p2 CustomJavaCode BindingTest1p2Impl private static BindingTest1p2ProcAddressTable _table = new BindingTest1p2ProcAddressTable(); CustomJavaCode BindingTest1p2Impl public static void resetProcAddressTable(DynamicLookupHelper lookup) { -CustomJavaCode BindingTest1p2Impl ProcAddressHelper.resetProcAddressTable(_table, lookup); +CustomJavaCode BindingTest1p2Impl _table.resetProcAddressTable(lookup); CustomJavaCode BindingTest1p2Impl } |