From 807c86913b465ce6071bc1af7ba6f8620cd5e772 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Fri, 6 Mar 2015 09:59:44 +0100 Subject: Bug 1135 - Cleanup: Remove GL_NV_vertex_array_range extension support in GLContext --- src/jogl/classes/jogamp/opengl/GLContextImpl.java | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) (limited to 'src/jogl/classes/jogamp/opengl/GLContextImpl.java') diff --git a/src/jogl/classes/jogamp/opengl/GLContextImpl.java b/src/jogl/classes/jogamp/opengl/GLContextImpl.java index 1ff64725a..928ed0284 100644 --- a/src/jogl/classes/jogamp/opengl/GLContextImpl.java +++ b/src/jogl/classes/jogamp/opengl/GLContextImpl.java @@ -1315,27 +1315,8 @@ public abstract class GLContextImpl extends GLContext { */ public abstract ProcAddressTable getPlatformExtProcAddressTable(); - /** - * Part of GL_NV_vertex_array_range. - *

- * Provides platform-independent access to the wglAllocateMemoryNV / - * glXAllocateMemoryNV. - *

- */ - public abstract ByteBuffer glAllocateMemoryNV(int size, float readFrequency, float writeFrequency, float priority); - - /** - * Part of GL_NV_vertex_array_range. - *

- * Provides platform-independent access to the wglFreeMemoryNV / - * glXFreeMemoryNV. - *

- */ - public abstract void glFreeMemoryNV(ByteBuffer pointer); - /** Maps the given "platform-independent" function name to a real function - name. Currently this is only used to map "glAllocateMemoryNV" and - associated routines to wglAllocateMemoryNV / glXAllocateMemoryNV. */ + name. Currently not used. */ protected final String mapToRealGLFunctionName(final String glFunctionName) { final Map map = getFunctionNameMap(); final String lookup = ( null != map ) ? map.get(glFunctionName) : null; -- cgit v1.2.3