diff options
author | Sven Gothel <[email protected]> | 2015-03-06 09:59:44 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-03-06 09:59:44 +0100 |
commit | 807c86913b465ce6071bc1af7ba6f8620cd5e772 (patch) | |
tree | 4f6d3fc431b0ca8237a05485d4b1605f53d13b16 /src/jogl/classes/com/jogamp/opengl | |
parent | 2d11a8f4f94947b2f478aea82d33c6934b90aafc (diff) |
Bug 1135 - Cleanup: Remove GL_NV_vertex_array_range extension support in GLContext
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/GLBase.java | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/GLBase.java b/src/jogl/classes/com/jogamp/opengl/GLBase.java index 19b7808fc..b6704e6ba 100644 --- a/src/jogl/classes/com/jogamp/opengl/GLBase.java +++ b/src/jogl/classes/com/jogamp/opengl/GLBase.java @@ -61,19 +61,11 @@ package com.jogamp.opengl; * * <UL> * - * <LI> The memory allocators for the NVidia vertex_array_range (VAR) - * extension, in particular <code>wglAllocateMemoryNV</code> / - * <code>glXAllocateMemoryNV</code> and associated routines. {@link - * #glAllocateMemoryNV} has been provided for window system-independent - * access to VAR. {@link #isFunctionAvailable} will translate an argument - * of "glAllocateMemoryNV" or "glFreeMemoryNV" into the appropriate - * window system-specific name. </P> - * * <LI> WGL_ARB_pbuffer, WGL_ARB_pixel_format, and other * platform-specific pbuffer functionality; the availability of * pbuffers can be queried on Windows, X11 and Mac OS X platforms by * querying {@link #isExtensionAvailable} with an argument of - * "GL_ARB_pbuffer" or "GL_ARB_pixel_format". + * "GL_ARB_pbuffer" or "GL_ARB_pixel_format".</LI> * * </UL> <P> * |