diff options
author | Sven Gothel <[email protected]> | 2010-10-29 03:30:25 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-10-29 03:30:25 +0200 |
commit | ef8da46af8ef42d04b9f0701f0d18e1277765d01 (patch) | |
tree | c5fd779e20de84de544669ef381c4756007a494d /src/jogl/classes/com/jogamp/opengl/impl/egl | |
parent | be82dc62e22bbbb76acd7af889908a272bda6d09 (diff) |
Promoted the shutdown hook from GLDrawableFactoryImpl to GLProfile.
Each GLDrawableFactory implementation provides a shutdownInstance() method,
issued by GLProfile.
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl/impl/egl')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/impl/egl/EGLDrawableFactory.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/impl/egl/EGLDrawableFactory.java b/src/jogl/classes/com/jogamp/opengl/impl/egl/EGLDrawableFactory.java index 83e85b922..deb659ddf 100644 --- a/src/jogl/classes/com/jogamp/opengl/impl/egl/EGLDrawableFactory.java +++ b/src/jogl/classes/com/jogamp/opengl/impl/egl/EGLDrawableFactory.java @@ -111,7 +111,7 @@ public class EGLDrawableFactory extends GLDrawableFactoryImpl { } } - protected void shutdown() {} + protected void shutdownInstance() {} protected final GLDrawableImpl getSharedDrawable() { return null; } protected final GLContextImpl getSharedContext() { return null; } |