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/jogamp/opengl/egl | |
parent | 2d11a8f4f94947b2f478aea82d33c6934b90aafc (diff) |
Bug 1135 - Cleanup: Remove GL_NV_vertex_array_range extension support in GLContext
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/egl')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/egl/EGLContext.java | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/jogl/classes/jogamp/opengl/egl/EGLContext.java b/src/jogl/classes/jogamp/opengl/egl/EGLContext.java index 910afcd22..9d7ad64f9 100644 --- a/src/jogl/classes/jogamp/opengl/egl/EGLContext.java +++ b/src/jogl/classes/jogamp/opengl/egl/EGLContext.java @@ -36,7 +36,6 @@ package jogamp.opengl.egl; -import java.nio.ByteBuffer; import java.nio.IntBuffer; import java.util.Map; @@ -507,14 +506,4 @@ public class EGLContext extends GLContextImpl { protected void copyImpl(final GLContext source, final int mask) throws GLException { throw new GLException("Not yet implemented"); } - - @Override - public final ByteBuffer glAllocateMemoryNV(final int size, final float readFrequency, final float writeFrequency, final float priority) { - throw new GLException("Should not call this"); - } - - @Override - public final void glFreeMemoryNV(final ByteBuffer pointer) { - throw new GLException("Should not call this"); - } } |