From: <sp...@us...> - 2008-08-24 12:35:29
|
Revision: 3118 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3118&view=rev Author: spasi Date: 2008-08-24 12:35:26 +0000 (Sun, 24 Aug 2008) Log Message: ----------- (Get)TexEnv calls are not deprecated (TEXTURE_ENV target is) Modified Paths: -------------- trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java 2008-08-19 17:47:24 UTC (rev 3117) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java 2008-08-24 12:35:26 UTC (rev 3118) @@ -1063,11 +1063,9 @@ void glGetTexGendv(@GLenum int coord, @GLenum int pname, @OutParameter @Check("4") DoubleBuffer params); @StripPostfix("params") - @DeprecatedGL void glGetTexEnviv(@GLenum int coord, @GLenum int pname, @OutParameter @Check("4") IntBuffer params); @StripPostfix("params") - @DeprecatedGL void glGetTexEnvfv(@GLenum int coord, @GLenum int pname, @OutParameter @Check("4") FloatBuffer params); @Const @@ -1474,18 +1472,14 @@ @DeprecatedGL void glTexGeniv(@GLenum int coord, @GLenum int pname, @Check("4") @Const IntBuffer params); - @DeprecatedGL void glTexEnvf(@GLenum int target, @GLenum int pname, float param); - @DeprecatedGL void glTexEnvi(@GLenum int target, @GLenum int pname, int param); @StripPostfix("params") - @DeprecatedGL void glTexEnvfv(@GLenum int target, @GLenum int pname, @Check("4") @Const FloatBuffer params); @StripPostfix("params") - @DeprecatedGL void glTexEnviv(@GLenum int target, @GLenum int pname, @Check("4") @Const IntBuffer params); @DeprecatedGL This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <eli...@us...> - 2009-05-18 13:24:15
|
Revision: 3210 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3210&view=rev Author: elias_naur Date: 2009-05-18 13:24:05 +0000 (Mon, 18 May 2009) Log Message: ----------- Added missing datatypes to glVertexPointer and glTexCoordPointer Modified Paths: -------------- trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java 2009-05-08 20:29:22 UTC (rev 3209) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java 2009-05-18 13:24:05 UTC (rev 3210) @@ -1355,6 +1355,7 @@ @BufferObject(BufferKind.ArrayVBO) @Check @Const + @GLshort @GLint @GLfloat @GLdouble Buffer pointer); @@ -1488,6 +1489,8 @@ @BufferObject(BufferKind.ArrayVBO) @Check @Const + @GLint + @GLshort @GLfloat @GLdouble Buffer pointer); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2009-07-23 20:57:13
|
Revision: 3228 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3228&view=rev Author: matzon Date: 2009-07-23 20:56:59 +0000 (Thu, 23 Jul 2009) Log Message: ----------- missing out on glReadPixels Modified Paths: -------------- trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java 2009-07-07 19:47:55 UTC (rev 3227) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java 2009-07-23 20:56:59 UTC (rev 3228) @@ -1284,6 +1284,7 @@ void glRecti(int x1, int y1, int x2, int y2); void glReadPixels(int x, int y, @GLsizei int width, @GLsizei int height, @GLenum int format, @GLenum int type, + @OutParameter @BufferObject(BufferKind.PackPBO) @Check("GLChecks.calculateImageStorage(pixels, format, type, width, height, 1)") @GLbyte This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sp...@us...> - 2010-05-01 09:19:07
|
Revision: 3338 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3338&view=rev Author: spasi Date: 2010-05-01 09:19:00 +0000 (Sat, 01 May 2010) Log Message: ----------- Fixed PolygonStipple check. Modified Paths: -------------- trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java 2010-04-29 17:37:18 UTC (rev 3337) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java 2010-05-01 09:19:00 UTC (rev 3338) @@ -1147,7 +1147,7 @@ String glGetString(int name); @DeprecatedGL - void glGetPolygonStipple(@OutParameter @BufferObject(BufferKind.PackPBO) @Check("1024") @GLubyte ByteBuffer mask); + void glGetPolygonStipple(@OutParameter @BufferObject(BufferKind.PackPBO) @Check("128") @GLubyte ByteBuffer mask); @DeprecatedGL boolean glIsList(@GLuint int list); @@ -1252,7 +1252,7 @@ void glMatrixMode(@GLenum int mode); @DeprecatedGL - void glPolygonStipple(@BufferObject(BufferKind.UnpackPBO) @Check("1024") @Const @GLubyte ByteBuffer mask); + void glPolygonStipple(@BufferObject(BufferKind.UnpackPBO) @Check("128") @Const @GLubyte ByteBuffer mask); void glPolygonOffset(float factor, float units); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sp...@us...> - 2011-08-18 23:17:23
|
Revision: 3618 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3618&view=rev Author: spasi Date: 2011-08-18 23:17:17 +0000 (Thu, 18 Aug 2011) Log Message: ----------- Added glRotated. Modified Paths: -------------- trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java 2011-08-18 17:13:05 UTC (rev 3617) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java 2011-08-18 23:17:17 UTC (rev 3618) @@ -1351,6 +1351,9 @@ void glRotatef(float angle, float x, float y, float z); @DeprecatedGL + void glRotated(double angle, double x, double y, double z); + + @DeprecatedGL int glRenderMode(@GLenum int mode); @DeprecatedGL This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sp...@us...> - 2012-11-25 01:34:15
|
Revision: 3831 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3831&view=rev Author: spasi Date: 2012-11-25 01:34:08 +0000 (Sun, 25 Nov 2012) Log Message: ----------- More alternate *Pointer functions with explicit type. Modified Paths: -------------- trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java 2012-11-25 00:54:00 UTC (rev 3830) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/GL11.java 2012-11-25 01:34:08 UTC (rev 3831) @@ -32,7 +32,6 @@ package org.lwjgl.opengl; import org.lwjgl.util.generator.*; -import org.lwjgl.util.generator.Alternate; import org.lwjgl.util.generator.opengl.*; import java.nio.*; @@ -810,6 +809,14 @@ @GLbyte Buffer pointer); @DeprecatedGL + @Alternate("glColorPointer") + void glColorPointer(int size, @GLenum int type, @GLsizei int stride, + @CachedReference + @Check + @BufferObject(BufferKind.ArrayVBO) + @Const ByteBuffer pointer); + + @DeprecatedGL void glColorMaterial(@GLenum int face, @GLenum int mode); void glColorMask(boolean red, boolean green, boolean blue, boolean alpha); @@ -1304,6 +1311,14 @@ @GLfloat @GLdouble Buffer pointer); + @DeprecatedGL + @Alternate("glNormalPointer") + void glNormalPointer(@GLenum int type, @GLsizei int stride, + @CachedReference + @BufferObject(BufferKind.ArrayVBO) + @Check + @Const ByteBuffer pointer); + @NoErrorCheck @DeprecatedGL void glNormal3b(byte nx, byte ny, byte nz); @@ -1443,6 +1458,14 @@ @GLfloat @GLdouble Buffer pointer); + @DeprecatedGL + @Alternate("glVertexPointer") + void glVertexPointer(int size, @GLenum int type, @GLsizei int stride, + @CachedReference + @BufferObject(BufferKind.ArrayVBO) + @Check + @Const ByteBuffer pointer); + @NoErrorCheck @DeprecatedGL void glVertex2f(float x, float y); @@ -1577,6 +1600,14 @@ @GLfloat @GLdouble Buffer pointer); + @DeprecatedGL + @Alternate("glTexCoordPointer") + void glTexCoordPointer(int size, @GLenum int type, @GLsizei int stride, + @CachedReference(index = "StateTracker.getReferences(caps).glClientActiveTexture", name = "glTexCoordPointer_buffer") + @BufferObject(BufferKind.ArrayVBO) + @Check + @Const ByteBuffer pointer); + @NoErrorCheck @DeprecatedGL void glTexCoord1f(float s); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |