diff options
author | Sven Gothel <sgothel@jausoft.com> | 2011-07-31 20:37:39 +0200 |
---|---|---|
committer | Sven Gothel <sgothel@jausoft.com> | 2011-07-31 20:37:39 +0200 |
commit | d15b941d707bc286d0c33a1ead9464028e9a6c37 (patch) | |
tree | 9e1fb12abfae5b0b15486129772fbef56d509012 /src/jogl/classes/jogamp/opengl/x11/glx/X11GLXDrawableFactory.java | |
parent | 502c51bc5a549a79d03249863261af59aedeaeb3 (diff) |
GLProfile usage getMinDesktop() -> getMinimum(); WGL/X11 GLCaps: make attributes final
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/x11/glx/X11GLXDrawableFactory.java')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/x11/glx/X11GLXDrawableFactory.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/jogamp/opengl/x11/glx/X11GLXDrawableFactory.java b/src/jogl/classes/jogamp/opengl/x11/glx/X11GLXDrawableFactory.java index 48f9dd875..872503b36 100644 --- a/src/jogl/classes/jogamp/opengl/x11/glx/X11GLXDrawableFactory.java +++ b/src/jogl/classes/jogamp/opengl/x11/glx/X11GLXDrawableFactory.java @@ -181,7 +181,7 @@ public class X11GLXDrawableFactory extends GLDrawableFactoryImpl { if (null == sharedScreen) { throw new GLException("Couldn't create shared screen for device: "+sharedDevice+", idx 0"); } - GLProfile glp = GLProfile.getMinDesktop(sharedDevice); + GLProfile glp = GLProfile.getMinimum(sharedDevice); if (null == glp) { throw new GLException("Couldn't get default GLProfile for device: "+sharedDevice); } |