|
From: <sp...@us...> - 2011-12-03 11:10:51
|
Revision: 3705
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3705&view=rev
Author: spasi
Date: 2011-12-03 11:10:44 +0000 (Sat, 03 Dec 2011)
Log Message:
-----------
Fixed glTransformFeedbackAttribsNV count argument.
Modified Paths:
--------------
trunk/LWJGL/src/templates/org/lwjgl/opengl/NV_transform_feedback.java
Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/NV_transform_feedback.java
===================================================================
--- trunk/LWJGL/src/templates/org/lwjgl/opengl/NV_transform_feedback.java 2011-11-28 16:40:42 UTC (rev 3704)
+++ trunk/LWJGL/src/templates/org/lwjgl/opengl/NV_transform_feedback.java 2011-12-03 11:10:44 UTC (rev 3705)
@@ -120,7 +120,7 @@
void glBindBufferBaseNV(@GLenum int target, @GLuint int index, @GLuint int buffer);
- void glTransformFeedbackAttribsNV(@AutoSize("attribs") @GLsizei int count, @Const IntBuffer attribs, @GLenum int bufferMode);
+ void glTransformFeedbackAttribsNV(@Constant("attribs.remaining() / 3") @GLsizei int count, @Check("3") @Const IntBuffer attribs, @GLenum int bufferMode);
void glTransformFeedbackVaryingsNV(@GLuint int program, @AutoSize("locations") @GLsizei int count, @Const IntBuffer locations, @GLenum int bufferMode);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|