From d9fe5c4aee7547bb89571c19c89ad173b63a4598 Mon Sep 17 00:00:00 2001
From: Sven Gothel
Date: Thu, 12 Mar 2015 13:18:02 +0100
Subject: Fix API Doc: GLBufferObjectTracker / GLBufferStorage
---
.../classes/com/jogamp/opengl/GLBufferStorage.java | 19 +++++++++++++------
1 file changed, 13 insertions(+), 6 deletions(-)
(limited to 'src/jogl/classes/com/jogamp')
diff --git a/src/jogl/classes/com/jogamp/opengl/GLBufferStorage.java b/src/jogl/classes/com/jogamp/opengl/GLBufferStorage.java
index 35ecf8799..d027e36d7 100644
--- a/src/jogl/classes/com/jogamp/opengl/GLBufferStorage.java
+++ b/src/jogl/classes/com/jogamp/opengl/GLBufferStorage.java
@@ -42,7 +42,8 @@ import java.nio.IntBuffer;
* Buffer storage is created via:
*
* - {@link GL#glBufferData(int, long, java.nio.Buffer, int)} - storage creation via target
- * - {@link GL2#glNamedBufferData(int, long, java.nio.Buffer, int)} - storage creation, direct
+ * - {@link GL2#glNamedBufferDataEXT(int, long, java.nio.Buffer, int)} - storage creation, direct
+ * - {@link GL4#glNamedBufferData(int, long, java.nio.Buffer, int)} - storage creation, direct
* - {@link GL4#glBufferStorage(int, long, Buffer, int)} - storage creation via target
* - {@link GL4#glNamedBufferStorage(int, long, Buffer, int)} - storage creation, direct
*
@@ -54,7 +55,8 @@ import java.nio.IntBuffer;
*
* - {@link GL#glDeleteBuffers(int, IntBuffer)} - explicit, direct, via {@link #notifyBuffersDeleted(int, IntBuffer)} or {@link #notifyBuffersDeleted(int, int[], int)}
* - {@link GL#glBufferData(int, long, java.nio.Buffer, int)} - storage recreation via target
- * - {@link GL2#glNamedBufferData(int, long, java.nio.Buffer, int)} - storage recreation, direct
+ * - {@link GL2#glNamedBufferDataEXT(int, long, java.nio.Buffer, int)} - storage recreation, direct
+ * - {@link GL4#glNamedBufferData(int, long, java.nio.Buffer, int)} - storage recreation, direct
* - {@link GL4#glBufferStorage(int, long, Buffer, int)} - storage recreation via target
* - {@link GL4#glNamedBufferStorage(int, long, Buffer, int)} - storage recreation, direct
*
@@ -62,21 +64,26 @@ import java.nio.IntBuffer;
*
* GL buffer storage is mapped via
*
- *
* - {@link GL#mapBuffer(int, int)}
* - {@link GL#mapBufferRange(int, long, long, int)}
- * - {@link GL2#mapNamedBuffer(int, int)}
- * - {@link GL2#mapNamedBufferRange(int, long, long, int)}
+ * - {@link GL2#mapNamedBufferEXT(int, int)}
+ * - {@link GL2#mapNamedBufferRangeEXT(int, long, long, int)}
+ * - {@link GL4#mapNamedBuffer(int, int)}
+ * - {@link GL4#mapNamedBufferRange(int, long, long, int)}
*
*
*
* GL buffer storage is unmapped via
*
+ * - {@link GL#glDeleteBuffers(int, IntBuffer)} - buffer deletion
* - {@link GL#glUnmapBuffer(int)} - explicit via target
* - {@link GL2#glUnmapNamedBufferEXT(int)} - explicit direct
+ * - {@link GL4#glUnmapNamedBuffer(int)} - explicit direct
* - {@link GL#glBufferData(int, long, java.nio.Buffer, int)} - storage recreation via target
* - {@link GL2#glNamedBufferDataEXT(int, long, java.nio.Buffer, int)} - storage recreation, direct
- * - {@link GL#glDeleteBuffers(int, IntBuffer)} - buffer deletion
+ * - {@link GL4#glNamedBufferData(int, long, java.nio.Buffer, int)} - storage recreation, direct
+ * - {@link GL4#glBufferStorage(int, long, Buffer, int)} - storage creation via target
+ * - {@link GL4#glNamedBufferStorage(int, long, Buffer, int)} - storage creation, direct
*
*
*/
--
cgit v1.2.3