From: <sp...@us...> - 2012-06-29 10:25:47
|
Revision: 3781 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3781&view=rev Author: spasi Date: 2012-06-29 10:25:36 +0000 (Fri, 29 Jun 2012) Log Message: ----------- Removed @Constant("0") from pathBase parameters. Modified Paths: -------------- trunk/LWJGL/src/templates/org/lwjgl/opengl/NV_path_rendering.java Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/NV_path_rendering.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/NV_path_rendering.java 2012-06-19 10:44:02 UTC (rev 3780) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/NV_path_rendering.java 2012-06-29 10:25:36 UTC (rev 3781) @@ -373,14 +373,14 @@ void glStencilFillPathInstancedNV(@AutoSize(value="paths", expression = " / GLChecks.calculateBytesPerPathName(pathNameType)") @GLsizei int numPaths, @GLenum int pathNameType, @Const @GLvoid ByteBuffer paths, - @Constant("0") @GLuint int pathBase, + @GLuint int pathBase, @GLenum int fillMode, @GLuint int mask, @GLenum int transformType, @Check(value = "GLChecks.calculateTransformPathValues(transformType)", canBeNull = true) @Const FloatBuffer transformValues); void glStencilStrokePathInstancedNV(@AutoSize(value = "paths", expression = " / GLChecks.calculateBytesPerPathName(pathNameType)") @GLsizei int numPaths, @GLenum int pathNameType, @Const @GLvoid ByteBuffer paths, - @Constant("0") @GLuint int pathBase, + @GLuint int pathBase, int reference, @GLuint int mask, @GLenum int transformType, @Check(value = "GLChecks.calculateTransformPathValues(transformType)", canBeNull = true) @Const FloatBuffer transformValues); @@ -405,14 +405,14 @@ void glCoverFillPathInstancedNV(@AutoSize(value = "paths", expression = " / GLChecks.calculateBytesPerPathName(pathNameType)") @GLsizei int numPaths, @GLenum int pathNameType, @Const @GLvoid ByteBuffer paths, - @Constant("0") @GLuint int pathBase, + @GLuint int pathBase, @GLenum int coverMode, @GLenum int transformType, @Check(value = "GLChecks.calculateTransformPathValues(transformType)", canBeNull = true) @Const FloatBuffer transformValues); void glCoverStrokePathInstancedNV(@AutoSize(value = "paths", expression = " / GLChecks.calculateBytesPerPathName(pathNameType)") @GLsizei int numPaths, @GLenum int pathNameType, @Const @GLvoid ByteBuffer paths, - @Constant("0") @GLuint int pathBase, + @GLuint int pathBase, @GLenum int coverMode, @GLenum int transformType, @Check(value = "GLChecks.calculateTransformPathValues(transformType)", canBeNull = true) @Const FloatBuffer transformValues); @@ -443,7 +443,7 @@ void glGetPathMetricsNV(@GLbitfield int metricQueryMask, @AutoSize(value = "paths", expression = " / GLChecks.calculateBytesPerPathName(pathNameType)") @GLsizei int numPaths, @GLenum int pathNameType, @Const @GLvoid ByteBuffer paths, - @Constant("0") @GLuint int pathBase, + @GLuint int pathBase, @GLsizei int stride, @Check("GLChecks.calculateMetricsSize(metricQueryMask, stride)") @OutParameter FloatBuffer metrics); @@ -457,7 +457,7 @@ void glGetPathSpacingNV(@GLenum int pathListMode, @AutoSize(value = "paths", expression = "numPaths", useExpression = true) @GLsizei int numPaths, @GLenum int pathNameType, @Const @GLvoid ByteBuffer paths, - @Constant("0") @GLuint int pathBase, + @GLuint int pathBase, float advanceScale, float kerningScale, @GLenum int transformType, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |