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_ATTRIB... [truncated message content] |