From 14256647c8954bb8d6d2afa88927e75783bc912b Mon Sep 17 00:00:00 2001
From: Sven Gothel <sgothel@jausoft.com>
Date: Wed, 28 Apr 2010 14:27:47 +0200
Subject: - 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.
---
 .../com/jogamp/opengl/impl/windows/wgl/WindowsWGLContext.java       | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'src/jogl/classes/com/jogamp/opengl/impl/windows/wgl')

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) {
-- 
cgit v1.2.3