diff options
author | Sven Gothel <[email protected]> | 2011-08-01 15:17:20 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-08-01 15:17:20 +0200 |
commit | cb2c6e42963a018bdb73b55d4964c8abca7569d1 (patch) | |
tree | 61121ea4d816d35c4def0b8ffd7b78f6607be631 /src/jogl/classes/jogamp/opengl/egl/EGLDrawable.java | |
parent | 4d33a2df1e991ab75817dcb44061d88d3c499cdb (diff) |
Refine some DEBUG code (verbosity)
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/egl/EGLDrawable.java')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/egl/EGLDrawable.java | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/jogl/classes/jogamp/opengl/egl/EGLDrawable.java b/src/jogl/classes/jogamp/opengl/egl/EGLDrawable.java index 6c4bb00ab..3cc273966 100644 --- a/src/jogl/classes/jogamp/opengl/egl/EGLDrawable.java +++ b/src/jogl/classes/jogamp/opengl/egl/EGLDrawable.java @@ -103,7 +103,7 @@ public abstract class EGLDrawable extends GLDrawableImpl { AbstractGraphicsDevice aDevice = aConfig.getScreen().getDevice(); if(aDevice instanceof EGLGraphicsDevice) { if(DEBUG) { - System.err.println("EGLDrawable.setRealized: using existing EGL config: "+this); + System.err.println("EGLDrawable.setRealized: using existing EGL config - START"); } // just fetch the data .. trust but verify .. eglDisplay = aDevice.getHandle(); @@ -135,9 +135,12 @@ public abstract class EGLDrawable extends GLDrawableImpl { } else { throw new GLException("EGLGraphicsDevice hold by non EGLGraphicsConfiguration: "+aConfig); } + if(DEBUG) { + System.err.println("EGLDrawable.setRealized: using existing EGL config - END: "+this); + } } else { if(DEBUG) { - System.err.println("EGLDrawable.setRealized: creating new EGL config: "+this); + System.err.println("EGLDrawable.setRealized: creating new EGL config - START"); } // create a new EGL config .. ownEGLDisplay=true; @@ -169,8 +172,8 @@ public abstract class EGLDrawable extends GLDrawableImpl { EGLGraphicsDevice e = new EGLGraphicsDevice(eglDisplay, AbstractGraphicsDevice.DEFAULT_CONNECTION, AbstractGraphicsDevice.DEFAULT_UNIT); DefaultGraphicsScreen s = new DefaultGraphicsScreen(e, aConfig.getScreen().getIndex()); // yes, use the already chosen/requested Capabilities (x11,win32,..) - GLCapabilitiesImmutable capsChosen = (GLCapabilitiesImmutable) aConfig.getChosenCapabilities(); - GLCapabilitiesImmutable capsRequested = (GLCapabilitiesImmutable) aConfig.getRequestedCapabilities(); + final GLCapabilitiesImmutable capsRequested = (GLCapabilitiesImmutable) aConfig.getRequestedCapabilities(); + final GLCapabilitiesImmutable capsChosen = (GLCapabilitiesImmutable) aConfig.getChosenCapabilities(); eglConfig = (EGLGraphicsConfiguration) GraphicsConfigurationFactory.getFactory(e).chooseGraphicsConfiguration( capsChosen, capsRequested, null, s); if (null == eglConfig) { @@ -179,6 +182,9 @@ public abstract class EGLDrawable extends GLDrawableImpl { System.err.println("Chosen eglConfig: "+eglConfig); } recreateSurface(); + if(DEBUG) { + System.err.println("EGLDrawable.setRealized: creating new EGL config - END: "+this); + } } } else if (ownEGLSurface && eglSurface != EGL.EGL_NO_SURFACE) { // Destroy the window surface |