aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp/opengl/egl/EGLExternalContext.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-03-01 01:13:23 +0100
committerSven Gothel <[email protected]>2011-03-01 01:13:23 +0100
commit83570ff52f67d8f0f7fe978e178bf7825041bee3 (patch)
tree5a6597b7ab86f053d674a2532c3100fd8d48b37c /src/jogl/classes/jogamp/opengl/egl/EGLExternalContext.java
parent40b45c99ad455361f97a9b1f5dd5ba9e1e019aeb (diff)
SWTAccessor: Attempt to receive the OSX cocoa NSView handle/id
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/egl/EGLExternalContext.java')
0 files changed, 0 insertions, 0 deletions
s="hl com"> * THIS SOFTWARE IS PROVIDED BY JogAmp Community ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JogAmp Community OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * The views and conclusions contained in the software and documentation are those of the * authors and should not be interpreted as representing official policies, either expressed * or implied, of JogAmp Community. */ package jogamp.opengl.egl; import java.util.ArrayList; import java.util.List; import com.jogamp.common.os.Platform; /** * <p> * Covering Desktop GL * </p> */ public final class EGLGLnDynamicLibraryBundleInfo extends EGLDynamicLibraryBundleInfo { private static final List<String> glueLibNames; static { glueLibNames = new ArrayList<String>(); glueLibNames.add("jogl_desktop"); } protected EGLGLnDynamicLibraryBundleInfo() { super(); } @Override public final List<List<String>> getToolLibNames() { final List<List<String>> libsList = new ArrayList<List<String>>(); { final List<String> libsGL = new ArrayList<String>();