diff options
author | Sven Gothel <[email protected]> | 2010-04-28 14:27:47 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-04-28 14:27:47 +0200 |
commit | 14256647c8954bb8d6d2afa88927e75783bc912b (patch) | |
tree | 54b2eb74000f410ade6d55e4739088d3df281f38 /src | |
parent | 3dfb97a57bf1116c44709c50cbb9d0628967fd52 (diff) |
- JAR Manifest: Trusted-Library: true
- Added JAR Manifest to native libs as well,
otherwise our chain would become mixed code.
- JNLP: Set JogAmp community as vendor ..
- JOGL Windows hack: WindowsWGLContext.java
- temporary removed the ARB CreateContext path
for Windows, due to a bug in this implementation.
Diffstat (limited to 'src')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/impl/windows/wgl/WindowsWGLContext.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/impl/windows/wgl/WindowsWGLContext.java b/src/jogl/classes/com/jogamp/opengl/impl/windows/wgl/WindowsWGLContext.java index e0a255ad9..266868d69 100644 --- a/src/jogl/classes/com/jogamp/opengl/impl/windows/wgl/WindowsWGLContext.java +++ b/src/jogl/classes/com/jogamp/opengl/impl/windows/wgl/WindowsWGLContext.java @@ -219,7 +219,7 @@ public class WindowsWGLContext extends GLContextImpl { boolean createContextARBTried = false; // utilize the shared context's GLXExt in case it was using the ARB method and it already exists - if(null!=factory.getSharedContext() && factory.getSharedContext().isCreatedWithARBMethod()) { + if(false && null!=factory.getSharedContext() && factory.getSharedContext().isCreatedWithARBMethod()) { // FIXME JAU if(DEBUG) { System.err.println("WindowsWGLContext.createContext using shared Context: "+factory.getSharedContext()); } @@ -253,8 +253,8 @@ public class WindowsWGLContext extends GLContextImpl { hglrc = temp_hglrc; return; } - hglrc = createContextARB(share, true, major, minor, ctp); - createContextARBTried=true; + // FIXME JAU hglrc = createContextARB(share, true, major, minor, ctp); + // FIXME JAU createContextARBTried=true; } if(0!=hglrc) { |