aboutsummaryrefslogtreecommitdiffstats
path: root/gl4java/GLContext.java.skel
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2001-02-14 07:38:31 +0000
committerSven Gothel <[email protected]>2001-02-14 07:38:31 +0000
commitaaad1aab82e57bc369e26f55a25b24fb77d9fd45 (patch)
tree78051e866c0f313ff5fdc48bd494f7e6eb75ec74 /gl4java/GLContext.java.skel
parentf36d363033840c84c76bf5285a252846aa9a7e96 (diff)
2.5.2.0 test2rel-2-5-2-0-test2
Diffstat (limited to 'gl4java/GLContext.java.skel')
-rw-r--r--gl4java/GLContext.java.skel41
1 files changed, 35 insertions, 6 deletions
diff --git a/gl4java/GLContext.java.skel b/gl4java/GLContext.java.skel
index 449a3b3..56750cc 100644
--- a/gl4java/GLContext.java.skel
+++ b/gl4java/GLContext.java.skel
@@ -578,7 +578,9 @@ public class GLContext extends Object
String gluLibName
)
{
+ System.out.println("GLContext.loadNativeLibraries ...");
if(libsLoaded) return true;
+ System.out.println("GLContext.loadNativeLibraries will do it !");
String libNames[] = null;
@@ -1002,9 +1004,9 @@ public class GLContext extends Object
if(gljClassDebug)
{
if(gljIsInit())
- System.out.println(">>> GLContext() succeded");
+ System.out.println("GLContext GLContext() succeded");
else
- System.out.println(">>> GLContext() failed");
+ System.out.println("GLContext GLContext() failed");
}
}
@@ -1385,6 +1387,16 @@ public class GLContext extends Object
}
/**
+ * @see gl4java.GLContext#gljDestroy
+ */
+ protected void finalize()
+ throws Throwable
+ {
+ gljDestroy();
+ super.finalize();
+ }
+
+ /**
* Used to set the user given GLFunc implementation
*/
public final void setGLFunc(GLFunc _gl) { gl = _gl; }
@@ -1552,7 +1564,7 @@ public class GLContext extends Object
try {
if(gljClassDebug)
- System.out.println(">>> createGLContext");
+ System.out.println("GLContext createGLContext");
if(pData == 0)
{
@@ -1714,7 +1726,7 @@ public class GLContext extends Object
}
if(gljClassDebug)
- System.out.println(">>> gljInit");
+ System.out.println("GLContext gljInit");
boolean ok;
@@ -1741,6 +1753,7 @@ public class GLContext extends Object
throw new GL4JavaInitException ();
} else {
isInitialized = true;
+ glEnabled=true;
glContextNumber++;
}
}
@@ -1758,6 +1771,12 @@ public class GLContext extends Object
System.exit(0);
}
+ /*
+ System.out.println("OGL create win: x="+createwinx+", y="+createwiny+
+ ", w="+createwinw+", h="+createwinh);
+ System.out.println("OGL create parent: "+pData);
+ */
+
pData = gl4java.system.GljMSJDirect.createOGLWindowNative(
pData,
createwinx,createwiny,
@@ -1900,6 +1919,8 @@ public class GLContext extends Object
public final boolean gljCheckGL()
{
+ if ( ! isInitialized || !glEnabled ) return false;
+
int ec = gl.glGetError();
if(ec!=GLFunc.GL_NO_ERROR)
@@ -2125,6 +2146,8 @@ public class GLContext extends Object
*/
public synchronized final boolean gljDestroy()
{
+ if ( ! isInitialized ) return false;
+
boolean result = true;
if (!gljDestroyNative(_comp))
@@ -2147,6 +2170,9 @@ public class GLContext extends Object
isInitialized = false;
glContextNumber--;
+ if(gljClassDebug)
+ System.out.println("GLContext destroyed (remaining ctx="+
+ glContextNumber+")");
return result;
}
@@ -2221,7 +2247,7 @@ public class GLContext extends Object
*/
public final boolean gljSwap()
{
- if ( ! isInitialized ) return false;
+ if ( ! isInitialized || !glEnabled ) return false;
return gljSwapNative( displayHandle,
windowHandle,
@@ -2239,11 +2265,14 @@ public class GLContext extends Object
* If false is given, the openGL renderer/context is
* disabled and disconected (gljFree is called, if initialized) !
*
- * If disabled, gljMakeCurrent returns always false !
+ * If disabled, all GL Functions are disabled but the
+ * Destroy & Free are not !
*
* @return boolean
*
* @see gl4java.GLContext#gljMakeCurrent
+ * @see gl4java.GLContext#gljDestroy
+ * @see gl4java.GLContext#gljFree
*/
public void setEnabled(boolean b)
{