Update of /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17529 Modified Files: ARBBufferObject.java ARBColorBufferFloat.java ARBDepthTexture.java ARBDrawBuffers.java ARBFragmentProgram.java ARBFragmentShader.java ARBHalfFloatPixel.java ARBOcclusionQuery.java ARBPixelBufferObject.java ARBPointSprite.java ARBProgram.java ARBShaderObjects.java ARBShadingLanguage100.java ARBTextureFloat.java ARBTextureRectangle.java ARBVertexBufferObject.java ARBVertexProgram.java ARBVertexShader.java ATIDrawBuffers.java ATIFragmentShader.java ATIMapObjectBuffer.java ATITextureFloat.java EXTBlendEquationSeparate.java EXTDepthBoundsTest.java EXTPackedDepthStencil.java EXTPalettedTexture.java EXTPixelBufferObject.java EXTStencilClearTag.java EXTTextureMirrorClamp.java EXTTextureSRGB.java GL15.java GL20.java HPOcclusionTest.java IBMRasterposClip.java NVFloatBuffer.java NVFragmentProgram.java NVFragmentProgram2.java NVHalfFloat.java NVMultisampleFilterHint.java NVPixelDataRange.java NVPrimitiveRestart.java NVProgram.java NVTextureCompressionVTC.java NVTextureExpandNormal.java NVVertexProgram.java NVVertexProgram2Option.java NVVertexProgram3.java SUNSliceAccum.java Log Message: Converted comments to javadoc, code cleanup Index: ARBVertexBufferObject.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ARBVertexBufferObject.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ARBVertexBufferObject.java 29 Sep 2005 17:13:36 -0000 1.1 +++ ARBVertexBufferObject.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,8 +7,18 @@ import java.nio.*; public final class ARBVertexBufferObject extends ARBBufferObject { + /** + * Accepted by the <target> parameters of BindBufferARB, BufferDataARB, + * BufferSubDataARB, MapBufferARB, UnmapBufferARB, + * GetBufferSubDataARB, GetBufferParameterivARB, and + * GetBufferPointervARB: + */ public static final int GL_ARRAY_BUFFER_ARB = 0x8892; public static final int GL_ELEMENT_ARRAY_BUFFER_ARB = 0x8893; + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv, and GetDoublev: + */ public static final int GL_ARRAY_BUFFER_BINDING_ARB = 0x8894; public static final int GL_ELEMENT_ARRAY_BUFFER_BINDING_ARB = 0x8895; public static final int GL_VERTEX_ARRAY_BUFFER_BINDING_ARB = 0x8896; @@ -20,6 +30,9 @@ public static final int GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB = 0x889c; public static final int GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB = 0x889d; public static final int GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB = 0x889e; + /** + * Accepted by the <pname> parameter of GetVertexAttribivARB: + */ public static final int GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB = 0x889f; private ARBVertexBufferObject() { Index: GL15.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/GL15.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- GL15.java 2 Nov 2005 09:28:10 -0000 1.2 +++ GL15.java 24 Dec 2005 19:28:13 -0000 1.3 @@ -38,9 +38,20 @@ public static final int GL_BUFFER_ACCESS = 0x88bb; public static final int GL_BUFFER_MAPPED = 0x88bc; public static final int GL_BUFFER_MAP_POINTER = 0x88bd; + /** + * Accepted by the <target> parameter of BeginQuery, EndQuery, + * and GetQueryiv: + */ public static final int GL_SAMPLES_PASSED = 0x8914; + /** + * Accepted by the <pname> parameter of GetQueryiv: + */ public static final int GL_QUERY_COUNTER_BITS = 0x8864; public static final int GL_CURRENT_QUERY = 0x8865; + /** + * Accepted by the <pname> parameter of GetQueryObjectiv and + * GetQueryObjectuiv: + */ public static final int GL_QUERY_RESULT = 0x8866; public static final int GL_QUERY_RESULT_AVAILABLE = 0x8867; Index: SUNSliceAccum.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/SUNSliceAccum.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SUNSliceAccum.java 29 Sep 2005 17:13:36 -0000 1.1 +++ SUNSliceAccum.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,6 +7,9 @@ import java.nio.*; public final class SUNSliceAccum { + /** + * Accepted by the <op> parameter of Accum, + */ public static final int GL_SLICE_ACCUM_SUN = 0x85cc; private SUNSliceAccum() { Index: ARBShadingLanguage100.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ARBShadingLanguage100.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ARBShadingLanguage100.java 29 Sep 2005 17:13:36 -0000 1.1 +++ ARBShadingLanguage100.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -8,7 +8,7 @@ public final class ARBShadingLanguage100 { /** - * Accepted by the <name> parameter of GetString: + * Accepted by the <name> parameter of GetString: */ public static final int GL_SHADING_LANGUAGE_VERSION_ARB = 0x8b8c; Index: ATITextureFloat.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ATITextureFloat.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ATITextureFloat.java 29 Sep 2005 17:13:36 -0000 1.1 +++ ATITextureFloat.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,6 +7,10 @@ import java.nio.*; public final class ATITextureFloat { + /** + * Accepted by the <internalFormat> parameter of TexImage1D, + * TexImage2D, and TexImage3D: + */ public static final int GL_RGBA_FLOAT32_ATI = 0x8814; public static final int GL_RGB_FLOAT32_ATI = 0x8815; public static final int GL_ALPHA_FLOAT32_ATI = 0x8816; Index: ARBHalfFloatPixel.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ARBHalfFloatPixel.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ARBHalfFloatPixel.java 29 Sep 2005 17:13:36 -0000 1.1 +++ ARBHalfFloatPixel.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,6 +7,14 @@ import java.nio.*; public final class ARBHalfFloatPixel { + /** + * Accepted by the <type> parameter of DrawPixels, ReadPixels, + * TexImage1D, TexImage2D, TexImage3D, GetTexImage, TexSubImage1D, + * TexSubImage2D, TexSubImage3D, GetHistogram, GetMinmax, + * ConvolutionFilter1D, ConvolutionFilter2D, GetConvolutionFilter, + * SeparableFilter2D, GetSeparableFilter, ColorTable, ColorSubTable, + * and GetColorTable: + */ public static final int GL_HALF_FLOAT_ARB = 0x140b; private ARBHalfFloatPixel() { Index: ARBDrawBuffers.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ARBDrawBuffers.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ARBDrawBuffers.java 29 Sep 2005 17:13:36 -0000 1.1 +++ ARBDrawBuffers.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,6 +7,10 @@ import java.nio.*; public final class ARBDrawBuffers { + /** + * Accepted by the <pname> parameters of GetIntegerv, GetFloatv, + * and GetDoublev: + */ public static final int GL_MAX_DRAW_BUFFERS_ARB = 0x8824; public static final int GL_DRAW_BUFFER0_ARB = 0x8825; public static final int GL_DRAW_BUFFER1_ARB = 0x8826; Index: ARBOcclusionQuery.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ARBOcclusionQuery.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ARBOcclusionQuery.java 29 Sep 2005 17:13:36 -0000 1.1 +++ ARBOcclusionQuery.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,9 +7,20 @@ import java.nio.*; public final class ARBOcclusionQuery { + /** + * Accepted by the <target> parameter of BeginQueryARB, EndQueryARB, + * and GetQueryivARB: + */ public static final int GL_SAMPLES_PASSED_ARB = 0x8914; + /** + * Accepted by the <pname> parameter of GetQueryivARB: + */ public static final int GL_QUERY_COUNTER_BITS_ARB = 0x8864; public static final int GL_CURRENT_QUERY_ARB = 0x8865; + /** + * Accepted by the <pname> parameter of GetQueryObjectivARB and + * GetQueryObjectuivARB: + */ public static final int GL_QUERY_RESULT_ARB = 0x8866; public static final int GL_QUERY_RESULT_AVAILABLE_ARB = 0x8867; Index: EXTStencilClearTag.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/EXTStencilClearTag.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- EXTStencilClearTag.java 29 Sep 2005 17:13:36 -0000 1.1 +++ EXTStencilClearTag.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,6 +7,10 @@ import java.nio.*; public final class EXTStencilClearTag { + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv, and GetDoublev. + */ public static final int GL_STENCIL_TAG_BITS_EXT = 0x88f2; public static final int GL_STENCIL_CLEAR_TAG_VALUE_EXT = 0x88f3; @@ -14,6 +18,11 @@ } + /** + * Controls the stencil clear tag state. stencilTagBits is a count of + * the number of most-significant stencil buffer bits involved in the + * stencil clear tag update. + */ public static void glStencilClearTagEXT(int stencilTagBits, int stencilClearTag) { long function_pointer = GLContext.getCapabilities().EXT_stencil_clear_tag_glStencilClearTagEXT_pointer; BufferChecks.checkFunctionAddress(function_pointer); Index: NVTextureCompressionVTC.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/NVTextureCompressionVTC.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- NVTextureCompressionVTC.java 29 Sep 2005 17:13:36 -0000 1.1 +++ NVTextureCompressionVTC.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,6 +7,11 @@ import java.nio.*; public final class NVTextureCompressionVTC { + /** + * Accepted by the <internalformat> parameter of TexImage3D and + * CompressedTexImage3DARB and the <format> parameter of + * CompressedTexSubImage2DARB: + */ public static final int GL_COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83f0; public static final int GL_COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83f1; public static final int GL_COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83f2; Index: GL20.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/GL20.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- GL20.java 2 Nov 2005 09:28:10 -0000 1.2 +++ GL20.java 24 Dec 2005 19:28:13 -0000 1.3 @@ -7,8 +7,17 @@ import java.nio.*; public final class GL20 { + /** + * Accepted by the <name> parameter of GetString: + */ public static final int GL_SHADING_LANGUAGE_VERSION = 0x8b8c; + /** + * Accepted by the <pname> argument of GetInteger: + */ public static final int GL_CURRENT_PROGRAM = 0x8b8d; + /** + * Accepted by the <pname> parameter of GetObjectParameter{fi}vARB: + */ public static final int GL_SHADER_TYPE = 0x8b4f; public static final int GL_DELETE_STATUS = 0x8b80; public static final int GL_COMPILE_STATUS = 0x8b81; @@ -21,7 +30,13 @@ public static final int GL_ACTIVE_ATTRIBUTES = 0x8b89; public static final int GL_ACTIVE_ATTRIBUTE_MAX_LENGTH = 0x8b8a; public static final int GL_SHADER_SOURCE_LENGTH = 0x8b88; + /** + * Returned by the <params> parameter of GetObjectParameter{fi}vARB: + */ public static final int GL_SHADER_OBJECT = 0x8b48; + /** + * Returned by the <type> parameter of GetActiveUniformARB: + */ public static final int GL_FLOAT_VEC2 = 0x8b50; public static final int GL_FLOAT_VEC3 = 0x8b51; public static final int GL_FLOAT_VEC4 = 0x8b52; @@ -41,7 +56,15 @@ public static final int GL_SAMPLER_CUBE = 0x8b60; public static final int GL_SAMPLER_1D_SHADOW = 0x8b61; public static final int GL_SAMPLER_2D_SHADOW = 0x8b62; + /** + * Accepted by the <shaderType> argument of CreateShader and + * returned by the <params> parameter of GetShader{if}v: + */ public static final int GL_VERTEX_SHADER = 0x8b31; + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv, and GetDoublev: + */ public static final int GL_MAX_VERTEX_UNIFORM_COMPONENTS = 0x8b4a; public static final int GL_MAX_VARYING_FLOATS = 0x8b4b; public static final int GL_MAX_VERTEX_ATTRIBS = 0x8869; @@ -49,18 +72,45 @@ public static final int GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS = 0x8b4c; public static final int GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS = 0x8b4d; public static final int GL_MAX_TEXTURE_COORDS = 0x8871; + /** + * Accepted by the <cap> parameter of Disable, Enable, and IsEnabled, and + * by the <pname> parameter of GetBooleanv, GetIntegerv, GetFloatv, and + * GetDoublev: + */ public static final int GL_VERTEX_PROGRAM_POINT_SIZE = 0x8642; public static final int GL_VERTEX_PROGRAM_TWO_SIDE = 0x8643; + /** + * Accepted by the <pname> parameter of GetVertexAttrib{dfi}vARB: + */ public static final int GL_VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622; public static final int GL_VERTEX_ATTRIB_ARRAY_SIZE = 0x8623; public static final int GL_VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624; public static final int GL_VERTEX_ATTRIB_ARRAY_TYPE = 0x8625; public static final int GL_VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886a; public static final int GL_CURRENT_VERTEX_ATTRIB = 0x8626; + /** + * Accepted by the <pname> parameter of GetVertexAttribPointervARB: + */ public static final int GL_VERTEX_ATTRIB_ARRAY_POINTER = 0x8645; + /** + * Accepted by the <shaderType> argument of CreateShader and + * returned by the <params> parameter of GetShader{fi}vARB: + */ public static final int GL_FRAGMENT_SHADER = 0x8b30; + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv, and GetDoublev: + */ public static final int GL_MAX_FRAGMENT_UNIFORM_COMPONENTS = 0x8b49; + /** + * Accepted by the <target> parameter of Hint and the <pname> parameter of + * GetBooleanv, GetIntegerv, GetFloatv, and GetDoublev: + */ public static final int GL_FRAGMENT_SHADER_DERIVATIVE_HINT = 0x8b8b; + /** + * Accepted by the <pname> parameters of GetIntegerv, GetFloatv, + * and GetDoublev: + */ public static final int GL_MAX_DRAW_BUFFERS = 0x8824; public static final int GL_DRAW_BUFFER0 = 0x8825; public static final int GL_DRAW_BUFFER1 = 0x8826; @@ -78,9 +128,27 @@ public static final int GL_DRAW_BUFFER13 = 0x8832; public static final int GL_DRAW_BUFFER14 = 0x8833; public static final int GL_DRAW_BUFFER15 = 0x8834; + /** + * Accepted by the <cap> parameter of Enable, Disable, and IsEnabled, by + * the <pname> parameter of GetBooleanv, GetIntegerv, GetFloatv, and + * GetDoublev, and by the <target> parameter of TexEnvi, TexEnviv, + * TexEnvf, TexEnvfv, GetTexEnviv, and GetTexEnvfv: + */ public static final int GL_POINT_SPRITE = 0x8861; + /** + * When the <target> parameter of TexEnvf, TexEnvfv, TexEnvi, TexEnviv, + * GetTexEnvfv, or GetTexEnviv is POINT_SPRITE, then the value of + * <pname> may be: + */ public static final int GL_COORD_REPLACE = 0x8862; + /** + * Accepted by the <pname> parameter of PointParameter{if}vARB, and the + * <pname> of Get: + */ public static final int GL_POINT_SPRITE_COORD_ORIGIN = 0x8ca0; + /** + * Accepted by the <param> parameter of PointParameter{if}vARB: + */ public static final int GL_LOWER_LEFT = 0x8ca1; public static final int GL_UPPER_LEFT = 0x8ca2; public static final int GL_STENCIL_BACK_FUNC = 0x8800; Index: NVVertexProgram2Option.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/NVVertexProgram2Option.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- NVVertexProgram2Option.java 29 Sep 2005 17:13:36 -0000 1.1 +++ NVVertexProgram2Option.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,6 +7,9 @@ import java.nio.*; public final class NVVertexProgram2Option { + /** + * Accepted by the <pname> parameter of GetProgramivARB: + */ public static final int GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV = 0x88f4; public static final int GL_MAX_PROGRAM_CALL_DEPTH_NV = 0x88f5; Index: ARBFragmentProgram.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ARBFragmentProgram.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ARBFragmentProgram.java 29 Sep 2005 17:13:36 -0000 1.1 +++ ARBFragmentProgram.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,7 +7,18 @@ import java.nio.*; public final class ARBFragmentProgram extends ARBProgram { + /** + * Accepted by the <cap> parameter of Disable, Enable, and IsEnabled, by the + * <pname> parameter of GetBooleanv, GetIntegerv, GetFloatv, and GetDoublev, + * and by the <target> parameter of ProgramStringARB, BindProgramARB, + * ProgramEnvParameter4[df][v]ARB, ProgramLocalParameter4[df][v]ARB, + * GetProgramEnvParameter[df]vARB, GetProgramLocalParameter[df]vARB, + * GetProgramivARB and GetProgramStringARB. + */ public static final int GL_FRAGMENT_PROGRAM_ARB = 0x8804; + /** + * Accepted by the <pname> parameter of GetProgramivARB: + */ public static final int GL_PROGRAM_ALU_INSTRUCTIONS_ARB = 0x8805; public static final int GL_PROGRAM_TEX_INSTRUCTIONS_ARB = 0x8806; public static final int GL_PROGRAM_TEX_INDIRECTIONS_ARB = 0x8807; @@ -20,6 +31,10 @@ public static final int GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB = 0x880e; public static final int GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB = 0x880f; public static final int GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB = 0x8810; + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, GetFloatv, + * and GetDoublev: + */ public static final int GL_MAX_TEXTURE_COORDS_ARB = 0x8871; public static final int GL_MAX_TEXTURE_IMAGE_UNITS_ARB = 0x8872; Index: EXTPixelBufferObject.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/EXTPixelBufferObject.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- EXTPixelBufferObject.java 29 Sep 2005 17:13:36 -0000 1.1 +++ EXTPixelBufferObject.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,8 +7,17 @@ import java.nio.*; public final class EXTPixelBufferObject extends ARBBufferObject { + /** + * Accepted by the <target> parameters of BindBuffer, BufferData, + * BufferSubData, MapBuffer, UnmapBuffer, GetBufferSubData, + * GetBufferParameteriv, and GetBufferPointerv: + */ public static final int GL_PIXEL_PACK_BUFFER_EXT = 0x88eb; public static final int GL_PIXEL_UNPACK_BUFFER_EXT = 0x88ec; + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv, and GetDoublev: + */ public static final int PIXEL_PACK_BUFFER_BINDING_EXT = 0x88ed; public static final int PIXEL_UNPACK_BUFFER_BINDING_EXT = 0x88ef; Index: HPOcclusionTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/HPOcclusionTest.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- HPOcclusionTest.java 29 Sep 2005 17:13:36 -0000 1.1 +++ HPOcclusionTest.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -8,12 +8,12 @@ public final class HPOcclusionTest { /** - * Accepted by the <cap> parameter of Enable, Disable, and IsEnabled, by - * the <pname> of GetBooleanv, GetIntegerv, GetFloatv, and GetDoublev : + * Accepted by the <cap> parameter of Enable, Disable, and IsEnabled, by + * the <pname> of GetBooleanv, GetIntegerv, GetFloatv, and GetDoublev : */ public static final int GL_OCCLUSION_TEST_HP = 0x8165; /** - * Accepted by the <pname> of GetBooleanv, GetIntegerv, GetFloatv, and + * Accepted by the <pname> of GetBooleanv, GetIntegerv, GetFloatv, and * GetDoublev : */ public static final int GL_OCCLUSION_TEST_RESULT_HP = 0x8166; Index: ATIDrawBuffers.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ATIDrawBuffers.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ATIDrawBuffers.java 29 Sep 2005 17:13:36 -0000 1.1 +++ ATIDrawBuffers.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,6 +7,10 @@ import java.nio.*; public final class ATIDrawBuffers { + /** + * Accepted by the <pname> parameters of GetIntegerv, GetFloatv, + * and GetDoublev: + */ public static final int GL_MAX_DRAW_BUFFERS_ATI = 0x8824; public static final int GL_DRAW_BUFFER0_ATI = 0x8825; public static final int GL_DRAW_BUFFER1_ATI = 0x8826; Index: ATIMapObjectBuffer.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ATIMapObjectBuffer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ATIMapObjectBuffer.java 29 Sep 2005 17:13:36 -0000 1.1 +++ ATIMapObjectBuffer.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -17,10 +17,10 @@ * null, in which case a new ByteBuffer will be created, pointing to the returned memory. If * oldBuffer is non-null, it will be returned if it points to the same mapped memory, otherwise a * new ByteBuffer is created. - * @param result_size The size of the buffer area. - * @param old_buffer A ByteBuffer. If this argument points to the same address as the new mapping, - * it will be returned and no new buffer will be created. In that case, size is - * ignored. + * @param result_size The size of the buffer area. + * @param old_buffer A ByteBuffer. If this argument points to the same address as the new mapping, + * it will be returned and no new buffer will be created. In that case, size is + * ignored. * @return A ByteBuffer representing the mapped object buffer memory. */ public static java.nio.ByteBuffer glMapObjectBufferATI(int buffer, int result_size, java.nio.ByteBuffer old_buffer) { Index: NVFragmentProgram.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/NVFragmentProgram.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- NVFragmentProgram.java 2 Nov 2005 09:28:10 -0000 1.2 +++ NVFragmentProgram.java 24 Dec 2005 19:28:13 -0000 1.3 @@ -7,7 +7,19 @@ import java.nio.*; public final class NVFragmentProgram extends NVProgram { + /** + * Accepted by the <cap> parameter of Disable, Enable, and IsEnabled, by the + * <pname> parameter of GetBooleanv, GetIntegerv, GetFloatv, and GetDoublev, + * and by the <target> parameter of BindProgramNV, LoadProgramNV, + * ProgramLocalParameter4dARB, ProgramLocalParameter4dvARB, + * ProgramLocalParameter4fARB, ProgramLocalParameter4fvARB, + * GetProgramLocalParameterdvARB, and GetProgramLocalParameterfvARB: + */ public static final int GL_FRAGMENT_PROGRAM_NV = 0x8870; + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, GetFloatv, + * and GetDoublev: + */ public static final int GL_MAX_TEXTURE_COORDS_NV = 0x8871; public static final int GL_MAX_TEXTURE_IMAGE_UNITS_NV = 0x8872; public static final int GL_FRAGMENT_PROGRAM_BINDING_NV = 0x8873; Index: NVTextureExpandNormal.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/NVTextureExpandNormal.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- NVTextureExpandNormal.java 29 Sep 2005 17:13:36 -0000 1.1 +++ NVTextureExpandNormal.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,6 +7,11 @@ import java.nio.*; public final class NVTextureExpandNormal { + /** + * Accepted by the <pname> parameters of TexParameteri, + * TexParameteriv, TexParameterf, TexParameterfv, GetTexParameteri, + * and GetTexParameteriv: + */ public static final int GL_TEXTURE_UNSIGNED_REMAP_MODE_NV = 0x888f; private NVTextureExpandNormal() { Index: NVPixelDataRange.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/NVPixelDataRange.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- NVPixelDataRange.java 2 Nov 2005 09:28:10 -0000 1.2 +++ NVPixelDataRange.java 24 Dec 2005 19:28:13 -0000 1.3 @@ -7,10 +7,22 @@ import java.nio.*; public final class NVPixelDataRange { + /** + * Accepted by the <target> parameter of PixelDataRangeNV and + * FlushPixelDataRangeNV, and by the <cap> parameter of + * EnableClientState, DisableClientState, and IsEnabled: + */ public static final int GL_WRITE_PIXEL_DATA_RANGE_NV = 0x8878; public static final int GL_READ_PIXEL_DATA_RANGE_NV = 0x8879; + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv, and GetDoublev: + */ public static final int GL_WRITE_PIXEL_DATA_RANGE_LENGTH_NV = 0x887a; public static final int GL_READ_PIXEL_DATA_RANGE_LENGTH_NV = 0x887b; + /** + * Accepted by the <pname> parameter of GetPointerv: + */ public static final int GL_WRITE_PIXEL_DATA_RANGE_POINTER_NV = 0x887c; public static final int GL_READ_PIXEL_DATA_RANGE_POINTER_NV = 0x887d; Index: NVFragmentProgram2.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/NVFragmentProgram2.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- NVFragmentProgram2.java 29 Sep 2005 17:13:36 -0000 1.1 +++ NVFragmentProgram2.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,6 +7,9 @@ import java.nio.*; public final class NVFragmentProgram2 { + /** + * Accepted by the <pname> parameter of GetProgramivARB: + */ public static final int GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV = 0x88f4; public static final int GL_MAX_PROGRAM_CALL_DEPTH_NV = 0x88f5; public static final int GL_MAX_PROGRAM_IF_DEPTH_NV = 0x88f6; Index: IBMRasterposClip.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/IBMRasterposClip.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- IBMRasterposClip.java 29 Sep 2005 17:13:36 -0000 1.1 +++ IBMRasterposClip.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -8,7 +8,7 @@ public final class IBMRasterposClip { /** - * Accepted by the <target> parameter of Enable and Disable and the <value> + * Accepted by the <target> parameter of Enable and Disable and the <value> * parameter of IsEnabled, GetBooleanv, GetIntegerv, GetFloatv, GetDoublev: */ public static final int GL_RASTER_POSITION_UNCLIPPED_IBM = 0x19262; Index: ARBVertexProgram.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ARBVertexProgram.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ARBVertexProgram.java 2 Nov 2005 09:28:09 -0000 1.2 +++ ARBVertexProgram.java 24 Dec 2005 19:28:13 -0000 1.3 @@ -7,21 +7,47 @@ import java.nio.*; public final class ARBVertexProgram extends ARBProgram { + /** + * Accepted by the <cap> parameter of Disable, Enable, and IsEnabled, by the + * <pname> parameter of GetBooleanv, GetIntegerv, GetFloatv, and GetDoublev, + * and by the <target> parameter of ProgramStringARB, BindProgramARB, + * ProgramEnvParameter4[df][v]ARB, ProgramLocalParameter4[df][v]ARB, + * GetProgramEnvParameter[df]vARB, GetProgramLocalParameter[df]vARB, + * GetProgramivARB, and GetProgramStringARB. + */ public static final int GL_VERTEX_PROGRAM_ARB = 0x8620; + /** + * Accepted by the <cap> parameter of Disable, Enable, and IsEnabled, and by + * the <pname> parameter of GetBooleanv, GetIntegerv, GetFloatv, and + * GetDoublev: + */ public static final int GL_VERTEX_PROGRAM_POINT_SIZE_ARB = 0x8642; public static final int GL_VERTEX_PROGRAM_TWO_SIDE_ARB = 0x8643; public static final int GL_COLOR_SUM_ARB = 0x8458; + /** + * Accepted by the <pname> parameter of GetVertexAttrib[dfi]vARB: + */ public static final int GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB = 0x8622; public static final int GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB = 0x8623; public static final int GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB = 0x8624; public static final int GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB = 0x8625; public static final int GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB = 0x886a; public static final int GL_CURRENT_VERTEX_ATTRIB_ARB = 0x8626; + /** + * Accepted by the <pname> parameter of GetVertexAttribPointervARB: + */ public static final int GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB = 0x8645; + /** + * Accepted by the <pname> parameter of GetProgramivARB: + */ public static final int GL_PROGRAM_ADDRESS_REGISTERS_ARB = 0x88b0; public static final int GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB = 0x88b1; public static final int GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB = 0x88b2; public static final int GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB = 0x88b3; + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv, and GetDoublev: + */ public static final int GL_MAX_VERTEX_ATTRIBS_ARB = 0x8869; private ARBVertexProgram() { Index: EXTDepthBoundsTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/EXTDepthBoundsTest.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- EXTDepthBoundsTest.java 29 Sep 2005 17:13:36 -0000 1.1 +++ EXTDepthBoundsTest.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,7 +7,16 @@ import java.nio.*; public final class EXTDepthBoundsTest { + /** + * Accepted by the <cap> parameter of Enable, Disable, and IsEnabled, + * and by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv, and GetDoublev: + */ public static final int GL_DEPTH_BOUNDS_TEST_EXT = 0x8890; + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv, and GetDoublev: + */ public static final int GL_DEPTH_BOUNDS_EXT = 0x8891; private EXTDepthBoundsTest() { Index: EXTTextureMirrorClamp.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/EXTTextureMirrorClamp.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- EXTTextureMirrorClamp.java 29 Sep 2005 17:13:36 -0000 1.1 +++ EXTTextureMirrorClamp.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,6 +7,12 @@ import java.nio.*; public final class EXTTextureMirrorClamp { + /** + * Accepted by the <param> parameter of TexParameteri and TexParameterf, + * and by the <params> parameter of TexParameteriv and TexParameterfv, + * when their <pname> parameter is TEXTURE_WRAP_S, TEXTURE_WRAP_T, + * or TEXTURE_WRAP_R: + */ public static final int GL_MIRROR_CLAMP_EXT = 0x8742; public static final int GL_MIRROR_CLAMP_TO_EDGE_EXT = 0x8743; public static final int GL_MIRROR_CLAMP_TO_BORDER_EXT = 0x8912; Index: ARBPixelBufferObject.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ARBPixelBufferObject.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ARBPixelBufferObject.java 29 Sep 2005 17:13:36 -0000 1.1 +++ ARBPixelBufferObject.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,8 +7,17 @@ import java.nio.*; public final class ARBPixelBufferObject extends ARBBufferObject { + /** + * Accepted by the <target> parameters of BindBuffer, BufferData, + * BufferSubData, MapBuffer, UnmapBuffer, GetBufferSubData, + * GetBufferParameteriv, and GetBufferPointerv: + */ public static final int GL_PIXEL_PACK_BUFFER_ARB = 0x88eb; public static final int GL_PIXEL_UNPACK_BUFFER_ARB = 0x88ec; + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv, and GetDoublev: + */ public static final int GL_PIXEL_PACK_BUFFER_BINDING_ARB = 0x88ed; public static final int GL_PIXEL_UNPACK_BUFFER_BINDING_ARB = 0x88ef; Index: ARBShaderObjects.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ARBShaderObjects.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ARBShaderObjects.java 29 Sep 2005 17:13:36 -0000 1.1 +++ ARBShaderObjects.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,7 +7,13 @@ import java.nio.*; public final class ARBShaderObjects { + /** + * Accepted by the <pname> argument of GetHandleARB: + */ public static final int GL_PROGRAM_OBJECT_ARB = 0x8b40; + /** + * Accepted by the <pname> parameter of GetObjectParameter{fi}vARB: + */ public static final int GL_OBJECT_TYPE_ARB = 0x8b4e; public static final int GL_OBJECT_SUBTYPE_ARB = 0x8b4f; public static final int GL_OBJECT_DELETE_STATUS_ARB = 0x8b80; @@ -19,7 +25,13 @@ public static final int GL_OBJECT_ACTIVE_UNIFORMS_ARB = 0x8b86; public static final int GL_OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB = 0x8b87; public static final int GL_OBJECT_SHADER_SOURCE_LENGTH_ARB = 0x8b88; + /** + * Returned by the <params> parameter of GetObjectParameter{fi}vARB: + */ public static final int GL_SHADER_OBJECT_ARB = 0x8b48; + /** + * Returned by the <type> parameter of GetActiveUniformARB: + */ public static final int GL_FLOAT = 0x1406; public static final int GL_FLOAT_VEC2_ARB = 0x8b50; public static final int GL_FLOAT_VEC3_ARB = 0x8b51; @@ -82,8 +94,6 @@ * The ARB_shader_objects extension allows multiple, optionally null-terminated, source strings to define a shader program. * <p/> * This method uses just a single string, that should NOT be null-terminated. - * @param shaderObj - * @param string */ public static void glShaderSourceARB(int shader, ByteBuffer string) { long function_pointer = GLContext.getCapabilities().ARB_shader_objects_glShaderSourceARB_pointer; @@ -320,7 +330,6 @@ * Returns the location of the uniform with the specified name. The ByteBuffer should contain the uniform name as a <b>null-terminated</b> string. * @param programObj * @param name - * @return */ public static int glGetUniformLocationARB(int programObj, ByteBuffer name) { long function_pointer = GLContext.getCapabilities().ARB_shader_objects_glGetUniformLocationARB_pointer; Index: EXTTextureSRGB.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/EXTTextureSRGB.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- EXTTextureSRGB.java 29 Sep 2005 17:13:36 -0000 1.1 +++ EXTTextureSRGB.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,6 +7,10 @@ import java.nio.*; public final class EXTTextureSRGB { + /** + * Accepted by the <internalformat> parameter of TexImage1D, TexImage2D, + * TexImage3D, CopyTexImage1D, CopyTexImage2D. + */ public static final int GL_SRGB_EXT = 0x8c40; public static final int GL_SRGB8_EXT = 0x8c41; public static final int GL_SRGB_ALPHA_EXT = 0x8c42; @@ -19,6 +23,11 @@ public static final int GL_COMPRESSED_SRGB_ALPHA_EXT = 0x8c49; public static final int GL_COMPRESSED_SLUMINANCE_EXT = 0x8c4a; public static final int GL_COMPRESSED_SLUMINANCE_ALPHA_EXT = 0x8c4b; + /** + * Accepted by the <internalformat> parameter of TexImage2D, + * CopyTexImage2D, and CompressedTexImage2DARB and the <format> parameter + * of CompressedTexSubImage2DARB. + */ public static final int GL_COMPRESSED_SRGB_S3TC_DXT1_EXT = 0x8c4c; public static final int GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT = 0x8c4d; public static final int GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT = 0x8c4e; Index: NVProgram.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/NVProgram.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- NVProgram.java 29 Sep 2005 17:13:36 -0000 1.1 +++ NVProgram.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,11 +7,24 @@ import java.nio.*; public class NVProgram { + /** + * Accepted by the <pname> parameter of GetProgramivNV: + */ public static final int GL_PROGRAM_TARGET_NV = 0x8646; public static final int GL_PROGRAM_LENGTH_NV = 0x8627; public static final int GL_PROGRAM_RESIDENT_NV = 0x8647; + /** + * Accepted by the <pname> parameter of GetProgramStringNV: + */ public static final int GL_PROGRAM_STRING_NV = 0x8628; + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv, and GetDoublev: + */ public static final int GL_PROGRAM_ERROR_POSITION_NV = 0x864b; + /** + * Accepted by the <name> parameter of GetString: + */ public static final int GL_PROGRAM_ERROR_STRING_NV = 0x8874; Index: NVFloatBuffer.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/NVFloatBuffer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- NVFloatBuffer.java 29 Sep 2005 17:13:36 -0000 1.1 +++ NVFloatBuffer.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,6 +7,10 @@ import java.nio.*; public final class NVFloatBuffer { + /** + * Accepted by the <internalformat> parameter of TexImage2D and + * CopyTexImage2D: + */ public static final int GL_FLOAT_R_NV = 0x8880; public static final int GL_FLOAT_RG_NV = 0x8881; public static final int GL_FLOAT_RGB_NV = 0x8882; @@ -19,7 +23,15 @@ public static final int GL_FLOAT_RGB32_NV = 0x8889; public static final int GL_FLOAT_RGBA16_NV = 0x888a; public static final int GL_FLOAT_RGBA32_NV = 0x888b; + /** + * Accepted by the <pname> parameter of GetTexLevelParameterfv and + * GetTexLevelParameteriv: + */ public static final int GL_TEXTURE_FLOAT_COMPONENTS_NV = 0x888c; + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, GetFloatv, + * and GetDoublev: + */ public static final int GL_FLOAT_CLEAR_COLOR_VALUE_NV = 0x888d; public static final int GL_FLOAT_RGBA_MODE_NV = 0x888e; Index: NVPrimitiveRestart.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/NVPrimitiveRestart.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- NVPrimitiveRestart.java 29 Sep 2005 17:13:36 -0000 1.1 +++ NVPrimitiveRestart.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,7 +7,17 @@ import java.nio.*; public final class NVPrimitiveRestart { + /** + * Accepted by the <array> parameter of EnableClientState and + * DisableClientState, by the <cap> parameter of IsEnabled, and by + * the <pname> parameter of GetBooleanv, GetIntegerv, GetFloatv, and + * GetDoublev: + */ public static final int GL_PRIMITIVE_RESTART_NV = 0x8558; + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv, and GetDoublev: + */ public static final int GL_PRIMITIVE_RESTART_INDEX_NV = 0x8559; private NVPrimitiveRestart() { Index: ARBColorBufferFloat.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ARBColorBufferFloat.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ARBColorBufferFloat.java 29 Sep 2005 17:13:36 -0000 1.1 +++ ARBColorBufferFloat.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,16 +7,30 @@ import java.nio.*; public final class ARBColorBufferFloat { + /** + * Accepted by the <pname> parameters of GetBooleanv, GetIntegerv, + * GetFloatv, and GetDoublev: + */ public static final int GL_RGBA_FLOAT_MODE_ARB = 0x8820; + /** + * Accepted by the <target> parameter of ClampColorARB and the <pname> + * parameter of GetBooleanv, GetIntegerv, GetFloatv, and GetDoublev. + */ public static final int GL_CLAMP_VERTEX_COLOR_ARB = 0x891a; public static final int GL_CLAMP_FRAGMENT_COLOR_ARB = 0x891b; public static final int GL_CLAMP_READ_COLOR_ARB = 0x891c; + /** + * Accepted by the <clamp> parameter of ClampColorARB. + */ public static final int GL_FIXED_ONLY_ARB = 0x891d; private ARBColorBufferFloat() { } + /** + * Accepted as a bit set in the GLX_RENDER_TYPE variable + */ public static void glClampColorARB(int target, int clamp) { long function_pointer = GLContext.getCapabilities().ARB_color_buffer_float_glClampColorARB_pointer; BufferChecks.checkFunctionAddress(function_pointer); Index: ATIFragmentShader.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ATIFragmentShader.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ATIFragmentShader.java 29 Sep 2005 17:13:36 -0000 1.1 +++ ATIFragmentShader.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -101,9 +101,9 @@ public static final int GL_RED_BIT_ATI = 0x1; public static final int GL_GREEN_BIT_ATI = 0x2; public static final int GL_BLUE_BIT_ATI = 0x4; - public static final int GL_X2_BIT_ATI = 0x1; - public static final int GL_X4_BIT_ATI = 0x2; - public static final int GL_X8_BIT_ATI = 0x4; + public static final int GL_2X_BIT_ATI = 0x1; + public static final int GL_4X_BIT_ATI = 0x2; + public static final int GL_8X_BIT_ATI = 0x4; public static final int GL_HALF_BIT_ATI = 0x8; public static final int GL_QUARTER_BIT_ATI = 0x10; public static final int GL_EIGHTH_BIT_ATI = 0x20; Index: ARBDepthTexture.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ARBDepthTexture.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ARBDepthTexture.java 29 Sep 2005 17:13:36 -0000 1.1 +++ ARBDepthTexture.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,10 +7,22 @@ import java.nio.*; public final class ARBDepthTexture { + /** + * Accepted by the <internalFormat> parameter of TexImage1D, TexImage2D, + * CopyTexImage1D and CopyTexImage2D: + */ public static final int GL_DEPTH_COMPONENT16_ARB = 0x81a5; public static final int GL_DEPTH_COMPONENT24_ARB = 0x81a6; public static final int GL_DEPTH_COMPONENT32_ARB = 0x81a7; + /** + * Accepted by the <pname> parameter of GetTexLevelParameterfv and + * GetTexLevelParameteriv: + */ public static final int GL_TEXTURE_DEPTH_SIZE_ARB = 0x884a; + /** + * Accepted by the <pname> parameter of TexParameterf, TexParameteri, + * TexParameterfv, TexParameteriv, GetTexParameterfv, and GetTexParameteriv: + */ public static final int GL_DEPTH_TEXTURE_MODE_ARB = 0x884b; private ARBDepthTexture() { Index: ARBFragmentShader.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ARBFragmentShader.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ARBFragmentShader.java 29 Sep 2005 17:13:36 -0000 1.1 +++ ARBFragmentShader.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,10 +7,22 @@ import java.nio.*; public final class ARBFragmentShader { + /** + * Accepted by the <shaderType> argument of CreateShaderObjectARB and + * returned by the <params> parameter of GetObjectParameter{fi}vARB: + */ public static final int GL_FRAGMENT_SHADER_ARB = 0x8b30; + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv, and GetDoublev: + */ public static final int GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB = 0x8b49; public static final int GL_MAX_TEXTURE_COORDS_ARB = 0x8871; public static final int GL_MAX_TEXTURE_IMAGE_UNITS_ARB = 0x8872; + /** + * Accepted by the <target> parameter of Hint and the <pname> parameter of + * GetBooleanv, GetIntegerv, GetFloatv, and GetDoublev: + */ public static final int GL_FRAGMENT_SHADER_DERIVATIVE_HINT_ARB = 0x8b8b; private ARBFragmentShader() { Index: ARBTextureFloat.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ARBTextureFloat.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ARBTextureFloat.java 29 Sep 2005 17:13:36 -0000 1.1 +++ ARBTextureFloat.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,6 +7,9 @@ import java.nio.*; public final class ARBTextureFloat { + /** + * Accepted by the <value> parameter of GetTexLevelParameter: + */ public static final int GL_TEXTURE_RED_TYPE_ARB = 0x8c10; public static final int GL_TEXTURE_GREEN_TYPE_ARB = 0x8c11; public static final int GL_TEXTURE_BLUE_TYPE_ARB = 0x8c12; @@ -14,7 +17,14 @@ public static final int GL_TEXTURE_LUMINANCE_TYPE_ARB = 0x8c14; public static final int GL_TEXTURE_INTENSITY_TYPE_ARB = 0x8c15; public static final int GL_TEXTURE_DEPTH_TYPE_ARB = 0x8c16; + /** + * Returned by the <params> parameter of GetTexLevelParameter: + */ public static final int GL_UNSIGNED_NORMALIZED_ARB = 0x8c17; + /** + * Accepted by the <internalFormat> parameter of TexImage1D, + * TexImage2D, and TexImage3D: + */ public static final int GL_RGBA32F_ARB = 0x8814; public static final int GL_RGB32F_ARB = 0x8815; public static final int GL_ALPHA32F_ARB = 0x8816; Index: EXTPackedDepthStencil.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/EXTPackedDepthStencil.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- EXTPackedDepthStencil.java 29 Sep 2005 17:13:36 -0000 1.1 +++ EXTPackedDepthStencil.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,9 +7,32 @@ import java.nio.*; public final class EXTPackedDepthStencil { + /** + * Accepted by the <format> parameter of DrawPixels, ReadPixels, + * TexImage1D, TexImage2D, TexImage3D, TexSubImage1D, TexSubImage2D, + * TexSubImage3D, and GetTexImage, by the <type> parameter of + * CopyPixels, by the <internalformat> parameter of TexImage1D, + * TexImage2D, TexImage3D, CopyTexImage1D, CopyTexImage2D, and + * RenderbufferStorageEXT, and returned in the <data> parameter of + * GetTexLevelParameter and GetRenderbufferParameterivEXT. + */ public static final int GL_DEPTH_STENCIL_EXT = 0x84f9; + /** + * Accepted by the <type> parameter of DrawPixels, ReadPixels, + * TexImage1D, TexImage2D, TexImage3D, TexSubImage1D, TexSubImage2D, + * TexSubImage3D, and GetTexImage. + */ public static final int GL_UNSIGNED_INT_24_8_EXT = 0x84fa; + /** + * Accepted by the <internalformat> parameter of TexImage1D, + * TexImage2D, TexImage3D, CopyTexImage1D, CopyTexImage2D, and + * RenderbufferStorageEXT, and returned in the <data> parameter of + * GetTexLevelParameter and GetRenderbufferParameterivEXT. + */ public static final int GL_DEPTH24_STENCIL8_EXT = 0x88f0; + /** + * Accepted by the <value> parameter of GetTexLevelParameter. + */ public static final int GL_TEXTURE_STENCIL_SIZE_EXT = 0x88f1; private EXTPackedDepthStencil() { Index: ARBPointSprite.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ARBPointSprite.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ARBPointSprite.java 29 Sep 2005 17:13:36 -0000 1.1 +++ ARBPointSprite.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,7 +7,18 @@ import java.nio.*; public final class ARBPointSprite { + /** + * Accepted by the <cap> parameter of Enable, Disable, and IsEnabled, by + * the <pname> parameter of GetBooleanv, GetIntegerv, GetFloatv, and + * GetDoublev, and by the <target> parameter of TexEnvi, TexEnviv, + * TexEnvf, TexEnvfv, GetTexEnviv, and GetTexEnvfv: + */ public static final int GL_POINT_SPRITE_ARB = 0x8861; + /** + * When the <target> parameter of TexEnvf, TexEnvfv, TexEnvi, TexEnviv, + * GetTexEnvfv, or GetTexEnviv is POINT_SPRITE_ARB, then the value of + * <pname> may be: + */ public static final int GL_COORD_REPLACE_ARB = 0x8862; private ARBPointSprite() { Index: NVVertexProgram3.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/NVVertexProgram3.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- NVVertexProgram3.java 29 Sep 2005 17:13:36 -0000 1.1 +++ NVVertexProgram3.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,6 +7,10 @@ import java.nio.*; public final class NVVertexProgram3 { + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv, and GetDoublev: + */ public static final int GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB = 0x8b4c; private NVVertexProgram3() { Index: ARBVertexShader.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ARBVertexShader.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ARBVertexShader.java 5 Nov 2005 18:57:25 -0000 1.2 +++ ARBVertexShader.java 24 Dec 2005 19:28:13 -0000 1.3 @@ -7,7 +7,15 @@ import java.nio.*; public final class ARBVertexShader { + /** + * Accepted by the <shaderType> argument of CreateShaderObjectARB and + * returned by the <params> parameter of GetObjectParameter{if}vARB: + */ public static final int GL_VERTEX_SHADER_ARB = 0x8b31; + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv, and GetDoublev: + */ public static final int GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB = 0x8b4a; public static final int GL_MAX_VARYING_FLOATS_ARB = 0x8b4b; public static final int GL_MAX_VERTEX_ATTRIBS_ARB = 0x8869; @@ -15,17 +23,34 @@ public static final int GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB = 0x8b4c; public static final int GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB = 0x8b4d; public static final int GL_MAX_TEXTURE_COORDS_ARB = 0x8871; + /** + * Accepted by the <cap> parameter of Disable, Enable, and IsEnabled, and + * by the <pname> parameter of GetBooleanv, GetIntegerv, GetFloatv, and + * GetDoublev: + */ public static final int GL_VERTEX_PROGRAM_POINT_SIZE_ARB = 0x8642; public static final int GL_VERTEX_PROGRAM_TWO_SIDE_ARB = 0x8643; + /** + * Accepted by the <pname> parameter GetObjectParameter{if}vARB: + */ public static final int GL_OBJECT_ACTIVE_ATTRIBUTES_ARB = 0x8b89; public static final int GL_OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB = 0x8b8a; + /** + * Accepted by the <pname> parameter of GetVertexAttrib{dfi}vARB: + */ public static final int GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB = 0x8622; public static final int GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB = 0x8623; public static final int GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB = 0x8624; public static final int GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB = 0x8625; public static final int GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB = 0x886a; public static final int GL_CURRENT_VERTEX_ATTRIB_ARB = 0x8626; + /** + * Accepted by the <pname> parameter of GetVertexAttribPointervARB: + */ public static final int GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB = 0x8645; + /** + * Returned by the <type> parameter of GetActiveAttribARB: + */ public static final int GL_FLOAT = 0x1406; public static final int GL_FLOAT_VEC2_ARB = 0x8b50; public static final int GL_FLOAT_VEC3_ARB = 0x8b51; Index: NVHalfFloat.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/NVHalfFloat.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- NVHalfFloat.java 29 Sep 2005 17:13:36 -0000 1.1 +++ NVHalfFloat.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,6 +7,13 @@ import java.nio.*; public final class NVHalfFloat { + /** + * Accepted by the <type> argument of VertexPointer, NormalPointer, + * ColorPointer, TexCoordPointer, FogCoordPointerEXT, + * SecondaryColorPointerEXT, VertexWeightPointerEXT, VertexAttribPointerNV, + * DrawPixels, ReadPixels, TexImage1D, TexImage2D, TexImage3D, TexSubImage1D, + * TexSubImage2D, TexSubImage3D, and GetTexImage: + */ public static final int GL_HALF_FLOAT_NV = 0x140b; private NVHalfFloat() { Index: ARBProgram.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ARBProgram.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ARBProgram.java 2 Nov 2005 09:28:09 -0000 1.2 +++ ARBProgram.java 24 Dec 2005 19:28:13 -0000 1.3 @@ -7,7 +7,13 @@ import java.nio.*; public class ARBProgram { + /** + * Accepted by the <format> parameter of ProgramStringARB: + */ public static final int GL_PROGRAM_FORMAT_ASCII_ARB = 0x8875; + /** + * Accepted by the <pname> parameter of GetProgramivARB: + */ public static final int GL_PROGRAM_LENGTH_ARB = 0x8627; public static final int GL_PROGRAM_FORMAT_ARB = 0x8876; public static final int GL_PROGRAM_BINDING_ARB = 0x8677; @@ -30,14 +36,27 @@ public static final int GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB = 0x88b4; public static final int GL_MAX_PROGRAM_ENV_PARAMETERS_ARB = 0x88b5; public static final int GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB = 0x88b6; + /** + * Accepted by the <pname> parameter of GetProgramStringARB: + */ public static final int GL_PROGRAM_STRING_ARB = 0x8628; + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv, and GetDoublev: + */ public static final int GL_PROGRAM_ERROR_POSITION_ARB = 0x864b; public static final int GL_CURRENT_MATRIX_ARB = 0x8641; public static final int GL_TRANSPOSE_CURRENT_MATRIX_ARB = 0x88b7; public static final int GL_CURRENT_MATRIX_STACK_DEPTH_ARB = 0x8640; public static final int GL_MAX_PROGRAM_MATRICES_ARB = 0x862f; public static final int GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB = 0x862e; + /** + * Accepted by the <name> parameter of GetString: + */ public static final int GL_PROGRAM_ERROR_STRING_ARB = 0x8874; + /** + * Accepted by the <mode> parameter of MatrixMode: + */ public static final int GL_MATRIX0_ARB = 0x88c0; public static final int GL_MATRIX1_ARB = 0x88c1; public static final int GL_MATRIX2_ARB = 0x88c2; Index: ARBTextureRectangle.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/ARBTextureRectangle.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ARBTextureRectangle.java 13 Dec 2005 20:10:56 -0000 1.2 +++ ARBTextureRectangle.java 24 Dec 2005 19:28:13 -0000 1.3 @@ -7,12 +7,42 @@ import java.nio.*; public final class ARBTextureRectangle { + /** + * Accepted by the <cap> parameter of Enable, Disable and IsEnabled; + * by the <pname> parameter of GetBooleanv, GetIntegerv, GetFloatv + * and GetDoublev; and by the <target> parameter of BindTexture, + * GetTexParameterfv, GetTexParameteriv, TexParameterf, TexParameteri, + * TexParameterfv and TexParameteriv: + * Accepted by the <target> parameter of GetTexImage, + * GetTexLevelParameteriv, GetTexLevelParameterfv, TexImage2D, + * CopyTexImage2D, TexSubImage2D and CopySubTexImage2D: + */ public static final int GL_TEXTURE_RECTANGLE_ARB = 0x84f5; + /** + * Accepted by the <pname> parameter of GetBooleanv, GetIntegerv, + * GetFloatv and GetDoublev: + */ public static final int GL_TEXTURE_BINDING_RECTANGLE_ARB = 0x84f6; + /** + * Accepted by the <target> parameter of GetTexLevelParameteriv, + * GetTexLevelParameterfv, GetTexParameteriv and TexImage2D: + */ public static final int GL_PROXY_TEXTURE_RECTANGLE_ARB = 0x84f7; + /** + * Accepted by the <pname> parameter of GetBooleanv, GetDoublev, + * GetIntegerv and GetFloatv: + */ public static final int GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB = 0x84f8; - public static final int GL_SAMPLER_2D_RECT_ARB = 0x8B63; - public static final int GL_SAMPLER_2D_RECT_SHADOW_ARB = 0x8B64; + /** + * Returned by <type> parameter of GetActiveUniform when the location + * <index> for program object <program> is of type sampler2DRect: + */ + public static final int GL_SAMPLER_2D_RECT_ARB = 0x8b63; + /** + * Returned by <type> parameter of GetActiveUniform when the location + * <index> for program object <program> is of type sampler2DRectShadow: + */ + public static final int GL_SAMPLER_2D_RECT_SHADOW_ARB = 0x8b64; private ARBTextureRectangle() { } Index: NVMultisampleFilterHint.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/NVMultisampleFilterHint.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- NVMultisampleFilterHint.java 29 Sep 2005 17:13:36 -0000 1.1 +++ NVMultisampleFilterHint.java 24 Dec 2005 19:28:13 -0000 1.2 @@ -7,6 +7,10 @@ import java.nio.*; public final class NVMultisampleFilterHint { + /** + * Accepted by the <target> parameter of Hint and by the <pname> + * parameter of GetBooleanv, GetIntegerv, GetFloatv, and GetDoublev: + */ public static final int GL_MULTISAMPLE_FILTER_HINT_NV = 0x8534; private NVMultisampleFilterHint() { Index: EXTPalettedTexture.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/generated/org/lwjgl/opengl/EXTPalettedTexture.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- EXTPalettedTexture.java 2 Nov 2005 09:28:10 -0000 1.2 +++ EXTPalettedTexture.java 24 Dec 2005 19:28:13 -0000 1.3 @@ -7,12 +7,20 @@ import java.nio.*; public final class EXTPalettedTexture { + /** + * Accepted by the internalformat parameter of TexImage1D, TexImage2D and + * TexImage3DEXT: + */ public static final int GL_COLOR_INDEX1_EXT = 0x80e2; public static final int GL_COLOR_INDEX2_EXT = 0x80e3; public static final int GL_COLOR_INDEX4_EXT = 0x80e4; public static final int GL_COLOR_INDEX8_EXT = 0x80e5; public static final int GL_COLOR_INDEX12_EXT = 0x80e6; public static final int GL_COLOR_INDEX16_EXT = 0x80e7; + /** + * Accepted by the pname parameter of GetColorTableParameterivEXT and + * GetColorTableParameterfvEXT: + */ public static final int GL_COLOR_TABLE_FORMAT_EXT = 0x80d8; public static final int GL_COLOR_TABLE_WIDTH_EXT = 0x80d9; public static final int GL_COLOR_TABLE_RED_SIZE_EXT = 0x80da; @@ -21,6 +29,9 @@ public static final int GL_COLOR_TABLE_ALPHA_SIZE_EXT = 0x80dd; public static final int GL_COLOR_TABLE_LUMINANCE_SIZE_EXT = 0x80de; public static final int GL_COLOR_TABLE_INTEN... [truncated message content] |