From 424a8617324911d71461c411847b6323d53ec0ed Mon Sep 17 00:00:00 2001
From: Sven Gothel <sgothel@jausoft.com>
Date: Mon, 5 Oct 2015 06:28:54 +0200
Subject: GLContextImpl: clarify surfacelessOK -> isSurfaceless

---
 src/jogl/classes/jogamp/opengl/GLContextImpl.java            | 12 ++++++------
 .../classes/jogamp/opengl/macosx/cgl/MacOSXCGLContext.java   |  2 +-
 2 files changed, 7 insertions(+), 7 deletions(-)

(limited to 'src/jogl')

diff --git a/src/jogl/classes/jogamp/opengl/GLContextImpl.java b/src/jogl/classes/jogamp/opengl/GLContextImpl.java
index 3d2c9a3e1..a5d8f609c 100644
--- a/src/jogl/classes/jogamp/opengl/GLContextImpl.java
+++ b/src/jogl/classes/jogamp/opengl/GLContextImpl.java
@@ -129,7 +129,7 @@ public abstract class GLContextImpl extends GLContext {
    * If GL >= 3.0 (ES or desktop) and not having {@link GLRendererQuirks#NoSurfacelessCtx},
    * being evaluated if not surface-handle is null and not yet set at makeCurrent(..).
    */
-  private boolean surfacelessOK = false;
+  private boolean isSurfaceless = false;
 
   private boolean pixelDataEvaluated;
   private int /* pixelDataInternalFormat, */ pixelDataFormat, pixelDataType;
@@ -212,7 +212,7 @@ public abstract class GLContextImpl extends GLContext {
           boundFBOTarget[1] = 0; // read
       }
 
-      surfacelessOK = false;
+      isSurfaceless = false;
       pixelDataEvaluated = false;
       currentSwapInterval = 0;
 
@@ -542,7 +542,7 @@ public abstract class GLContextImpl extends GLContext {
   //----------------------------------------------------------------------
   //
 
-  protected final boolean isSurfacelessOK() { return surfacelessOK; }
+  protected final boolean isSurfaceless() { return isSurfaceless; }
 
   /**
    * {@inheritDoc}
@@ -613,7 +613,7 @@ public abstract class GLContextImpl extends GLContext {
         if ( drawable.isRealized() ) {
             lock.lock();
             try {
-                if ( 0 == drawable.getHandle() && !surfacelessOK ) {
+                if ( 0 == drawable.getHandle() && !isSurfaceless ) {
                     if( DEBUG ) {
                         System.err.println(getThreadName() +": GLContext.makeCurrent: Surfaceless evaluate");
                     }
@@ -677,7 +677,7 @@ public abstract class GLContextImpl extends GLContext {
     }
 
     if ( CONTEXT_NOT_CURRENT != res ) { // still locked!
-      if( 0 == drawable.getHandle() && !surfacelessOK ) {
+      if( 0 == drawable.getHandle() && !isSurfaceless ) {
           if( hasRendererQuirk(GLRendererQuirks.NoSurfacelessCtx) ) {
               throw new GLException(String.format("Surfaceless not supported due to quirk %s: %s",
                       GLRendererQuirks.toString(GLRendererQuirks.NoSurfacelessCtx), toString()));
@@ -685,7 +685,7 @@ public abstract class GLContextImpl extends GLContext {
           if( DEBUG ) {
               System.err.println(getThreadName() +": GLContext.makeCurrent: Surfaceless OK - validated");
           }
-          surfacelessOK = true;
+          isSurfaceless = true;
       }
       setCurrent(this);
       if( CONTEXT_CURRENT_NEW == res ) {
diff --git a/src/jogl/classes/jogamp/opengl/macosx/cgl/MacOSXCGLContext.java b/src/jogl/classes/jogamp/opengl/macosx/cgl/MacOSXCGLContext.java
index 5097b21aa..995ff870e 100644
--- a/src/jogl/classes/jogamp/opengl/macosx/cgl/MacOSXCGLContext.java
+++ b/src/jogl/classes/jogamp/opengl/macosx/cgl/MacOSXCGLContext.java
@@ -576,7 +576,7 @@ public class MacOSXCGLContext extends GLContextImpl
                   nsViewHandle = OSXUtil.GetNSView(drawableHandle);
               } else if( isPBuffer[0] ) {
                   nsViewHandle = 0;
-              } else if( isSurfacelessOK() ) {
+              } else if( isSurfaceless() ) {
                   isSurfaceless[0] = true;
                   nsViewHandle = 0;
               } else {
-- 
cgit v1.2.3