diff options
author | Sven Gothel <[email protected]> | 2010-04-24 21:25:07 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-04-24 21:25:07 +0200 |
commit | edaf669e1b8c8412c1fd4acfc799138b629bf031 (patch) | |
tree | 53a3aa8a18d4b5c11d13be6fbd1f6ec14e92b891 /make/config/jogl/glu-CustomJavaCode-gl2.java | |
parent | 0715cdc7d978db00c15b9a79cc21af8fd466174b (diff) | |
parent | c2860b7b9b00f71625f5503122598c3e53d336b5 (diff) |
Merge branch 'master' of github.com:mbien/jogl
Diffstat (limited to 'make/config/jogl/glu-CustomJavaCode-gl2.java')
-rw-r--r-- | make/config/jogl/glu-CustomJavaCode-gl2.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/config/jogl/glu-CustomJavaCode-gl2.java b/make/config/jogl/glu-CustomJavaCode-gl2.java index 5b2a3ed89..690e0acfa 100644 --- a/make/config/jogl/glu-CustomJavaCode-gl2.java +++ b/make/config/jogl/glu-CustomJavaCode-gl2.java @@ -547,8 +547,8 @@ private static final GLUgl2ProcAddressTable getGLUProcAddressTable() { if (curContext == null) { throw new GLException("No OpenGL context current on this thread"); } - GLUgl2ProcAddressTable tmp = new GLUgl2ProcAddressTable(); - GLProcAddressHelper.resetProcAddressTable(tmp, ((GLDrawableImpl)curContext.getGLDrawable()).getDynamicLookupHelper()); + GLUgl2ProcAddressTable tmp = new GLUgl2ProcAddressTable(new GLProcAddressResolver()); + tmp.reset(((GLDrawableImpl)curContext.getGLDrawable()).getDynamicLookupHelper()); gluProcAddressTable = tmp; } return gluProcAddressTable; |