From: <eli...@us...> - 2006-12-21 08:10:25
|
Revision: 2702 http://svn.sourceforge.net/java-game-lib/?rev=2702&view=rev Author: elias_naur Date: 2006-12-21 00:10:23 -0800 (Thu, 21 Dec 2006) Log Message: ----------- Update javadoc for glMapBuffer Modified Paths: -------------- trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_buffer_object.java trunk/LWJGL/src/templates/org/lwjgl/opengl/GL15.java Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_buffer_object.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_buffer_object.java 2006-12-20 19:24:25 UTC (rev 2701) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/ARB_buffer_object.java 2006-12-21 08:10:23 UTC (rev 2702) @@ -109,7 +109,6 @@ * <p/> * ByteBuffer mapped_buffer; mapped_buffer = glMapBufferARB(..., ..., ..., null); ... // Another map on the same buffer mapped_buffer = glMapBufferARB(..., ..., ..., mapped_buffer); * - * @param result_size The size of the buffer area. * @param old_buffer A ByteBuffer. If this argument points to the same address and has the same capacity as the new mapping, it will be returned and no new buffer will be created. * * @return A ByteBuffer representing the mapped buffer memory. Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/GL15.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/GL15.java 2006-12-20 19:24:25 UTC (rev 2701) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/GL15.java 2006-12-21 08:10:23 UTC (rev 2702) @@ -115,7 +115,6 @@ * ByteBuffer mapped_buffer; mapped_buffer = glMapBuffer(..., ..., ..., null); ... // Another map on the same buffer * mapped_buffer = glMapBuffer(..., ..., ..., mapped_buffer); * - * @param result_size The size of the buffer area. * @param old_buffer A ByteBuffer. If this argument points to the same address and has the same capacity as the new mapping, it will be returned and no * new buffer will be created. * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |