diff options
author | Sven Gothel <[email protected]> | 2001-12-06 09:18:00 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2001-12-06 09:18:00 +0000 |
commit | 8fdc4baaee82a63247a9f4203dace4ee910881bb (patch) | |
tree | f9ff045a8756d695c3afafadb5256c86813eecef /gl4java | |
parent | 5a67c0f5302dbd445d744450db58d1122096b742 (diff) |
2.8.1 rc 0rel-2-8-1-0-rc
Diffstat (limited to 'gl4java')
-rwxr-xr-x | gl4java/GLCapabilities.java | 10 | ||||
-rw-r--r-- | gl4java/GLContext.java.skel | 95 | ||||
-rw-r--r-- | gl4java/GLEnum.java | 4650 | ||||
-rw-r--r-- | gl4java/GLFunc.java | 1967 | ||||
-rw-r--r-- | gl4java/GLFunc14.java | 1987 | ||||
-rw-r--r-- | gl4java/GLFunc14JauJNI.java | 11778 | ||||
-rw-r--r-- | gl4java/GLFuncJauJNI.java | 11778 | ||||
-rw-r--r-- | gl4java/GLFuncJauJNInf.java | 2 | ||||
-rw-r--r-- | gl4java/GLUEnum.java | 298 | ||||
-rw-r--r-- | gl4java/GLUFunc14JauJNI.java | 558 | ||||
-rw-r--r-- | gl4java/GLUFuncJauJNI.java | 558 | ||||
-rw-r--r-- | gl4java/GLUFuncJauJNInf.java | 2 | ||||
-rw-r--r-- | gl4java/awt/GLOffScreenDrawable.java | 837 | ||||
-rw-r--r-- | gl4java/drawable/GLDrawable.java | 35 | ||||
-rwxr-xr-x | gl4java/drawable/SunJDK13GLDrawableFactory.java | 17 | ||||
-rw-r--r-- | gl4java/drawable/X11SunJDK13GLDrawableFactory.java | 2 | ||||
-rw-r--r-- | gl4java/swing/GLJPanel.java | 55 | ||||
-rwxr-xr-x | gl4java/utils/glf/GLFEnum.java | 48 | ||||
-rwxr-xr-x | gl4java/utils/glf/GLFFuncJNI.java | 724 |
19 files changed, 18143 insertions, 17258 deletions
diff --git a/gl4java/GLCapabilities.java b/gl4java/GLCapabilities.java index f8bc452..b65ba01 100755 --- a/gl4java/GLCapabilities.java +++ b/gl4java/GLCapabilities.java @@ -18,9 +18,6 @@ public class GLCapabilities private static final int STEREO_OFF = 0;
private static final int STEREO_ON = 1;
- private static final int FULLSCREEN_OFF = 0;
- private static final int FULLSCREEN_ON = 1;
-
// Boolean attributes
// NOTE that we do not specify on- or off-screen visuals here --
// that will be taken care of by the factory.
@@ -40,13 +37,6 @@ public class GLCapabilities */
private int stereo = STEREO_OFF;
- /* x11: exact value
- w32: exact value
-
- since JDK 1.4
- */
- private int fullscreen = FULLSCREEN_OFF;
-
/* x11: getting the largest regardless the value if >0, set to max
w32: getting the best from it's max
*/
diff --git a/gl4java/GLContext.java.skel b/gl4java/GLContext.java.skel index 5ded66d..5ee7dc3 100644 --- a/gl4java/GLContext.java.skel +++ b/gl4java/GLContext.java.skel @@ -421,7 +421,7 @@ public class GLContext extends Object private static int jvmVersionMinor = 1; // min. defaults private static String osName = null; - private static String jniEXTsuff = ""; + private static String jniEXTsuff = null; /** * Get the native GL Context ! @@ -702,13 +702,11 @@ public class GLContext extends Object else /* oops - lets guess unix/x11 :-) */ osType = OsX11; - String libNames[] = null; - if( jvmVersionMajor>=2 || ( jvmVersionMajor==1 && jvmVersionMinor>=4 ) ) { - jniEXTsuff = "14"; + jniEXTsuff="14"; } else @@ -717,26 +715,22 @@ public class GLContext extends Object && !isIBMJvm && !isMicrosoftJvm ) { - jniEXTsuff = "13"; + jniEXTsuff="13"; } else if( jvmVersionMajor==1 && jvmVersionMinor>=2 ) { - jniEXTsuff = "12"; + jniEXTsuff="12"; } else { - jniEXTsuff = ""; + jniEXTsuff=""; } - - if(gljLibName==null) - gljLibName = defGljLib+jniEXTsuff; - if(nativeGLLibName==null) { if ( osType==OsWindoof ) @@ -761,11 +755,16 @@ public class GLContext extends Object nativeGLULibName = defNativeGLULibX11; } + if(gljLibName==null) + gljLibName = defGljLib+jniEXTsuff; + + String[] libNames = null; + if ( (osType==OsWindoof) && (isMicrosoftJvm) ) { // JDirect loads the GL libraries automatically, // so we don't have to. - libNames = new String[2]; + libNames = new String[2]; libNames[0]= gljLibName; libNames[1]= defGljMSWinLib; useMSJDirect = true; @@ -911,7 +910,8 @@ public class GLContext extends Object (nativeGLLibName, nativeGLULibName, true) ) { - System.out.println("fetched GL/GLU functions succesfully !"); + if(gljClassDebug) + System.out.println("fetched GL/GLU functions succesfully !"); libsLoaded=true; } else { System.out.println("GL4Java-ERROR: can't fetch GL/GLU functions !"); @@ -1157,10 +1157,10 @@ public class GLContext extends Object _gr = _compHeavy.getGraphics(); if(_gr==null) System.out.println("got empty Graphics"); - } else + } else if(!offScreenRenderer) System.out.println("got empty Component"); - if(_comp!=null && _gr!=null) + if( (_comp!=null && _gr!=null) || offScreenRenderer ) { int i = 0; do { @@ -1560,7 +1560,6 @@ public class GLContext extends Object * * If a GLContext is fetched, it is current ! * - * @param comp the users component for the gl-context * @param glf the users selected GLFunc implementation * @param glf the users selected GLUFunc implementation * @param _stereoView the flag for the visual property @@ -1571,7 +1570,7 @@ public class GLContext extends Object * @return the created offscreen context */ public final static GLContext createOffScreenCtx - ( Component comp, GLFunc glf, GLUFunc gluf, + ( GLFunc glf, GLUFunc gluf, boolean _stereoView, boolean _rgba, int _stencilBits, @@ -1579,7 +1578,7 @@ public class GLContext extends Object GLContext _sharedGLContext ) { - return new GLContext(comp, glf, gluf, + return new GLContext(null, glf, gluf, false /* _createOwnWindow */, true /* offscreen renderer */, false /* _doubleBuffer */, @@ -1601,7 +1600,6 @@ public class GLContext extends Object * * If a GLContext is fetched, it is current ! * - * @param comp the users component for the gl-context * @param glf the users selected GLFunc implementation * @param glf the users selected GLUFunc implementation * @param _stereoView the flag for the visual property @@ -1613,7 +1611,7 @@ public class GLContext extends Object * @return the created offscreen context */ public final static GLContext createOffScreenCtx - ( Component comp, GLFunc glf, GLUFunc gluf, + ( GLFunc glf, GLUFunc gluf, boolean _stereoView, boolean _rgba, int _stencilBits, @@ -1622,7 +1620,7 @@ public class GLContext extends Object Dimension _offScrnSize ) { - return new GLContext(comp, glf, gluf, + return new GLContext(null, glf, gluf, false /* _createOwnWindow */, true /* offscreen renderer */, false /* _doubleBuffer */, @@ -1827,7 +1825,13 @@ public class GLContext extends Object if(pData == 0) { - if ( useMSJDirect ) + if(offScreenRenderer) + { + // nothing todo .. + if(gljClassDebug) + System.out.println("using OffScreen rendering ..."); + } + else if ( useMSJDirect && g!=null ) { if(gljClassDebug) System.out.println("using MSJDirect ..."); @@ -1999,7 +2003,7 @@ public class GLContext extends Object if( ! ok ) { - if ( useMSJDirect ) + if ( useMSJDirect && !offScreenRenderer) { destroyWindow = true; while (threadRunning) @@ -2116,11 +2120,15 @@ public class GLContext extends Object if(offScreenRenderer) { - //JAU: TODO + /** + * nothing to do here + * + * we just have to recreate the whole bitmap and context + */ return; } - if ( useMSJDirect ) + if ( useMSJDirect && !offScreenRenderer ) { try { @@ -2468,7 +2476,7 @@ public class GLContext extends Object // made current (at least with NVidia's drivers). if (firstContextMakeCurrent) { firstContextMakeCurrent = false; - gljFetchGLFunctions0(null, null, false, true); + gljFetchGLFunctions0(null, null, false, true, gljNativeDebug); } return result; @@ -2545,7 +2553,7 @@ public class GLContext extends Object pixmapHandle = 0; - if ( useMSJDirect ) + if ( useMSJDirect && !offScreenRenderer ) { destroyWindow = false; gl4java.system.GljMSJDirect.destroyOGLWindowNative( pData ); @@ -2750,26 +2758,29 @@ public class GLContext extends Object * * @see gl4java.GLContext#doLoadNativeLibraries */ - public final static native boolean gljFetchOSGLFunctions - ( String gllibname, String glulibname, boolean force ); public final static boolean gljFetchGLFunctions(String gllibname, String glulibname, - boolean force) { - return gljFetchGLFunctions0(gllibname, glulibname, force, false); + boolean force) + { + return gljFetchGLFunctions0(gllibname, glulibname, force, false, gljNativeDebug); } - // This routine is used internally only. On Windows it appears - // that extensions only become visible once an OpenGL context is - // made current for the first time (at least with NVidia's - // drivers). To avoid making drastic changes to the code - // structure, we reload all of the OpenGL functions the first time - // a context is made current. (This could be made more efficient - // by only loading extensions' routines at this time.) + /** + * for example Windows it appears + * that extensions only become visible once an OpenGL context is + * made current for the first time (at least with NVidia's + * drivers). To avoid making drastic changes to the code + * structure, we reload all of the OpenGL functions the first time + * a context is made current. (This could be made more efficient + * by only loading extensions' routines at this time.) + * + * @see gl4java.GLContext#gljFetchGLFunctions + */ private volatile static boolean firstContextMakeCurrent = true; - private final static native boolean gljFetchGLFunctions0(String gllibname, - String glulibname, - boolean force, - boolean reload); + private final static native boolean gljFetchGLFunctions0 (String gllibname, + String glulibname, + boolean force, + boolean reload, boolean verbose); /** * This functions checks the existence of diff --git a/gl4java/GLEnum.java b/gl4java/GLEnum.java index db05d8d..677e8dd 100644 --- a/gl4java/GLEnum.java +++ b/gl4java/GLEnum.java @@ -30,2331 +30,2331 @@ public interface GLEnum * Reading from file: gl-enum-auto.orig.h . . . * Destination-Class: gl4java_GLEnum ! */ - - public static final int GL_1PASS_EXT = 0x80A1; - public static final int GL_1PASS_SGIS = 0x80A1; - public static final int GL_2D = 0x0600; - public static final int GL_2PASS_0_EXT = 0x80A2; - public static final int GL_2PASS_0_SGIS = 0x80A2; - public static final int GL_2PASS_1_EXT = 0x80A3; - public static final int GL_2PASS_1_SGIS = 0x80A3; - public static final int GL_2X_BIT_ATI = 0x00000001; - public static final int GL_2_BYTES = 0x1407; - public static final int GL_3D = 0x0601; - public static final int GL_3DFX_multisample = 1; - public static final int GL_3DFX_tbuffer = 1; - public static final int GL_3DFX_texture_compression_FXT1 = 1; - public static final int GL_3D_COLOR = 0x0602; - public static final int GL_3D_COLOR_TEXTURE = 0x0603; - public static final int GL_3_BYTES = 0x1408; - public static final int GL_422_AVERAGE_EXT = 0x80CE; - public static final int GL_422_EXT = 0x80CC; - public static final int GL_422_REV_AVERAGE_EXT = 0x80CF; - public static final int GL_422_REV_EXT = 0x80CD; - public static final int GL_4D_COLOR_TEXTURE = 0x0604; - public static final int GL_4PASS_0_EXT = 0x80A4; - public static final int GL_4PASS_0_SGIS = 0x80A4; - public static final int GL_4PASS_1_EXT = 0x80A5; - public static final int GL_4PASS_1_SGIS = 0x80A5; - public static final int GL_4PASS_2_EXT = 0x80A6; - public static final int GL_4PASS_2_SGIS = 0x80A6; - public static final int GL_4PASS_3_EXT = 0x80A7; - public static final int GL_4PASS_3_SGIS = 0x80A7; - public static final int GL_4X_BIT_ATI = 0x00000002; - public static final int GL_4_BYTES = 0x1409; - public static final int GL_8X_BIT_ATI = 0x00000004; - public static final int GL_ABGR_EXT = 0x8000; - public static final int GL_ACCUM = 0x0100; - public static final int GL_ACCUM_ALPHA_BITS = 0x0D5B; - public static final int GL_ACCUM_BLUE_BITS = 0x0D5A; - public static final int GL_ACCUM_BUFFER_BIT = 0x00000200; - public static final int GL_ACCUM_CLEAR_VALUE = 0x0B80; - public static final int GL_ACCUM_GREEN_BITS = 0x0D59; - public static final int GL_ACCUM_RED_BITS = 0x0D58; - public static final int GL_ACTIVE_TEXTURE = 0x84E0; - public static final int GL_ACTIVE_TEXTURE_ARB = 0x84E0; - public static final int GL_ACTIVE_VERTEX_UNITS_ARB = 0x86A5; - public static final int GL_ADD = 0x0104; - public static final int GL_ADD_ATI = 0x8963; - public static final int GL_ADD_SIGNED = 0x8574; - public static final int GL_ADD_SIGNED_ARB = 0x8574; - public static final int GL_ADD_SIGNED_EXT = 0x8574; - public static final int GL_ALIASED_LINE_WIDTH_RANGE = 0x846E; - public static final int GL_ALIASED_POINT_SIZE_RANGE = 0x846D; - public static final int GL_ALLOW_DRAW_FRG_HINT_PGI = 0x1A210; - public static final int GL_ALLOW_DRAW_MEM_HINT_PGI = 0x1A211; - public static final int GL_ALLOW_DRAW_OBJ_HINT_PGI = 0x1A20E; - public static final int GL_ALLOW_DRAW_WIN_HINT_PGI = 0x1A20F; - public static final int GL_ALL_ATTRIB_BITS = 0x000FFFFF; - public static final int GL_ALL_CLIENT_ATTRIB_BITS = 0xFFFFFFFF; - public static final int GL_ALL_COMPLETED_NV = 0x84F2; - public static final int GL_ALPHA = 0x1906; - public static final int GL_ALPHA12 = 0x803D; - public static final int GL_ALPHA12_EXT = 0x803D; - public static final int GL_ALPHA16 = 0x803E; - public static final int GL_ALPHA16_EXT = 0x803E; - public static final int GL_ALPHA4 = 0x803B; - public static final int GL_ALPHA4_EXT = 0x803B; - public static final int GL_ALPHA8 = 0x803C; - public static final int GL_ALPHA8_EXT = 0x803C; - public static final int GL_ALPHA_BIAS = 0x0D1D; - public static final int GL_ALPHA_BITS = 0x0D55; - public static final int GL_ALPHA_MAX_CLAMP_INGR = 0x8567; - public static final int GL_ALPHA_MAX_SGIX = 0x8321; - public static final int GL_ALPHA_MIN_CLAMP_INGR = 0x8563; - public static final int GL_ALPHA_MIN_SGIX = 0x8320; - public static final int GL_ALPHA_SCALE = 0x0D1C; - public static final int GL_ALPHA_TEST = 0x0BC0; - public static final int GL_ALPHA_TEST_FUNC = 0x0BC1; - public static final int GL_ALPHA_TEST_REF = 0x0BC2; - public static final int GL_ALWAYS = 0x0207; - public static final int GL_ALWAYS_FAST_HINT_PGI = 0x1A20C; - public static final int GL_ALWAYS_SOFT_HINT_PGI = 0x1A20D; - public static final int GL_AMBIENT = 0x1200; - public static final int GL_AMBIENT_AND_DIFFUSE = 0x1602; - public static final int GL_AND = 0x1501; - public static final int GL_AND_INVERTED = 0x1504; - public static final int GL_AND_REVERSE = 0x1502; - public static final int GL_APPLE_specular_vector = 1; - public static final int GL_APPLE_transform_hint = 1; - public static final int GL_ARB_imaging = 1; - public static final int GL_ARB_matrix_palette = 1; - public static final int GL_ARB_multisample = 1; - public static final int GL_ARB_multitexture = 1; - public static final int GL_ARB_point_parameters = 1; - public static final int GL_ARB_texture_border_clamp = 1; - public static final int GL_ARB_texture_compression = 1; - public static final int GL_ARB_texture_cube_map = 1; - public static final int GL_ARB_texture_env_add = 1; - public static final int GL_ARB_texture_env_combine = 1; - public static final int GL_ARB_texture_env_crossbar = 1; - public static final int GL_ARB_texture_env_dot3 = 1; - public static final int GL_ARB_transpose_matrix = 1; - public static final int GL_ARB_vertex_blend = 1; - public static final int GL_ARRAY_ELEMENT_LOCK_COUNT_EXT = 0x81A9; - public static final int GL_ARRAY_ELEMENT_LOCK_FIRST_EXT = 0x81A8; - public static final int GL_ARRAY_OBJECT_BUFFER_ATI = 0x8766; - public static final int GL_ARRAY_OBJECT_OFFSET_ATI = 0x8767; - public static final int GL_ASYNC_DRAW_PIXELS_SGIX = 0x835D; - public static final int GL_ASYNC_HISTOGRAM_SGIX = 0x832C; - public static final int GL_ASYNC_MARKER_SGIX = 0x8329; - public static final int GL_ASYNC_READ_PIXELS_SGIX = 0x835E; - public static final int GL_ASYNC_TEX_IMAGE_SGIX = 0x835C; - public static final int GL_ATI_envmap_bumpmap = 1; - public static final int GL_ATI_fragment_shader = 1; - public static final int GL_ATI_pn_triangles = 1; - public static final int GL_ATI_vertex_array_object = 1; - public static final int GL_ATI_vertex_streams = 1; - public static final int GL_ATTENUATION_EXT = 0x834D; - public static final int GL_ATTRIB_ARRAY_POINTER_NV = 0x8645; - public static final int GL_ATTRIB_ARRAY_SIZE_NV = 0x8623; - public static final int GL_ATTRIB_ARRAY_STRIDE_NV = 0x8624; - public static final int GL_ATTRIB_ARRAY_TYPE_NV = 0x8625; - public static final int GL_ATTRIB_STACK_DEPTH = 0x0BB0; - public static final int GL_AUTO_NORMAL = 0x0D80; - public static final int GL_AUX0 = 0x0409; - public static final int GL_AUX1 = 0x040A; - public static final int GL_AUX2 = 0x040B; - public static final int GL_AUX3 = 0x040C; - public static final int GL_AUX_BUFFERS = 0x0C00; - public static final int GL_AVERAGE_EXT = 0x8335; - public static final int GL_AVERAGE_HP = 0x8160; - public static final int GL_BACK = 0x0405; - public static final int GL_BACK_LEFT = 0x0402; - public static final int GL_BACK_NORMALS_HINT_PGI = 0x1A223; - public static final int GL_BACK_RIGHT = 0x0403; - public static final int GL_BGR = 0x80E0; - public static final int GL_BGRA = 0x80E1; - public static final int GL_BGRA_EXT = 0x80E1; - public static final int GL_BGR_EXT = 0x80E0; - public static final int GL_BIAS_BIT_ATI = 0x00000008; - public static final int GL_BIAS_BY_NEGATIVE_ONE_HALF_NV = 0x8541; - public static final int GL_BINORMAL_ARRAY_EXT = 0x843A; - public static final int GL_BINORMAL_ARRAY_POINTER_EXT = 0x8443; - public static final int GL_BINORMAL_ARRAY_STRIDE_EXT = 0x8441; - public static final int GL_BINORMAL_ARRAY_TYPE_EXT = 0x8440; - public static final int GL_BITMAP = 0x1A00; - public static final int GL_BITMAP_TOKEN = 0x0704; - public static final int GL_BLEND = 0x0BE2; - public static final int GL_BLEND_COLOR = 0x8005; - public static final int GL_BLEND_COLOR_EXT = 0x8005; - public static final int GL_BLEND_DST = 0x0BE0; - public static final int GL_BLEND_DST_ALPHA_EXT = 0x80CA; - public static final int GL_BLEND_DST_RGB_EXT = 0x80C8; - public static final int GL_BLEND_EQUATION = 0x8009; - public static final int GL_BLEND_EQUATION_EXT = 0x8009; - public static final int GL_BLEND_SRC = 0x0BE1; - public static final int GL_BLEND_SRC_ALPHA_EXT = 0x80CB; - public static final int GL_BLEND_SRC_RGB_EXT = 0x80C9; - public static final int GL_BLUE = 0x1905; - public static final int GL_BLUE_BIAS = 0x0D1B; - public static final int GL_BLUE_BITS = 0x0D54; - public static final int GL_BLUE_BIT_ATI = 0x00000004; - public static final int GL_BLUE_MAX_CLAMP_INGR = 0x8566; - public static final int GL_BLUE_MIN_CLAMP_INGR = 0x8562; - public static final int GL_BLUE_SCALE = 0x0D1A; - public static final int GL_BUMP_ENVMAP_ATI = 0x877B; - public static final int GL_BUMP_NUM_TEX_UNITS_ATI = 0x8777; - public static final int GL_BUMP_ROT_MATRIX_ATI = 0x8775; - public static final int GL_BUMP_ROT_MATRIX_SIZE_ATI = 0x8776; - public static final int GL_BUMP_TARGET_ATI = 0x877C; - public static final int GL_BUMP_TEX_UNITS_ATI = 0x8778; - public static final int GL_BYTE = 0x1400; - public static final int GL_C3F_V3F = 0x2A24; - public static final int GL_C4F_N3F_V3F = 0x2A26; - public static final int GL_C4UB_V2F = 0x2A22; - public static final int GL_C4UB_V3F = 0x2A23; - public static final int GL_CALLIGRAPHIC_FRAGMENT_SGIX = 0x8183; - public static final int GL_CCW = 0x0901; - public static final int GL_CLAMP = 0x2900; - public static final int GL_CLAMP_TO_BORDER = 0x812D; - public static final int GL_CLAMP_TO_BORDER_ARB = 0x812D; - public static final int GL_CLAMP_TO_BORDER_SGIS = 0x812D; - public static final int GL_CLAMP_TO_EDGE = 0x812F; - public static final int GL_CLAMP_TO_EDGE_SGIS = 0x812F; - public static final int GL_CLEAR = 0x1500; - public static final int GL_CLIENT_ACTIVE_TEXTURE = 0x84E1; - public static final int GL_CLIENT_ACTIVE_TEXTURE_ARB = 0x84E1; - public static final int GL_CLIENT_ALL_ATTRIB_BITS = 0xFFFFFFFF; - public static final int GL_CLIENT_ATTRIB_STACK_DEPTH = 0x0BB1; - public static final int GL_CLIENT_PIXEL_STORE_BIT = 0x00000001; - public static final int GL_CLIENT_VERTEX_ARRAY_BIT = 0x00000002; - public static final int GL_CLIP_FAR_HINT_PGI = 0x1A221; - public static final int GL_CLIP_NEAR_HINT_PGI = 0x1A220; - public static final int GL_CLIP_PLANE0 = 0x3000; - public static final int GL_CLIP_PLANE1 = 0x3001; - public static final int GL_CLIP_PLANE2 = 0x3002; - public static final int GL_CLIP_PLANE3 = 0x3003; - public static final int GL_CLIP_PLANE4 = 0x3004; - public static final int GL_CLIP_PLANE5 = 0x3005; - public static final int GL_CLIP_VOLUME_CLIPPING_HINT_EXT = 0x80F0; - public static final int GL_CMYKA_EXT = 0x800D; - public static final int GL_CMYK_EXT = 0x800C; - public static final int GL_CND0_ATI = 0x896B; - public static final int GL_CND_ATI = 0x896A; - public static final int GL_COEFF = 0x0A00; - public static final int GL_COLOR = 0x1800; - public static final int GL_COLOR3_BIT_PGI = 0x00010000; - public static final int GL_COLOR4_BIT_PGI = 0x00020000; - public static final int GL_COLOR_ALPHA_PAIRING_ATI = 0x8975; - public static final int GL_COLOR_ARRAY = 0x8076; - public static final int GL_COLOR_ARRAY_COUNT_EXT = 0x8084; - public static final int GL_COLOR_ARRAY_EXT = 0x8076; - public static final int GL_COLOR_ARRAY_LIST_IBM = 103072; - public static final int GL_COLOR_ARRAY_LIST_STRIDE_IBM = 103082; - public static final int GL_COLOR_ARRAY_PARALLEL_POINTERS_INTEL = 0x83F7; - public static final int GL_COLOR_ARRAY_POINTER = 0x8090; - public static final int GL_COLOR_ARRAY_POINTER_EXT = 0x8090; - public static final int GL_COLOR_ARRAY_SIZE = 0x8081; - public static final int GL_COLOR_ARRAY_SIZE_EXT = 0x8081; - public static final int GL_COLOR_ARRAY_STRIDE = 0x8083; - public static final int GL_COLOR_ARRAY_STRIDE_EXT = 0x8083; - public static final int GL_COLOR_ARRAY_TYPE = 0x8082; - public static final int GL_COLOR_ARRAY_TYPE_EXT = 0x8082; - public static final int GL_COLOR_BUFFER_BIT = 0x00004000; - public static final int GL_COLOR_CLEAR_VALUE = 0x0C22; - public static final int GL_COLOR_INDEX = 0x1900; - public static final int GL_COLOR_INDEX12_EXT = 0x80E6; - public static final int GL_COLOR_INDEX16_EXT = 0x80E7; - 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_INDEXES = 0x1603; - public static final int GL_COLOR_LOGIC_OP = 0x0BF2; - public static final int GL_COLOR_MATERIAL = 0x0B57; - public static final int GL_COLOR_MATERIAL_FACE = 0x0B55; - public static final int GL_COLOR_MATERIAL_PARAMETER = 0x0B56; - public static final int GL_COLOR_MATRIX = 0x80B1; - public static final int GL_COLOR_MATRIX_SGI = 0x80B1; - public static final int GL_COLOR_MATRIX_STACK_DEPTH = 0x80B2; - public static final int GL_COLOR_MATRIX_STACK_DEPTH_SGI = 0x80B2; - public static final int GL_COLOR_SUM_CLAMP_NV = 0x854F; - public static final int GL_COLOR_SUM_EXT = 0x8458; - public static final int GL_COLOR_TABLE = 0x80D0; - public static final int GL_COLOR_TABLE_ALPHA_SIZE = 0x80DD; - public static final int GL_COLOR_TABLE_ALPHA_SIZE_EXT = 0x80DD; - public static final int GL_COLOR_TABLE_ALPHA_SIZE_SGI = 0x80DD; - public static final int GL_COLOR_TABLE_BIAS = 0x80D7; - public static final int GL_COLOR_TABLE_BIAS_SGI = 0x80D7; - public static final int GL_COLOR_TABLE_BLUE_SIZE = 0x80DC; - public static final int GL_COLOR_TABLE_BLUE_SIZE_EXT = 0x80DC; - public static final int GL_COLOR_TABLE_BLUE_SIZE_SGI = 0x80DC; - public static final int GL_COLOR_TABLE_FORMAT = 0x80D8; - public static final int GL_COLOR_TABLE_FORMAT_EXT = 0x80D8; - public static final int GL_COLOR_TABLE_FORMAT_SGI = 0x80D8; - public static final int GL_COLOR_TABLE_GREEN_SIZE = 0x80DB; - public static final int GL_COLOR_TABLE_GREEN_SIZE_EXT = 0x80DB; - public static final int GL_COLOR_TABLE_GREEN_SIZE_SGI = 0x80DB; - public static final int GL_COLOR_TABLE_INTENSITY_SIZE = 0x80DF; - public static final int GL_COLOR_TABLE_INTENSITY_SIZE_EXT = 0x80DF; - public static final int GL_COLOR_TABLE_INTENSITY_SIZE_SGI = 0x80DF; - public static final int GL_COLOR_TABLE_LUMINANCE_SIZE = 0x80DE; - public static final int GL_COLOR_TABLE_LUMINANCE_SIZE_EXT = 0x80DE; - public static final int GL_COLOR_TABLE_LUMINANCE_SIZE_SGI = 0x80DE; - public static final int GL_COLOR_TABLE_RED_SIZE = 0x80DA; - public static final int GL_COLOR_TABLE_RED_SIZE_EXT = 0x80DA; - public static final int GL_COLOR_TABLE_RED_SIZE_SGI = 0x80DA; - public static final int GL_COLOR_TABLE_SCALE = 0x80D6; - public static final int GL_COLOR_TABLE_SCALE_SGI = 0x80D6; - public static final int GL_COLOR_TABLE_SGI = 0x80D0; - public static final int GL_COLOR_TABLE_WIDTH = 0x80D9; - public static final int GL_COLOR_TABLE_WIDTH_EXT = 0x80D9; - public static final int GL_COLOR_TABLE_WIDTH_SGI = 0x80D9; - public static final int GL_COLOR_WRITEMASK = 0x0C23; - public static final int GL_COMBINE = 0x8570; - public static final int GL_COMBINE4_NV = 0x8503; - public static final int GL_COMBINER0_NV = 0x8550; - public static final int GL_COMBINER1_NV = 0x8551; - public static final int GL_COMBINER2_NV = 0x8552; - public static final int GL_COMBINER3_NV = 0x8553; - public static final int GL_COMBINER4_NV = 0x8554; - public static final int GL_COMBINER5_NV = 0x8555; - public static final int GL_COMBINER6_NV = 0x8556; - public static final int GL_COMBINER7_NV = 0x8557; - public static final int GL_COMBINER_AB_DOT_PRODUCT_NV = 0x8545; - public static final int GL_COMBINER_AB_OUTPUT_NV = 0x854A; - public static final int GL_COMBINER_BIAS_NV = 0x8549; - public static final int GL_COMBINER_CD_DOT_PRODUCT_NV = 0x8546; - public static final int GL_COMBINER_CD_OUTPUT_NV = 0x854B; - public static final int GL_COMBINER_COMPONENT_USAGE_NV = 0x8544; - public static final int GL_COMBINER_INPUT_NV = 0x8542; - public static final int GL_COMBINER_MAPPING_NV = 0x8543; - public static final int GL_COMBINER_MUX_SUM_NV = 0x8547; - public static final int GL_COMBINER_SCALE_NV = 0x8548; - public static final int GL_COMBINER_SUM_OUTPUT_NV = 0x854C; - public static final int GL_COMBINE_ALPHA = 0x8572; - public static final int GL_COMBINE_ALPHA_ARB = 0x8572; - public static final int GL_COMBINE_ALPHA_EXT = 0x8572; - public static final int GL_COMBINE_ARB = 0x8570; - public static final int GL_COMBINE_EXT = 0x8570; - public static final int GL_COMBINE_RGB = 0x8571; - public static final int GL_COMBINE_RGB_ARB = 0x8571; - public static final int GL_COMBINE_RGB_EXT = 0x8571; - public static final int GL_COMPILE = 0x1300; - public static final int GL_COMPILE_AND_EXECUTE = 0x1301; - public static final int GL_COMPRESSED_ALPHA = 0x84E9; - public static final int GL_COMPRESSED_ALPHA_ARB = 0x84E9; - public static final int GL_COMPRESSED_INTENSITY = 0x84EC; - public static final int GL_COMPRESSED_INTENSITY_ARB = 0x84EC; - public static final int GL_COMPRESSED_LUMINANCE = 0x84EA; - public static final int GL_COMPRESSED_LUMINANCE_ALPHA = 0x84EB; - public static final int GL_COMPRESSED_LUMINANCE_ALPHA_ARB = 0x84EB; - public static final int GL_COMPRESSED_LUMINANCE_ARB = 0x84EA; - public static final int GL_COMPRESSED_RGB = 0x84ED; - public static final int GL_COMPRESSED_RGBA = 0x84EE; - public static final int GL_COMPRESSED_RGBA_ARB = 0x84EE; - public static final int GL_COMPRESSED_RGBA_FXT1_3DFX = 0x86B1; - public static final int GL_COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1; - public static final int GL_COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83F2; - public static final int GL_COMPRESSED_RGBA_S3TC_DXT5_EXT = 0x83F3; - public static final int GL_COMPRESSED_RGB_ARB = 0x84ED; - public static final int GL_COMPRESSED_RGB_FXT1_3DFX = 0x86B0; - public static final int GL_COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0; - public static final int GL_COMPRESSED_TEXTURE_FORMATS = 0x86A3; - public static final int GL_COMPRESSED_TEXTURE_FORMATS_ARB = 0x86A3; - public static final int GL_COMP_BIT_ATI = 0x00000002; - public static final int GL_CONSERVE_MEMORY_HINT_PGI = 0x1A1FD; - public static final int GL_CONSTANT = 0x8576; - public static final int GL_CONSTANT_ALPHA = 0x8003; - public static final int GL_CONSTANT_ALPHA_EXT = 0x8003; - public static final int GL_CONSTANT_ARB = 0x8576; - public static final int GL_CONSTANT_ATTENUATION = 0x1207; - public static final int GL_CONSTANT_BORDER = 0x8151; - public static final int GL_CONSTANT_BORDER_HP = 0x8151; - public static final int GL_CONSTANT_COLOR = 0x8001; - public static final int GL_CONSTANT_COLOR0_NV = 0x852A; - public static final int GL_CONSTANT_COLOR1_NV = 0x852B; - public static final int GL_CONSTANT_COLOR_EXT = 0x8001; - public static final int GL_CONSTANT_EXT = 0x8576; - public static final int GL_CONST_EYE_NV = 0x86E5; - public static final int GL_CONVOLUTION_1D = 0x8010; - public static final int GL_CONVOLUTION_1D_EXT = 0x8010; - public static final int GL_CONVOLUTION_2D = 0x8011; - public static final int GL_CONVOLUTION_2D_EXT = 0x8011; - public static final int GL_CONVOLUTION_BORDER_COLOR = 0x8154; - public static final int GL_CONVOLUTION_BORDER_COLOR_HP = 0x8154; - public static final int GL_CONVOLUTION_BORDER_MODE = 0x8013; - public static final int GL_CONVOLUTION_BORDER_MODE_EXT = 0x8013; - public static final int GL_CONVOLUTION_FILTER_BIAS = 0x8015; - public static final int GL_CONVOLUTION_FILTER_BIAS_EXT = 0x8015; - public static final int GL_CONVOLUTION_FILTER_SCALE = 0x8014; - public static final int GL_CONVOLUTION_FILTER_SCALE_EXT = 0x8014; - public static final int GL_CONVOLUTION_FORMAT = 0x8017; - public static final int GL_CONVOLUTION_FORMAT_EXT = 0x8017; - public static final int GL_CONVOLUTION_HEIGHT = 0x8019; - public static final int GL_CONVOLUTION_HEIGHT_EXT = 0x8019; - public static final int GL_CONVOLUTION_HINT_SGIX = 0x8316; - public static final int GL_CONVOLUTION_WIDTH = 0x8018; - public static final int GL_CONVOLUTION_WIDTH_EXT = 0x8018; - public static final int GL_CON_0_ATI = 0x8941; - public static final int GL_CON_10_ATI = 0x894B; - public static final int GL_CON_11_ATI = 0x894C; - public static final int GL_CON_12_ATI = 0x894D; - public static final int GL_CON_13_ATI = 0x894E; - public static final int GL_CON_14_ATI = 0x894F; - public static final int GL_CON_15_ATI = 0x8950; - public static final int GL_CON_16_ATI = 0x8951; - public static final int GL_CON_17_ATI = 0x8952; - public static final int GL_CON_18_ATI = 0x8953; - public static final int GL_CON_19_ATI = 0x8954; - public static final int GL_CON_1_ATI = 0x8942; - public static final int GL_CON_20_ATI = 0x8955; - public static final int GL_CON_21_ATI = 0x8956; - public static final int GL_CON_22_ATI = 0x8957; - public static final int GL_CON_23_ATI = 0x8958; - public static final int GL_CON_24_ATI = 0x8959; - public static final int GL_CON_25_ATI = 0x895A; - public static final int GL_CON_26_ATI = 0x895B; - public static final int GL_CON_27_ATI = 0x895C; - public static final int GL_CON_28_ATI = 0x895D; - public static final int GL_CON_29_ATI = 0x895E; - public static final int GL_CON_2_ATI = 0x8943; - public static final int GL_CON_30_ATI = 0x895F; - public static final int GL_CON_31_ATI = 0x8960; - public static final int GL_CON_3_ATI = 0x8944; - public static final int GL_CON_4_ATI = 0x8945; - public static final int GL_CON_5_ATI = 0x8946; - public static final int GL_CON_6_ATI = 0x8947; - public static final int GL_CON_7_ATI = 0x8948; - public static final int GL_CON_8_ATI = 0x8949; - public static final int GL_CON_9_ATI = 0x894A; - public static final int GL_COPY = 0x1503; - public static final int GL_COPY_INVERTED = 0x150C; - public static final int GL_COPY_PIXEL_TOKEN = 0x0706; - public static final int GL_CUBIC_EXT = 0x8334; - public static final int GL_CUBIC_HP = 0x815F; - public static final int GL_CULL_FACE = 0x0B44; - public static final int GL_CULL_FACE_MODE = 0x0B45; - public static final int GL_CULL_FRAGMENT_NV = 0x86E7; - public static final int GL_CULL_MODES_NV = 0x86E0; - public static final int GL_CULL_VERTEX_EXT = 0x81AA; - public static final int GL_CULL_VERTEX_EYE_POSITION_EXT = 0x81AB; - public static final int GL_CULL_VERTEX_IBM = 103050; - public static final int GL_CULL_VERTEX_OBJECT_POSITION_EXT = 0x81AC; - public static final int GL_CURRENT_ATTRIB_NV = 0x8626; - public static final int GL_CURRENT_BINORMAL_EXT = 0x843C; - public static final int GL_CURRENT_BIT = 0x00000001; - public static final int GL_CURRENT_COLOR = 0x0B00; - public static final int GL_CURRENT_FOG_COORDINATE_EXT = 0x8453; - public static final int GL_CURRENT_INDEX = 0x0B01; - public static final int GL_CURRENT_MATRIX_INDEX_ARB = 0x8845; - public static final int GL_CURRENT_MATRIX_NV = 0x8641; - public static final int GL_CURRENT_MATRIX_STACK_DEPTH_NV = 0x8640; - public static final int GL_CURRENT_NORMAL = 0x0B02; - public static final int GL_CURRENT_PALETTE_MATRIX_ARB = 0x8843; - public static final int GL_CURRENT_RASTER_COLOR = 0x0B04; - public static final int GL_CURRENT_RASTER_DISTANCE = 0x0B09; - public static final int GL_CURRENT_RASTER_INDEX = 0x0B05; - public static final int GL_CURRENT_RASTER_NORMAL_SGIX = 0x8406; - public static final int GL_CURRENT_RASTER_POSITION = 0x0B07; - public static final int GL_CURRENT_RASTER_POSITION_VALID = 0x0B08; - public static final int GL_CURRENT_RASTER_TEXTURE_COORDS = 0x0B06; - public static final int GL_CURRENT_SECONDARY_COLOR_EXT = 0x8459; - public static final int GL_CURRENT_TANGENT_EXT = 0x843B; - public static final int GL_CURRENT_TEXTURE_COORDS = 0x0B03; - public static final int GL_CURRENT_VERTEX_EXT = 0x87E2; - public static final int GL_CURRENT_VERTEX_WEIGHT_EXT = 0x850B; - public static final int GL_CURRENT_WEIGHT_ARB = 0x86A8; - public static final int GL_CW = 0x0900; - public static final int GL_DECAL = 0x2101; - public static final int GL_DECR = 0x1E03; - public static final int GL_DECR_WRAP_EXT = 0x8508; - public static final int GL_DEFORMATIONS_MASK_SGIX = 0x8196; - public static final int GL_DEPENDENT_AR_TEXTURE_2D_NV = 0x86E9; - public static final int GL_DEPENDENT_GB_TEXTURE_2D_NV = 0x86EA; - public static final int GL_DEPTH = 0x1801; - public static final int GL_DEPTH_BIAS = 0x0D1F; - public static final int GL_DEPTH_BITS = 0x0D56; - public static final int GL_DEPTH_BUFFER_BIT = 0x00000100; - public static final int GL_DEPTH_CLEAR_VALUE = 0x0B73; - public static final int GL_DEPTH_COMPONENT = 0x1902; - public static final int GL_DEPTH_COMPONENT16_SGIX = 0x81A5; - public static final int GL_DEPTH_COMPONENT24_SGIX = 0x81A6; - public static final int GL_DEPTH_COMPONENT32_SGIX = 0x81A7; - public static final int GL_DEPTH_FUNC = 0x0B74; - public static final int GL_DEPTH_PASS_INSTRUMENT_COUNTERS_SGIX = 0x8311; - public static final int GL_DEPTH_PASS_INSTRUMENT_MAX_SGIX = 0x8312; - public static final int GL_DEPTH_PASS_INSTRUMENT_SGIX = 0x8310; - public static final int GL_DEPTH_RANGE = 0x0B70; - public static final int GL_DEPTH_SCALE = 0x0D1E; - public static final int GL_DEPTH_STENCIL_MESA = 0x8750; - public static final int GL_DEPTH_STENCIL_NV = 0x84F9; - public static final int GL_DEPTH_STENCIL_TO_BGRA_NV = 0x886F; - public static final int GL_DEPTH_STENCIL_TO_RGBA_NV = 0x886E; - public static final int GL_DEPTH_TEST = 0x0B71; - public static final int GL_DEPTH_WRITEMASK = 0x0B72; - public static final int GL_DETAIL_TEXTURE_2D_BINDING_SGIS = 0x8096; - public static final int GL_DETAIL_TEXTURE_2D_SGIS = 0x8095; - public static final int GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS = 0x809C; - public static final int GL_DETAIL_TEXTURE_LEVEL_SGIS = 0x809A; - public static final int GL_DETAIL_TEXTURE_MODE_SGIS = 0x809B; - public static final int GL_DIFFUSE = 0x1201; - public static final int GL_DISCARD_ATI = 0x8763; - public static final int GL_DISCARD_NV = 0x8530; - public static final int GL_DISTANCE_ATTENUATION_EXT = 0x8129; - public static final int GL_DISTANCE_ATTENUATION_SGIS = 0x8129; - public static final int GL_DITHER = 0x0BD0; - public static final int GL_DOMAIN = 0x0A02; - public static final int GL_DONT_CARE = 0x1100; - public static final int GL_DOT2_ADD_ATI = 0x896C; - public static final int GL_DOT3_ATI = 0x8966; - public static final int GL_DOT3_RGB = 0x86AE; - public static final int GL_DOT3_RGBA = 0x86AF; - public static final int GL_DOT3_RGBA_ARB = 0x86AF; - public static final int GL_DOT3_RGBA_EXT = 0x8741; - public static final int GL_DOT3_RGB_ARB = 0x86AE; - public static final int GL_DOT3_RGB_EXT = 0x8740; - public static final int GL_DOT4_ATI = 0x8967; - public static final int GL_DOT_PRODUCT_CONST_EYE_REFLECT_CUBE_MAP_NV = 0x86F3; - public static final int GL_DOT_PRODUCT_DEPTH_REPLACE_NV = 0x86ED; - public static final int GL_DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV = 0x86F1; - public static final int GL_DOT_PRODUCT_NV = 0x86EC; - public static final int GL_DOT_PRODUCT_REFLECT_CUBE_MAP_NV = 0x86F2; - public static final int GL_DOT_PRODUCT_TEXTURE_2D_NV = 0x86EE; - public static final int GL_DOT_PRODUCT_TEXTURE_3D_NV = 0x86EF; - public static final int GL_DOT_PRODUCT_TEXTURE_CUBE_MAP_NV = 0x86F0; - public static final int GL_DOT_PRODUCT_TEXTURE_RECTANGLE_NV = 0x864E; - public static final int GL_DOUBLE = 0x140A; - public static final int GL_DOUBLEBUFFER = 0x0C32; - public static final int GL_DRAW_BUFFER = 0x0C01; - public static final int GL_DRAW_PIXEL_TOKEN = 0x0705; - public static final int GL_DSDT8_MAG8_INTENSITY8_NV = 0x870B; - public static final int GL_DSDT8_MAG8_NV = 0x870A; - public static final int GL_DSDT8_NV = 0x8709; - public static final int GL_DSDT_MAG_INTENSITY_NV = 0x86DC; - public static final int GL_DSDT_MAG_NV = 0x86F6; - public static final int GL_DSDT_MAG_VIB_NV = 0x86F7; - public static final int GL_DSDT_NV = 0x86F5; - public static final int GL_DST_ALPHA = 0x0304; - public static final int GL_DST_COLOR = 0x0306; - public static final int GL_DS_BIAS_NV = 0x8716; - public static final int GL_DS_SCALE_NV = 0x8710; - public static final int GL_DT_BIAS_NV = 0x8717; - public static final int GL_DT_SCALE_NV = 0x8711; - public static final int GL_DU8DV8_ATI = 0x877A; - public static final int GL_DUAL_ALPHA12_SGIS = 0x8112; - public static final int GL_DUAL_ALPHA16_SGIS = 0x8113; - public static final int GL_DUAL_ALPHA4_SGIS = 0x8110; - public static final int GL_DUAL_ALPHA8_SGIS = 0x8111; - public static final int GL_DUAL_INTENSITY12_SGIS = 0x811A; - public static final int GL_DUAL_INTENSITY16_SGIS = 0x811B; - public static final int GL_DUAL_INTENSITY4_SGIS = 0x8118; - public static final int GL_DUAL_INTENSITY8_SGIS = 0x8119; - public static final int GL_DUAL_LUMINANCE12_SGIS = 0x8116; - public static final int GL_DUAL_LUMINANCE16_SGIS = 0x8117; - public static final int GL_DUAL_LUMINANCE4_SGIS = 0x8114; - public static final int GL_DUAL_LUMINANCE8_SGIS = 0x8115; - public static final int GL_DUAL_LUMINANCE_ALPHA4_SGIS = 0x811C; - public static final int GL_DUAL_LUMINANCE_ALPHA8_SGIS = 0x811D; - public static final int GL_DUAL_TEXTURE_SELECT_SGIS = 0x8124; - public static final int GL_DUDV_ATI = 0x8779; - public static final int GL_DYNAMIC_ATI = 0x8761; - public static final int GL_EDGEFLAG_BIT_PGI = 0x00040000; - public static final int GL_EDGE_FLAG = 0x0B43; - public static final int GL_EDGE_FLAG_ARRAY = 0x8079; - public static final int GL_EDGE_FLAG_ARRAY_COUNT_EXT = 0x808D; - public static final int GL_EDGE_FLAG_ARRAY_EXT = 0x8079; - public static final int GL_EDGE_FLAG_ARRAY_LIST_IBM = 103075; - public static final int GL_EDGE_FLAG_ARRAY_LIST_STRIDE_IBM = 103085; - public static final int GL_EDGE_FLAG_ARRAY_POINTER = 0x8093; - public static final int GL_EDGE_FLAG_ARRAY_POINTER_EXT = 0x8093; - public static final int GL_EDGE_FLAG_ARRAY_STRIDE = 0x808C; - public static final int GL_EDGE_FLAG_ARRAY_STRIDE_EXT = 0x808C; - public static final int GL_EIGHTH_BIT_ATI = 0x00000020; - public static final int GL_EMBOSS_CONSTANT_NV = 0x855E; - public static final int GL_EMBOSS_LIGHT_NV = 0x855D; - public static final int GL_EMBOSS_MAP_NV = 0x855F; - public static final int GL_EMISSION = 0x1600; - public static final int GL_ENABLE_BIT = 0x00002000; - public static final int GL_EQUAL = 0x0202; - public static final int GL_EQUIV = 0x1509; - public static final int GL_EVAL_2D_NV = 0x86C0; - public static final int GL_EVAL_BIT = 0x00010000; - public static final int GL_EVAL_FRACTIONAL_TESSELLATION_NV = 0x86C5; - public static final int GL_EVAL_TRIANGULAR_2D_NV = 0x86C1; - public static final int GL_EVAL_VERTEX_ATTRIB0_NV = 0x86C6; - public static final int GL_EVAL_VERTEX_ATTRIB10_NV = 0x86D0; - public static final int GL_EVAL_VERTEX_ATTRIB11_NV = 0x86D1; - public static final int GL_EVAL_VERTEX_ATTRIB12_NV = 0x86D2; - public static final int GL_EVAL_VERTEX_ATTRIB13_NV = 0x86D3; - public static final int GL_EVAL_VERTEX_ATTRIB14_NV = 0x86D4; - public static final int GL_EVAL_VERTEX_ATTRIB15_NV = 0x86D5; - public static final int GL_EVAL_VERTEX_ATTRIB1_NV = 0x86C7; - public static final int GL_EVAL_VERTEX_ATTRIB2_NV = 0x86C8; - public static final int GL_EVAL_VERTEX_ATTRIB3_NV = 0x86C9; - public static final int GL_EVAL_VERTEX_ATTRIB4_NV = 0x86CA; - public static final int GL_EVAL_VERTEX_ATTRIB5_NV = 0x86CB; - public static final int GL_EVAL_VERTEX_ATTRIB6_NV = 0x86CC; - public static final int GL_EVAL_VERTEX_ATTRIB7_NV = 0x86CD; - public static final int GL_EVAL_VERTEX_ATTRIB8_NV = 0x86CE; - public static final int GL_EVAL_VERTEX_ATTRIB9_NV = 0x86CF; - public static final int GL_EXP = 0x0800; - public static final int GL_EXP2 = 0x0801; - public static final int GL_EXPAND_NEGATE_NV = 0x8539; - public static final int GL_EXPAND_NORMAL_NV = 0x8538; - public static final int GL_EXTENSIONS = 0x1F03; - public static final int GL_EXT_422_pixels = 1; - public static final int GL_EXT_abgr = 1; - public static final int GL_EXT_bgra = 1; - public static final int GL_EXT_blend_color = 1; - public static final int GL_EXT_blend_func_separate = 1; - public static final int GL_EXT_blend_logic_op = 1; - public static final int GL_EXT_blend_minmax = 1; - public static final int GL_EXT_blend_subtract = 1; - public static final int GL_EXT_clip_volume_hint = 1; - public static final int GL_EXT_cmyka = 1; - public static final int GL_EXT_color_matrix = 1; - public static final int GL_EXT_color_subtable = 1; - public static final int GL_EXT_compiled_vertex_array = 1; - public static final int GL_EXT_convolution = 1; - public static final int GL_EXT_coordinate_frame = 1; - public static final int GL_EXT_copy_texture = 1; - public static final int GL_EXT_cull_vertex = 1; - public static final int GL_EXT_draw_range_elements = 1; - public static final int GL_EXT_fog_coord = 1; - public static final int GL_EXT_histogram = 1; - public static final int GL_EXT_index_array_formats = 1; - public static final int GL_EXT_index_func = 1; - public static final int GL_EXT_index_material = 1; - public static final int GL_EXT_index_texture = 1; - public static final int GL_EXT_light_texture = 1; - public static final int GL_EXT_misc_attribute = 1; - public static final int GL_EXT_multi_draw_arrays = 1; - public static final int GL_EXT_multisample = 1; - public static final int GL_EXT_packed_pixels = 1; - public static final int GL_EXT_paletted_texture = 1; - public static final int GL_EXT_pixel_transform = 1; - public static final int GL_EXT_pixel_transform_color_table = 1; - public static final int GL_EXT_point_parameters = 1; - public static final int GL_EXT_polygon_offset = 1; - public static final int GL_EXT_rescale_normal = 1; - public static final int GL_EXT_secondary_color = 1; - public static final int GL_EXT_separate_specular_color = 1; - public static final int GL_EXT_shared_texture_palette = 1; - public static final int GL_EXT_stencil_wrap = 1; - public static final int GL_EXT_subtexture = 1; - public static final int GL_EXT_texture = 1; - public static final int GL_EXT_texture3D = 1; - public static final int GL_EXT_texture_env_add = 1; - public static final int GL_EXT_texture_env_combine = 1; - public static final int GL_EXT_texture_env_dot3 = 1; - public static final int GL_EXT_texture_filter_anisotropic = 1; - public static final int GL_EXT_texture_lod_bias = 1; - public static final int GL_EXT_texture_object = 1; - public static final int GL_EXT_texture_perturb_normal = 1; - public static final int GL_EXT_vertex_array = 1; - public static final int GL_EXT_vertex_shader = 1; - public static final int GL_EXT_vertex_weighting = 1; - public static final int GL_EYE_DISTANCE_TO_LINE_SGIS = 0x81F2; - public static final int GL_EYE_DISTANCE_TO_POINT_SGIS = 0x81F0; - public static final int GL_EYE_LINEAR = 0x2400; - public static final int GL_EYE_LINE_SGIS = 0x81F6; - public static final int GL_EYE_PLANE = 0x2502; - public static final int GL_EYE_PLANE_ABSOLUTE_NV = 0x855C; - public static final int GL_EYE_POINT_SGIS = 0x81F4; - public static final int GL_EYE_RADIAL_NV = 0x855B; - public static final int GL_E_TIMES_F_NV = 0x8531; - public static final int GL_FASTEST = 0x1101; - public static final int GL_FEEDBACK = 0x1C01; - public static final int GL_FEEDBACK_BUFFER_POINTER = 0x0DF0; - public static final int GL_FEEDBACK_BUFFER_SIZE = 0x0DF1; - public static final int GL_FEEDBACK_BUFFER_TYPE = 0x0DF2; - public static final int GL_FENCE_CONDITION_NV = 0x84F4; - public static final int GL_FENCE_STATUS_NV = 0x84F3; - public static final int GL_FILL = 0x1B02; - public static final int GL_FILTER4_SGIS = 0x8146; - public static final int GL_FLAT = 0x1D00; - public static final int GL_FLOAT = 0x1406; - public static final int GL_FOG = 0x0B60; - public static final int GL_FOG_BIT = 0x00000080; - public static final int GL_FOG_COLOR = 0x0B66; - public static final int GL_FOG_COORDINATE_ARRAY_EXT = 0x8457; - public static final int GL_FOG_COORDINATE_ARRAY_LIST_IBM = 103076; - public static final int GL_FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM = 103086; - public static final int GL_FOG_COORDINATE_ARRAY_POINTER_EXT = 0x8456; - public static final int GL_FOG_COORDINATE_ARRAY_STRIDE_EXT = 0x8455; - public static final int GL_FOG_COORDINATE_ARRAY_TYPE_EXT = 0x8454; - public static final int GL_FOG_COORDINATE_EXT = 0x8451; - public static final int GL_FOG_COORDINATE_SOURCE_EXT = 0x8450; - public static final int GL_FOG_DENSITY = 0x0B62; - public static final int GL_FOG_DISTANCE_MODE_NV = 0x855A; - public static final int GL_FOG_END = 0x0B64; - public static final int GL_FOG_FUNC_POINTS_SGIS = 0x812B; - public static final int GL_FOG_FUNC_SGIS = 0x812A; - public static final int GL_FOG_HINT = 0x0C54; - public static final int GL_FOG_INDEX = 0x0B61; - public static final int GL_FOG_MODE = 0x0B65; - public static final int GL_FOG_OFFSET_SGIX = 0x8198; - public static final int GL_FOG_OFFSET_VALUE_SGIX = 0x8199; - public static final int GL_FOG_SCALE_SGIX = 0x81FC; - public static final int GL_FOG_SCALE_VALUE_SGIX = 0x81FD; - public static final int GL_FOG_SPECULAR_TEXTURE_WIN = 0x80EC; - public static final int GL_FOG_START = 0x0B63; - public static final int GL_FORMAT_SUBSAMPLE_244_244_OML = 0x8983; - public static final int GL_FORMAT_SUBSAMPLE_24_24_OML = 0x8982; - public static final int GL_FRAGMENT_COLOR_EXT = 0x834C; - public static final int GL_FRAGMENT_COLOR_MATERIAL_FACE_SGIX = 0x8402; - public static final int GL_FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX = 0x8403; - public static final int GL_FRAGMENT_COLOR_MATERIAL_SGIX = 0x8401; - public static final int GL_FRAGMENT_DEPTH_EXT = 0x8452; - public static final int GL_FRAGMENT_LIGHT0_SGIX = 0x840C; - public static final int GL_FRAGMENT_LIGHT1_SGIX = 0x840D; - public static final int GL_FRAGMENT_LIGHT2_SGIX = 0x840E; - public static final int GL_FRAGMENT_LIGHT3_SGIX = 0x840F; - public static final int GL_FRAGMENT_LIGHT4_SGIX = 0x8410; - public static final int GL_FRAGMENT_LIGHT5_SGIX = 0x8411; - public static final int GL_FRAGMENT_LIGHT6_SGIX = 0x8412; - public static final int GL_FRAGMENT_LIGHT7_SGIX = 0x8413; - public static final int GL_FRAGMENT_LIGHTING_SGIX = 0x8400; - public static final int GL_FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX = 0x840A; - public static final int GL_FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX = 0x8408; - public static final int GL_FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX = 0x840B; - public static final int GL_FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX = 0x8409; - public static final int GL_FRAGMENT_MATERIAL_EXT = 0x8349; - public static final int GL_FRAGMENT_NORMAL_EXT = 0x834A; - public static final int GL_FRAGMENT_SHADER_ATI = 0x8920; - public static final int GL_FRAMEZOOM_FACTOR_SGIX = 0x818C; - public static final int GL_FRAMEZOOM_SGIX = 0x818B; - public static final int GL_FRONT = 0x0404; - public static final int GL_FRONT_AND_BACK = 0x0408; - public static final int GL_FRONT_FACE = 0x0B46; - public static final int GL_FRONT_LEFT = 0x0400; - public static final int GL_FRONT_RIGHT = 0x0401; - public static final int GL_FULL_RANGE_EXT = 0x87E1; - public static final int GL_FULL_STIPPLE_HINT_PGI = 0x1A219; - public static final int GL_FUNC_ADD = 0x8006; - public static final int GL_FUNC_ADD_EXT = 0x8006; - public static final int GL_FUNC_REVERSE_SUBTRACT = 0x800B; - public static final int GL_FUNC_REVERSE_SUBTRACT_EXT = 0x800B; - public static final int GL_FUNC_SUBTRACT = 0x800A; - public static final int GL_FUNC_SUBTRACT_EXT = 0x800A; - public static final int GL_GENERATE_MIPMAP_HINT_SGIS = 0x8192; - public static final int GL_GENERATE_MIPMAP_SGIS = 0x8191; - public static final int GL_GEOMETRY_DEFORMATION_BIT_SGIX = 0x00000002; - public static final int GL_GEOMETRY_DEFORMATION_SGIX = 0x8194; - public static final int GL_GEQUAL = 0x0206; - public static final int GL_GLEXT_VERSION = 9; - public static final int GL_GLOBAL_ALPHA_FACTOR_SUN = 0x81DA; - public static final int GL_GLOBAL_ALPHA_SUN = 0x81D9; - public static final int GL_GREATER = 0x0204; - public static final int GL_GREEN = 0x1904; - public static final int GL_GREEN_BIAS = 0x0D19; - public static final int GL_GREEN_BITS = 0x0D53; - public static final int GL_GREEN_BIT_ATI = 0x00000002; - public static final int GL_GREEN_MAX_CLAMP_INGR = 0x8565; - public static final int GL_GREEN_MIN_CLAMP_INGR = 0x8561; - public static final int GL_GREEN_SCALE = 0x0D18; - public static final int GL_HALF_BIAS_NEGATE_NV = 0x853B; - public static final int GL_HALF_BIAS_NORMAL_NV = 0x853A; - public static final int GL_HALF_BIT_ATI = 0x00000008; - public static final int GL_HILO16_NV = 0x86F8; - public static final int GL_HILO_NV = 0x86F4; - public static final int GL_HINT_BIT = 0x00008000; - public static final int GL_HISTOGRAM = 0x8024; - public static final int GL_HISTOGRAM_ALPHA_SIZE = 0x802B; - public static final int GL_HISTOGRAM_ALPHA_SIZE_EXT = 0x802B; - public static final int GL_HISTOGRAM_BLUE_SIZE = 0x802A; - public static final int GL_HISTOGRAM_BLUE_SIZE_EXT = 0x802A; - public static final int GL_HISTOGRAM_EXT = 0x8024; - public static final int GL_HISTOGRAM_FORMAT = 0x8027; - public static final int GL_HISTOGRAM_FORMAT_EXT = 0x8027; - public static final int GL_HISTOGRAM_GREEN_SIZE = 0x8029; - public static final int GL_HISTOGRAM_GREEN_SIZE_EXT = 0x8029; - public static final int GL_HISTOGRAM_LUMINANCE_SIZE = 0x802C; - public static final int GL_HISTOGRAM_LUMINANCE_SIZE_EXT = 0x802C; - public static final int GL_HISTOGRAM_RED_SIZE = 0x8028; - public static final int GL_HISTOGRAM_RED_SIZE_EXT = 0x8028; - public static final int GL_HISTOGRAM_SINK = 0x802D; - public static final int GL_HISTOGRAM_SINK_EXT = 0x802D; - public static final int GL_HISTOGRAM_WIDTH = 0x8026; - public static final int GL_HISTOGRAM_WIDTH_EXT = 0x8026; - public static final int GL_HI_BIAS_NV = 0x8714; - public static final int GL_HI_SCALE_NV = 0x870E; - public static final int GL_HP_convolution_border_modes = 1; - public static final int GL_HP_image_transform = 1; - public static final int GL_HP_occlusion_test = 1; - public static final int GL_HP_texture_lighting = 1; - public static final int GL_IBM_cull_vertex = 1; - public static final int GL_IBM_multimode_draw_arrays = 1; - public static final int GL_IBM_rasterpos_clip = 1; - public static final int GL_IBM_vertex_array_lists = 1; - public static final int GL_IDENTITY_NV = 0x862A; - public static final int GL_IGNORE_BORDER = 0x8150; - public static final int GL_IGNORE_BORDER_HP = 0x8150; - public static final int GL_IMAGE_CUBIC_WEIGHT_HP = 0x815E; - public static final int GL_IMAGE_MAG_FILTER_HP = 0x815C; - public static final int GL_IMAGE_MIN_FILTER_HP = 0x815D; - public static final int GL_IMAGE_ROTATE_ANGLE_HP = 0x8159; - public static final int GL_IMAGE_ROTATE_ORIGIN_X_HP = 0x815A; - public static final int GL_IMAGE_ROTATE_ORIGIN_Y_HP = 0x815B; - public static final int GL_IMAGE_SCALE_X_HP = 0x8155; - public static final int GL_IMAGE_SCALE_Y_HP = 0x8156; - public static final int GL_IMAGE_TRANSFORM_2D_HP = 0x8161; - public static final int GL_IMAGE_TRANSLATE_X_HP = 0x8157; - public static final int GL_IMAGE_TRANSLATE_Y_HP = 0x8158; - public static final int GL_INCR = 0x1E02; - public static final int GL_INCR_WRAP_EXT = 0x8507; - public static final int GL_INDEX_ARRAY = 0x8077; - public static final int GL_INDEX_ARRAY_COUNT_EXT = 0x8087; - public static final int GL_INDEX_ARRAY_EXT = 0x8077; - public static final int GL_INDEX_ARRAY_LIST_IBM = 103073; - public static final int GL_INDEX_ARRAY_LIST_STRIDE_IBM = 103083; - public static final int GL_INDEX_ARRAY_POINTER = 0x8091; - public static final int GL_INDEX_ARRAY_POINTER_EXT = 0x8091; - public static final int GL_INDEX_ARRAY_STRIDE = 0x8086; - public static final int GL_INDEX_ARRAY_STRIDE_EXT = 0x8086; - public static final int GL_INDEX_ARRAY_TYPE = 0x8085; - public static final int GL_INDEX_ARRAY_TYPE_EXT = 0x8085; - public static final int GL_INDEX_BITS = 0x0D51; - public static final int GL_INDEX_BIT_PGI = 0x00080000; - public static final int GL_INDEX_CLEAR_VALUE = 0x0C20; - public static final int GL_INDEX_LOGIC_OP = 0x0BF1; - public static final int GL_INDEX_MATERIAL_EXT = 0x81B8; - public static final int GL_INDEX_MATERIAL_FACE_EXT = 0x81BA; - public static final int GL_INDEX_MATERIAL_PARAMETER_EXT = 0x81B9; - public static final int GL_INDEX_MODE = 0x0C30; - public static final int GL_INDEX_OFFSET = 0x0D13; - public static final int GL_INDEX_SHIFT = 0x0D12; - public static final int GL_INDEX_TEST_EXT = 0x81B5; - public static final int GL_INDEX_TEST_FUNC_EXT = 0x81B6; - public static final int GL_INDEX_TEST_REF_EXT = 0x81B7; - public static final int GL_INDEX_WRITEMASK = 0x0C21; - public static final int GL_INGR_color_clamp = 1; - public static final int GL_INGR_interlace_read = 1; - public static final int GL_INSTRUMENT_BUFFER_POINTER_SGIX = 0x8180; - public static final int GL_INSTRUMENT_MEASUREMENTS_SGIX = 0x8181; - public static final int GL_INT = 0x1404; - public static final int GL_INTEL_parallel_arrays = 1; - public static final int GL_INTENSITY = 0x8049; - public static final int GL_INTENSITY12 = 0x804C; - public static final int GL_INTENSITY12_EXT = 0x804C; - public static final int GL_INTENSITY16 = 0x804D; - public static final int GL_INTENSITY16_EXT = 0x804D; - public static final int GL_INTENSITY4 = 0x804A; - public static final int GL_INTENSITY4_EXT = 0x804A; - public static final int GL_INTENSITY8 = 0x804B; - public static final int GL_INTENSITY8_EXT = 0x804B; - public static final int GL_INTENSITY_EXT = 0x8049; - public static final int GL_INTERLACE_OML = 0x8980; - public static final int GL_INTERLACE_READ_INGR = 0x8568; - public static final int GL_INTERLACE_READ_OML = 0x8981; - public static final int GL_INTERLACE_SGIX = 0x8094; - public static final int GL_INTERPOLATE = 0x8575; - public static final int GL_INTERPOLATE_ARB = 0x8575; - public static final int GL_INTERPOLATE_EXT = 0x8575; - public static final int GL_INVALID_ENUM = 0x0500; - public static final int GL_INVALID_OPERATION = 0x0502; - public static final int GL_INVALID_VALUE = 0x0501; - public static final int GL_INVARIANT_DATATYPE_EXT = 0x87EB; - public static final int GL_INVARIANT_EXT = 0x87C2; - public static final int GL_INVARIANT_VALUE_EXT = 0x87EA; - public static final int GL_INVERSE_NV = 0x862B; - public static final int GL_INVERSE_TRANSPOSE_NV = 0x862D; - public static final int GL_INVERT = 0x150A; - public static final int GL_INVERTED_SCREEN_W_REND = 0x8491; - public static final int GL_IR_INSTRUMENT1_SGIX = 0x817F; - public static final int GL_IUI_N3F_V2F_EXT = 0x81AF; - public static final int GL_IUI_N3F_V3F_EXT = 0x81B0; - public static final int GL_IUI_V2F_EXT = 0x81AD; - public static final int GL_IUI_V3F_EXT = 0x81AE; - public static final int GL_KEEP = 0x1E00; - public static final int GL_LEFT = 0x0406; - public static final int GL_LEQUAL = 0x0203; - public static final int GL_LERP_ATI = 0x8969; - public static final int GL_LESS = 0x0201; - public static final int GL_LIGHT0 = 0x4000; - public static final int GL_LIGHT1 = 0x4001; - public static final int GL_LIGHT2 = 0x4002; - public static final int GL_LIGHT3 = 0x4003; - public static final int GL_LIGHT4 = 0x4004; - public static final int GL_LIGHT5 = 0x4005; - public static final int GL_LIGHT6 = 0x4006; - public static final int GL_LIGHT7 = 0x4007; - public static final int GL_LIGHTING = 0x0B50; - public static final int GL_LIGHTING_BIT = 0x00000040; - public static final int GL_LIGHT_ENV_MODE_SGIX = 0x8407; - public static final int GL_LIGHT_MODEL_AMBIENT = 0x0B53; - public static final int GL_LIGHT_MODEL_COLOR_CONTROL = 0x81F8; - public static final int GL_LIGHT_MODEL_COLOR_CONTROL_EXT = 0x81F8; - public static final int GL_LIGHT_MODEL_LOCAL_VIEWER = 0x0B51; - public static final int GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE = 0x85B0; - public static final int GL_LIGHT_MODEL_TWO_SIDE = 0x0B52; - public static final int GL_LINE = 0x1B01; - public static final int GL_LINEAR = 0x2601; - public static final int GL_LINEAR_ATTENUATION = 0x1208; - public static final int GL_LINEAR_CLIPMAP_LINEAR_SGIX = 0x8170; - public static final int GL_LINEAR_CLIPMAP_NEAREST_SGIX = 0x844F; - public static final int GL_LINEAR_DETAIL_ALPHA_SGIS = 0x8098; - public static final int GL_LINEAR_DETAIL_COLOR_SGIS = 0x8099; - public static final int GL_LINEAR_DETAIL_SGIS = 0x8097; - public static final int GL_LINEAR_MIPMAP_LINEAR = 0x2703; - public static final int GL_LINEAR_MIPMAP_NEAREST = 0x2701; - public static final int GL_LINEAR_SHARPEN_ALPHA_SGIS = 0x80AE; - public static final int GL_LINEAR_SHARPEN_COLOR_SGIS = 0x80AF; - public static final int GL_LINEAR_SHARPEN_SGIS = 0x80AD; - public static final int GL_LINES = 0x0001; - public static final int GL_LINE_BIT = 0x00000004; - public static final int GL_LINE_LOOP = 0x0002; - public static final int GL_LINE_RESET_TOKEN = 0x0707; - public static final int GL_LINE_SMOOTH = 0x0B20; - public static final int GL_LINE_SMOOTH_HINT = 0x0C52; - public static final int GL_LINE_STIPPLE = 0x0B24; - public static final int GL_LINE_STIPPLE_PATTERN = 0x0B25; - public static final int GL_LINE_STIPPLE_REPEAT = 0x0B26; - public static final int GL_LINE_STRIP = 0x0003; - public static final int GL_LINE_TOKEN = 0x0702; - public static final int GL_LINE_WIDTH = 0x0B21; - public static final int GL_LINE_WIDTH_GRANULARITY = 0x0B23; - public static final int GL_LINE_WIDTH_RANGE = 0x0B22; - public static final int GL_LIST_BASE = 0x0B32; - public static final int GL_LIST_BIT = 0x00020000; - public static final int GL_LIST_INDEX = 0x0B33; - public static final int GL_LIST_MODE = 0x0B30; - public static final int GL_LIST_PRIORITY_SGIX = 0x8182; - public static final int GL_LOAD = 0x0101; - public static final int GL_LOCAL_CONSTANT_DATATYPE_EXT = 0x87ED; - public static final int GL_LOCAL_CONSTANT_EXT = 0x87C3; - public static final int GL_LOCAL_CONSTANT_VALUE_EXT = 0x87EC; - public static final int GL_LOCAL_EXT = 0x87C4; - public static final int GL_LOGIC_OP = 0x0BF1; - public static final int GL_LOGIC_OP_MODE = 0x0BF0; - public static final int GL_LO_BIAS_NV = 0x8715; - public static final int GL_LO_SCALE_NV = 0x870F; - public static final int GL_LUMINANCE = 0x1909; - public static final int GL_LUMINANCE12 = 0x8041; - public static final int GL_LUMINANCE12_ALPHA12 = 0x8047; - public static final int GL_LUMINANCE12_ALPHA12_EXT = 0x8047; - public static final int GL_LUMINANCE12_ALPHA4 = 0x8046; - public static final int GL_LUMINANCE12_ALPHA4_EXT = 0x8046; - public static final int GL_LUMINANCE12_EXT = 0x8041; - public static final int GL_LUMINANCE16 = 0x8042; - public static final int GL_LUMINANCE16_ALPHA16 = 0x8048; - public static final int GL_LUMINANCE16_ALPHA16_EXT = 0x8048; - public static final int GL_LUMINANCE16_EXT = 0x8042; - public static final int GL_LUMINANCE4 = 0x803F; - public static final int GL_LUMINANCE4_ALPHA4 = 0x8043; - public static final int GL_LUMINANCE4_ALPHA4_EXT = 0x8043; - public static final int GL_LUMINANCE4_EXT = 0x803F; - public static final int GL_LUMINANCE6_ALPHA2 = 0x8044; - public static final int GL_LUMINANCE6_ALPHA2_EXT = 0x8044; - public static final int GL_LUMINANCE8 = 0x8040; - public static final int GL_LUMINANCE8_ALPHA8 = 0x8045; - public static final int GL_LUMINANCE8_ALPHA8_EXT = 0x8045; - public static final int GL_LUMINANCE8_EXT = 0x8040; - public static final int GL_LUMINANCE_ALPHA = 0x190A; - public static final int GL_MAD_ATI = 0x8968; - public static final int GL_MAGNITUDE_BIAS_NV = 0x8718; - public static final int GL_MAGNITUDE_SCALE_NV = 0x8712; - public static final int GL_MAP1_BINORMAL_EXT = 0x8446; - public static final int GL_MAP1_COLOR_4 = 0x0D90; - public static final int GL_MAP1_GRID_DOMAIN = 0x0DD0; - public static final int GL_MAP1_GRID_SEGMENTS = 0x0DD1; - public static final int GL_MAP1_INDEX = 0x0D91; - public static final int GL_MAP1_NORMAL = 0x0D92; - public static final int GL_MAP1_TANGENT_EXT = 0x8444; - public static final int GL_MAP1_TEXTURE_COORD_1 = 0x0D93; - public static final int GL_MAP1_TEXTURE_COORD_2 = 0x0D94; - public static final int GL_MAP1_TEXTURE_COORD_3 = 0x0D95; - public static final int GL_MAP1_TEXTURE_COORD_4 = 0x0D96; - public static final int GL_MAP1_VERTEX_3 = 0x0D97; - public static final int GL_MAP1_VERTEX_4 = 0x0D98; - public static final int GL_MAP1_VERTEX_ATTRIB0_4_NV = 0x8660; - public static final int GL_MAP1_VERTEX_ATTRIB10_4_NV = 0x866A; - public static final int GL_MAP1_VERTEX_ATTRIB11_4_NV = 0x866B; - public static final int GL_MAP1_VERTEX_ATTRIB12_4_NV = 0x866C; - public static final int GL_MAP1_VERTEX_ATTRIB13_4_NV = 0x866D; - public static final int GL_MAP1_VERTEX_ATTRIB14_4_NV = 0x866E; - public static final int GL_MAP1_VERTEX_ATTRIB15_4_NV = 0x866F; - public static final int GL_MAP1_VERTEX_ATTRIB1_4_NV = 0x8661; - public static final int GL_MAP1_VERTEX_ATTRIB2_4_NV = 0x8662; - public static final int GL_MAP1_VERTEX_ATTRIB3_4_NV = 0x8663; - public static final int GL_MAP1_VERTEX_ATTRIB4_4_NV = 0x8664; - public static final int GL_MAP1_VERTEX_ATTRIB5_4_NV = 0x8665; - public static final int GL_MAP1_VERTEX_ATTRIB6_4_NV = 0x8666; - public static final int GL_MAP1_VERTEX_ATTRIB7_4_NV = 0x8667; - public static final int GL_MAP1_VERTEX_ATTRIB8_4_NV = 0x8668; - public static final int GL_MAP1_VERTEX_ATTRIB9_4_NV = 0x8669; - public static final int GL_MAP2_BINORMAL_EXT = 0x8447; - public static final int GL_MAP2_COLOR_4 = 0x0DB0; - public static final int GL_MAP2_GRID_DOMAIN = 0x0DD2; - public static final int GL_MAP2_GRID_SEGMENTS = 0x0DD3; - public static final int GL_MAP2_INDEX = 0x0DB1; - public static final int GL_MAP2_NORMAL = 0x0DB2; - public static final int GL_MAP2_TANGENT_EXT = 0x8445; - public static final int GL_MAP2_TEXTURE_COORD_1 = 0x0DB3; - public static final int GL_MAP2_TEXTURE_COORD_2 = 0x0DB4; - public static final int GL_MAP2_TEXTURE_COORD_3 = 0x0DB5; - public static final int GL_MAP2_TEXTURE_COORD_4 = 0x0DB6; - public static final int GL_MAP2_VERTEX_3 = 0x0DB7; - public static final int GL_MAP2_VERTEX_4 = 0x0DB8; - public static final int GL_MAP2_VERTEX_ATTRIB0_4_NV = 0x8670; - public static final int GL_MAP2_VERTEX_ATTRIB10_4_NV = 0x867A; - public static final int GL_MAP2_VERTEX_ATTRIB11_4_NV = 0x867B; - public static final int GL_MAP2_VERTEX_ATTRIB12_4_NV = 0x867C; - public static final int GL_MAP2_VERTEX_ATTRIB13_4_NV = 0x867D; - public static final int GL_MAP2_VERTEX_ATTRIB14_4_NV = 0x867E; - public static final int GL_MAP2_VERTEX_ATTRIB15_4_NV = 0x867F; - public static final int GL_MAP2_VERTEX_ATTRIB1_4_NV = 0x8671; - public static final int GL_MAP2_VERTEX_ATTRIB2_4_NV = 0x8672; - public static final int GL_MAP2_VERTEX_ATTRIB3_4_NV = 0x8673; - public static final int GL_MAP2_VERTEX_ATTRIB4_4_NV = 0x8674; - public static final int GL_MAP2_VERTEX_ATTRIB5_4_NV = 0x8675; - public static final int GL_MAP2_VERTEX_ATTRIB6_4_NV = 0x8676; - public static final int GL_MAP2_VERTEX_ATTRIB7_4_NV = 0x8677; - public static final int GL_MAP2_VERTEX_ATTRIB8_4_NV = 0x8678; - public static final int GL_MAP2_VERTEX_ATTRIB9_4_NV = 0x8679; - public static final int GL_MAP_ATTRIB_U_ORDER_NV = 0x86C3; - public static final int GL_MAP_ATTRIB_V_ORDER_NV = 0x86C4; - public static final int GL_MAP_COLOR = 0x0D10; - public static final int GL_MAP_STENCIL = 0x0D11; - public static final int GL_MAP_TESSELLATION_NV = 0x86C2; - public static final int GL_MATERIAL_SIDE_HINT_PGI = 0x1A22C; - public static final int GL_MATRIX0_NV = 0x8630; - public static final int GL_MATRIX1_NV = 0x8631; - public static final int GL_MATRIX2_NV = 0x8632; - public static final int GL_MATRIX3_NV = 0x8633; - public static final int GL_MATRIX4_NV = 0x8634; - public static final int GL_MATRIX5_NV = 0x8635; - public static final int GL_MATRIX6_NV = 0x8636; - public static final int GL_MATRIX7_NV = 0x8637; - public static final int GL_MATRIX_EXT = 0x87C0; - public static final int GL_MATRIX_INDEX_ARRAY_ARB = 0x8844; - public static final int GL_MATRIX_INDEX_ARRAY_POINTER_ARB = 0x8849; - public static final int GL_MATRIX_INDEX_ARRAY_SIZE_ARB = 0x8846; - public static final int GL_MATRIX_INDEX_ARRAY_STRIDE_ARB = 0x8848; - public static final int GL_MATRIX_INDEX_ARRAY_TYPE_ARB = 0x8847; - public static final int GL_MATRIX_MODE = 0x0BA0; - public static final int GL_MATRIX_PALETTE_ARB = 0x8840; - public static final int GL_MAT_AMBIENT_AND_DIFFUSE_BIT_PGI = 0x00200000; - public static final int GL_MAT_AMBIENT_BIT_PGI = 0x00100000; - public static final int GL_MAT_COLOR_INDEXES_BIT_PGI = 0x01000000; - public static final int GL_MAT_DIFFUSE_BIT_PGI = 0x00400000; - public static final int GL_MAT_EMISSION_BIT_PGI = 0x00800000; - public static final int GL_MAT_SHININESS_BIT_PGI = 0x02000000; - public static final int GL_MAT_SPECULAR_BIT_PGI = 0x04000000; - public static final int GL_MAX = 0x8008; - public static final int GL_MAX_3D_TEXTURE_SIZE = 0x8073; - public static final int GL_MAX_3D_TEXTURE_SIZE_EXT = 0x8073; - public static final int GL_MAX_4D_TEXTURE_SIZE_SGIS = 0x8138; - public static final int GL_MAX_ACTIVE_LIGHTS_SGIX = 0x8405; - public static final int GL_MAX_ASYNC_DRAW_PIXELS_SGIX = 0x8360; - public static final int GL_MAX_ASYNC_HISTOGRAM_SGIX = 0x832D; - public static final int GL_MAX_ASYNC_READ_PIXELS_SGIX = 0x8361; - public static final int GL_MAX_ASYNC_TEX_IMAGE_SGIX = 0x835F; - public static final int GL_MAX_ATTRIB_STACK_DEPTH = 0x0D35; - public static final int GL_MAX_CLIENT_ATTRIB_STACK_DEPTH = 0x0D3B; - public static final int GL_MAX_CLIPMAP_DEPTH_SGIX = 0x8177; - public static final int GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX = 0x8178; - public static final int GL_MAX_CLIP_PLANES = 0x0D32; - public static final int GL_MAX_COLOR_MATRIX_STACK_DEPTH = 0x80B3; - public static final int GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI = 0x80B3; - public static final int GL_MAX_CONVOLUTION_HEIGHT = 0x801B; - public static final int GL_MAX_CONVOLUTION_HEIGHT_EXT = 0x801B; - public static final int GL_MAX_CONVOLUTION_WIDTH = 0x801A; - public static final int GL_MAX_CONVOLUTION_WIDTH_EXT = 0x801A; - public static final int GL_MAX_CUBE_MAP_TEXTURE_SIZE = 0x851C; - public static final int GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB = 0x851C; - public static final int GL_MAX_CUBE_MAP_TEXTURE_SIZE_EXT = 0x851C; - public static final int GL_MAX_DEFORMATION_ORDER_SGIX = 0x8197; - public static final int GL_MAX_ELEMENTS_INDICES = 0x80E9; - public static final int GL_MAX_ELEMENTS_INDICES_EXT = 0x80E9; - public static final int GL_MAX_ELEMENTS_VERTICES = 0x80E8; - public static final int GL_MAX_ELEMENTS_VERTICES_EXT = 0x80E8; - public static final int GL_MAX_EVAL_ORDER = 0x0D30; - public static final int GL_MAX_EXT = 0x8008; - public static final int GL_MAX_FOG_FUNC_POINTS_SGIS = 0x812C; - public static final int GL_MAX_FRAGMENT_LIGHTS_SGIX = 0x8404; - public static final int GL_MAX_FRAMEZOOM_FACTOR_SGIX = 0x818D; - public static final int GL_MAX_GENERAL_COMBINERS_NV = 0x854D; - public static final int GL_MAX_LIGHTS = 0x0D31; - public static final int GL_MAX_LIST_NESTING = 0x0B31; - public static final int GL_MAX_MAP_TESSELLATION_NV = 0x86D6; - public static final int GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB = 0x8841; - public static final int GL_MAX_MODELVIEW_STACK_DEPTH = 0x0D36; - public static final int GL_MAX_NAME_STACK_DEPTH = 0x0D37; - public static final int GL_MAX_OPTIMIZED_VERTEX_SHADER_INARIANTS_EXT = 0x87CD; - public static final int GL_MAX_OPTIMIZED_VERTEX_SHADER_INSTRUCTIONS_EXT = 0x87CA; - public static final int GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCALS_EXT = 0x87CE; - public static final int GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCAL_CONSTANTS_EXT = 0x87CC; - public static final int GL_MAX_OPTIMIZED_VERTEX_SHADER_VARIANTS_EXT = 0x87CB; - public static final int GL_MAX_PALETTE_MATRICES_ARB = 0x8842; - public static final int GL_MAX_PIXEL_MAP_TABLE = 0x0D34; - public static final int GL_MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT = 0x8337; - public static final int GL_MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI = 0x87F1; - public static final int GL_MAX_PROJECTION_STACK_DEPTH = 0x0D38; - public static final int GL_MAX_RATIONAL_EVAL_ORDER_NV = 0x86D7; - public static final int GL_MAX_SHININESS_NV = 0x8504; - public static final int GL_MAX_SPOT_EXPONENT_NV = 0x8505; - public static final int GL_MAX_TEXTURE_LOD_BIAS_EXT = 0x84FD; - public static final int GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF; - public static final int GL_MAX_TEXTURE_RECTANGLE_SIZE_NV = 0x84F8; - public static final int GL_MAX_TEXTURE_SIZE = 0x0D33; - public static final int GL_MAX_TEXTURE_STACK_DEPTH = 0x0D39; - public static final int GL_MAX_TEXTURE_UNITS = 0x84E2; - public static final int GL_MAX_TEXTURE_UNITS_ARB = 0x84E2; - public static final int GL_MAX_TRACK_MATRICES_NV = 0x862F; - public static final int GL_MAX_TRACK_MATRIX_STACK_DEPTH_NV = 0x862E; - public static final int GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV = 0x8520; - public static final int GL_MAX_VERTEX_HINT_PGI = 0x1A22D; - public static final int GL_MAX_VERTEX_SHADER_INSTRUCTIONS_EXT = 0x87C5; - public static final int GL_MAX_VERTEX_SHADER_INVARIANTS_EXT = 0x87C7; - public static final int GL_MAX_VERTEX_SHADER_LOCALS_EXT = 0x87C9; - public static final int GL_MAX_VERTEX_SHADER_LOCAL_CONSTANTS_EXT = 0x87C8; - public static final int GL_MAX_VERTEX_SHADER_VARIANTS_EXT = 0x87C6; - public static final int GL_MAX_VERTEX_STREAMS_ATI = 0x876B; - public static final int GL_MAX_VERTEX_UNITS_ARB = 0x86A4; - public static final int GL_MAX_VIEWPORT_DIMS = 0x0D3A; - public static final int GL_MESA_packed_depth_stencil = 1; - public static final int GL_MESA_resize_buffers = 1; - public static final int GL_MESA_sprite_point = 1; - public static final int GL_MESA_trace = 1; - public static final int GL_MESA_window_pos = 1; - public static final int GL_MIN = 0x8007; - public static final int GL_MINMAX = 0x802E; - public static final int GL_MINMAX_EXT = 0x802E; - public static final int GL_MINMAX_FORMAT = 0x802F; - public static final int GL_MINMAX_FORMAT_EXT = 0x802F; - public static final int GL_MINMAX_SINK = 0x8030; - public static final int GL_MINMAX_SINK_EXT = 0x8030; - public static final int GL_MIN_EXT = 0x8007; - public static final int GL_MIRRORED_REPEAT_IBM = 0x8370; - public static final int GL_MODELVIEW = 0x1700; - public static final int GL_MODELVIEW0_ARB = 0x1700; - public static final int GL_MODELVIEW0_EXT = 0x1700; - public static final int GL_MODELVIEW0_MATRIX_EXT = 0x0BA6; - public static final int GL_MODELVIEW0_STACK_DEPTH_EXT = 0x0BA3; - public static final int GL_MODELVIEW10_ARB = 0x872A; - public static final int GL_MODELVIEW11_ARB = 0x872B; - public static final int GL_MODELVIEW12_ARB = 0x872C; - public static final int GL_MODELVIEW13_ARB = 0x872D; - public static final int GL_MODELVIEW14_ARB = 0x872E; - public static final int GL_MODELVIEW15_ARB = 0x872F; - public static final int GL_MODELVIEW16_ARB = 0x8730; - public static final int GL_MODELVIEW17_ARB = 0x8731; - public static final int GL_MODELVIEW18_ARB = 0x8732; - public static final int GL_MODELVIEW19_ARB = 0x8733; - public static final int GL_MODELVIEW1_ARB = 0x850A; - public static final int GL_MODELVIEW1_EXT = 0x850A; - public static final int GL_MODELVIEW1_MATRIX_EXT = 0x8506; - public static final int GL_MODELVIEW1_STACK_DEPTH_EXT = 0x8502; - public static final int GL_MODELVIEW20_ARB = 0x8734; - public static final int GL_MODELVIEW21_ARB = 0x8735; - public static final int GL_MODELVIEW22_ARB = 0x8736; - public static final int GL_MODELVIEW23_ARB = 0x8737; - public static final int GL_MODELVIEW24_ARB = 0x8738; - public static final int GL_MODELVIEW25_ARB = 0x8739; - public static final int GL_MODELVIEW26_ARB = 0x873A; - public static final int GL_MODELVIEW27_ARB = 0x873B; - public static final int GL_MODELVIEW28_ARB = 0x873C; - public static final int GL_MODELVIEW29_ARB = 0x873D; - public static final int GL_MODELVIEW2_ARB = 0x8722; - public static final int GL_MODELVIEW30_ARB = 0x873E; - public static final int GL_MODELVIEW31_ARB = 0x873F; - public static final int GL_MODELVIEW3_ARB = 0x8723; - public static final int GL_MODELVIEW4_ARB = 0x8724; - public static final int GL_MODELVIEW5_ARB = 0x8725; - public static final int GL_MODELVIEW6_ARB = 0x8726; - public static final int GL_MODELVIEW7_ARB = 0x8727; - public static final int GL_MODELVIEW8_ARB = 0x8728; - public static final int GL_MODELVIEW9_ARB = 0x8729; - public static final int GL_MODELVIEW_MATRIX = 0x0BA6; - public static final int GL_MODELVIEW_PROJECTION_NV = 0x8629; - public static final int GL_MODELVIEW_STACK_DEPTH = 0x0BA3; - public static final int GL_MODULATE = 0x2100; - public static final int GL_MOV_ATI = 0x8961; - public static final int GL_MULT = 0x0103; - public static final int GL_MULTISAMPLE = 0x809D; - public static final int GL_MULTISAMPLE_3DFX = 0x86B2; - public static final int GL_MULTISAMPLE_ARB = 0x809D; - public static final int GL_MULTISAMPLE_BIT = 0x20000000; - public static final int GL_MULTISAMPLE_BIT_3DFX = 0x20000000; - public static final int GL_MULTISAMPLE_BIT_ARB = 0x20000000; - public static final int GL_MULTISAMPLE_BIT_EXT = 0x20000000; - public static final int GL_MULTISAMPLE_EXT = 0x809D; - public static final int GL_MULTISAMPLE_SGIS = 0x809D; - public static final int GL_MUL_ATI = 0x8964; - public static final int GL_MVP_MATRIX_EXT = 0x87E3; - public static final int GL_N3F_V3F = 0x2A25; - public static final int GL_NAME_STACK_DEPTH = 0x0D70; - public static final int GL_NAND = 0x150E; - public static final int GL_NATIVE_GRAPHICS_BEGIN_HINT_PGI = 0x1A203; - public static final int GL_NATIVE_GRAPHICS_END_HINT_PGI = 0x1A204; - public static final int GL_NATIVE_GRAPHICS_HANDLE_PGI = 0x1A202; - public static final int GL_NEAREST = 0x2600; - public static final int GL_NEAREST_CLIPMAP_LINEAR_SGIX = 0x844E; - public static final int GL_NEAREST_CLIPMAP_NEAREST_SGIX = 0x844D; - public static final int GL_NEAREST_MIPMAP_LINEAR = 0x2702; - public static final int GL_NEAREST_MIPMAP_NEAREST = 0x2700; - public static final int GL_NEGATE_BIT_ATI = 0x00000004; - public static final int GL_NEGEXTVE_ONE_EXT = 0x87DF; - public static final int GL_NEGEXTVE_W_EXT = 0x87DC; - public static final int GL_NEGEXTVE_X_EXT = 0x87D9; - public static final int GL_NEGEXTVE_Y_EXT = 0x87DA; - public static final int GL_NEGEXTVE_Z_EXT = 0x87DB; - public static final int GL_NEVER = 0x0200; - public static final int GL_NICEST = 0x1102; - public static final int GL_NONE = 0x0; - public static final int GL_NOOP = 0x1505; - public static final int GL_NOR = 0x1508; - public static final int GL_NORMALIZE = 0x0BA1; - public static final int GL_NORMALIZED_RANGE_EXT = 0x87E0; - public static final int GL_NORMAL_ARRAY = 0x8075; - public static final int GL_NORMAL_ARRAY_COUNT_EXT = 0x8080; - public static final int GL_NORMAL_ARRAY_EXT = 0x8075; - public static final int GL_NORMAL_ARRAY_LIST_IBM = 103071; - public static final int GL_NORMAL_ARRAY_LIST_STRIDE_IBM = 103081; - public static final int GL_NORMAL_ARRAY_PARALLEL_POINTERS_INTEL = 0x83F6; - public static final int GL_NORMAL_ARRAY_POINTER = 0x808F; - public static final int GL_NORMAL_ARRAY_POINTER_EXT = 0x808F; - public static final int GL_NORMAL_ARRAY_STRIDE = 0x807F; - public static final int GL_NORMAL_ARRAY_STRIDE_EXT = 0x807F; - public static final int GL_NORMAL_ARRAY_TYPE = 0x807E; - public static final int GL_NORMAL_ARRAY_TYPE_EXT = 0x807E; - public static final int GL_NORMAL_BIT_PGI = 0x08000000; - public static final int GL_NORMAL_MAP = 0x8511; - public static final int GL_NORMAL_MAP_ARB = 0x8511; - public static final int GL_NORMAL_MAP_EXT = 0x8511; - public static final int GL_NORMAL_MAP_NV = 0x8511; - public static final int GL_NOTEQUAL = 0x0205; - public static final int GL_NO_ERROR = 0x0; - public static final int GL_NUM_COMPRESSED_TEXTURE_FORMATS = 0x86A2; - public static final int GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB = 0x86A2; - public static final int GL_NUM_FRAGMENT_CONSTANTS_ATI = 0x896F; - public static final int GL_NUM_FRAGMENT_REGISTERS_ATI = 0x896E; - public static final int GL_NUM_GENERAL_COMBINERS_NV = 0x854E; - public static final int GL_NUM_INPUT_INTERPOLATOR_COMPONENTS_ATI = 0x8973; - public static final int GL_NUM_INSTRUCTIONS_PER_PASS_ATI = 0x8971; - public static final int GL_NUM_INSTRUCTIONS_TOTAL_ATI = 0x8972; - public static final int GL_NUM_LOOPBACK_COMPONENTS_ATI = 0x8974; - public static final int GL_NUM_PASSES_ATI = 0x8970; - public static final int GL_NV_blend_square = 1; - public static final int GL_NV_copy_depth_to_color = 1; - public static final int GL_NV_evaluators = 1; - public static final int GL_NV_fence = 1; - public static final int GL_NV_fog_distance = 1; - public static final int GL_NV_light_max_exponent = 1; - public static final int GL_NV_packed_depth_stencil = 1; - public static final int GL_NV_register_combiners = 1; - public static final int GL_NV_register_combiners2 = 1; - public static final int GL_NV_texgen_emboss = 1; - public static final int GL_NV_texgen_reflection = 1; - public static final int GL_NV_texture_compression_vtc = 1; - public static final int GL_NV_texture_env_combine4 = 1; - public static final int GL_NV_texture_rectangle = 1; - public static final int GL_NV_texture_shader = 1; - public static final int GL_NV_texture_shader2 = 1; - public static final int GL_NV_vertex_array_range = 1; - public static final int GL_NV_vertex_array_range2 = 1; - public static final int GL_NV_vertex_program = 1; - public static final int GL_OBJECT_BUFFER_SIZE_ATI = 0x8764; - public static final int GL_OBJECT_BUFFER_USAGE_ATI = 0x8765; - public static final int GL_OBJECT_DISTANCE_TO_LINE_SGIS = 0x81F3; - public static final int GL_OBJECT_DISTANCE_TO_POINT_SGIS = 0x81F1; - public static final int GL_OBJECT_LINEAR = 0x2401; - public static final int GL_OBJECT_LINE_SGIS = 0x81F7; - public static final int GL_OBJECT_PLANE = 0x2501; - public static final int GL_OBJECT_POINT_SGIS = 0x81F5; - public static final int GL_OCCLUSION_TEST_HP = 0x8165; - public static final int GL_OCCLUSION_TEST_RESULT_HP = 0x8166; - public static final int GL_OFFSET_TEXTURE_2D_BIAS_NV = 0x86E3; - public static final int GL_OFFSET_TEXTURE_2D_MATRIX_NV = 0x86E1; - public static final int GL_OFFSET_TEXTURE_2D_NV = 0x86E8; - public static final int GL_OFFSET_TEXTURE_2D_SCALE_NV = 0x86E2; - public static final int GL_OFFSET_TEXTURE_BIAS_NV = 0x86E3; - public static final int GL_OFFSET_TEXTURE_MATRIX_NV = 0x86E1; - public static final int GL_OFFSET_TEXTURE_RECTANGLE_NV = 0x864C; - public static final int GL_OFFSET_TEXTURE_RECTANGLE_SCALE_NV = 0x864D; - public static final int GL_OFFSET_TEXTURE_SCALE_NV = 0x86E2; - public static final int GL_OML_interlace = 1; - public static final int GL_OML_resample = 1; - public static final int GL_OML_subsample = 1; - public static final int GL_ONE = 0x1; - public static final int GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004; - public static final int GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004; - public static final int GL_ONE_MINUS_CONSTANT_COLOR = 0x8002; - public static final int GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002; - public static final int GL_ONE_MINUS_DST_ALPHA = 0x0305; - public static final int GL_ONE_MINUS_DST_COLOR = 0x0307; - public static final int GL_ONE_MINUS_SRC_ALPHA = 0x0303; - public static final int GL_ONE_MINUS_SRC_COLOR = 0x0301; - public static final int GL_OPERAND0_ALPHA = 0x8598; - public static final int GL_OPERAND0_ALPHA_ARB = 0x8598; - public static final int GL_OPERAND0_ALPHA_EXT = 0x8598; - public static final int GL_OPERAND0_RGB = 0x8590; - public static final int GL_OPERAND0_RGB_ARB = 0x8590; - public static final int GL_OPERAND0_RGB_EXT = 0x8590; - public static final int GL_OPERAND1_ALPHA = 0x8599; - public static final int GL_OPERAND1_ALPHA_ARB = 0x8599; - public static final int GL_OPERAND1_ALPHA_EXT = 0x8599; - public static final int GL_OPERAND1_RGB = 0x8591; - public static final int GL_OPERAND1_RGB_ARB = 0x8591; - public static final int GL_OPERAND1_RGB_EXT = 0x8591; - public static final int GL_OPERAND2_ALPHA = 0x859A; - public static final int GL_OPERAND2_ALPHA_ARB = 0x859A; - public static final int GL_OPERAND2_ALPHA_EXT = 0x859A; - public static final int GL_OPERAND2_RGB = 0x8592; - public static final int GL_OPERAND2_RGB_ARB = 0x8592; - public static final int GL_OPERAND2_RGB_EXT = 0x8592; - public static final int GL_OPERAND3_ALPHA_NV = 0x859B; - public static final int GL_OPERAND3_RGB_NV = 0x8593; - public static final int GL_OP_ADD_EXT = 0x8787; - public static final int GL_OP_CLAMP_EXT = 0x878E; - public static final int GL_OP_CROSS_PRODUCT_EXT = 0x8797; - public static final int GL_OP_DOT3_EXT = 0x8784; - public static final int GL_OP_DOT4_EXT = 0x8785; - public static final int GL_OP_EXP_BASE_2_EXT = 0x8791; - public static final int GL_OP_FLOOR_EXT = 0x878F; - public static final int GL_OP_FRAC_EXT = 0x8789; - public static final int GL_OP_INDEX_EXT = 0x8782; - public static final int GL_OP_LOG_BASE_2_EXT = 0x8792; - public static final int GL_OP_MADD_EXT = 0x8788; - public static final int GL_OP_MAX_EXT = 0x878A; - public static final int GL_OP_MIN_EXT = 0x878B; - public static final int GL_OP_MOV_EXT = 0x8799; - public static final int GL_OP_MULTIPLY_MATRIX_EXT = 0x8798; - public static final int GL_OP_MUL_EXT = 0x8786; - public static final int GL_OP_NEGATE_EXT = 0x8783; - public static final int GL_OP_POWER_EXT = 0x8793; - public static final int GL_OP_RECIP_EXT = 0x8794; - public static final int GL_OP_RECIP_SQRT_EXT = 0x8795; - public static final int GL_OP_ROUND_EXT = 0x8790; - public static final int GL_OP_SET_GE_EXT = 0x878C; - public static final int GL_OP_SET_LT_EXT = 0x878D; - public static final int GL_OP_SUB_EXT = 0x8796; - public static final int GL_OR = 0x1507; - public static final int GL_ORDER = 0x0A01; - public static final int GL_OR_INVERTED = 0x150D; - public static final int GL_OR_REVERSE = 0x150B; - public static final int GL_OUTPUT_COLOR0_EXT = 0x879B; - public static final int GL_OUTPUT_COLOR1_EXT = 0x879C; - public static final int GL_OUTPUT_FOG_EXT = 0x87BD; - public static final int GL_OUTPUT_TEXTURE_COORD0_EXT = 0x879D; - public static final int GL_OUTPUT_TEXTURE_COORD10_EXT = 0x87A7; - public static final int GL_OUTPUT_TEXTURE_COORD11_EXT = 0x87A8; - public static final int GL_OUTPUT_TEXTURE_COORD12_EXT = 0x87A9; - public static final int GL_OUTPUT_TEXTURE_COORD13_EXT = 0x87AA; - public static final int GL_OUTPUT_TEXTURE_COORD14_EXT = 0x87AB; - public static final int GL_OUTPUT_TEXTURE_COORD15_EXT = 0x87AC; - public static final int GL_OUTPUT_TEXTURE_COORD16_EXT = 0x87AD; - public static final int GL_OUTPUT_TEXTURE_COORD17_EXT = 0x87AE; - public static final int GL_OUTPUT_TEXTURE_COORD18_EXT = 0x87AF; - public static final int GL_OUTPUT_TEXTURE_COORD19_EXT = 0x87B0; - public static final int GL_OUTPUT_TEXTURE_COORD1_EXT = 0x879E; - public static final int GL_OUTPUT_TEXTURE_COORD20_EXT = 0x87B1; - public static final int GL_OUTPUT_TEXTURE_COORD21_EXT = 0x87B2; - public static final int GL_OUTPUT_TEXTURE_COORD22_EXT = 0x87B3; - public static final int GL_OUTPUT_TEXTURE_COORD23_EXT = 0x87B4; - public static final int GL_OUTPUT_TEXTURE_COORD24_EXT = 0x87B5; - public static final int GL_OUTPUT_TEXTURE_COORD25_EXT = 0x87B6; - public static final int GL_OUTPUT_TEXTURE_COORD26_EXT = 0x87B7; - public static final int GL_OUTPUT_TEXTURE_COORD27_EXT = 0x87B8; - public static final int GL_OUTPUT_TEXTURE_COORD28_EXT = 0x87B9; - public static final int GL_OUTPUT_TEXTURE_COORD29_EXT = 0x87BA; - public static final int GL_OUTPUT_TEXTURE_COORD2_EXT = 0x879F; - public static final int GL_OUTPUT_TEXTURE_COORD30_EXT = 0x87BB; - public static final int GL_OUTPUT_TEXTURE_COORD31_EXT = 0x87BC; - public static final int GL_OUTPUT_TEXTURE_COORD3_EXT = 0x87A0; - public static final int GL_OUTPUT_TEXTURE_COORD4_EXT = 0x87A1; - public static final int GL_OUTPUT_TEXTURE_COORD5_EXT = 0x87A2; - public static final int GL_OUTPUT_TEXTURE_COORD6_EXT = 0x87A3; - public static final int GL_OUTPUT_TEXTURE_COORD7_EXT = 0x87A4; - public static final int GL_OUTPUT_TEXTURE_COORD8_EXT = 0x87A5; - public static final int GL_OUTPUT_TEXTURE_COORD9_EXT = 0x87A6; - public static final int GL_OUTPUT_VERTEX_EXT = 0x879A; - public static final int GL_OUT_OF_MEMORY = 0x0505; - public static final int GL_PACK_ALIGNMENT = 0x0D05; - public static final int GL_PACK_CMYK_HINT_EXT = 0x800E; - public static final int GL_PACK_IMAGE_DEPTH_SGIS = 0x8131; - public static final int GL_PACK_IMAGE_HEIGHT = 0x806C; - public static final int GL_PACK_IMAGE_HEIGHT_EXT = 0x806C; - public static final int GL_PACK_LSB_FIRST = 0x0D01; - public static final int GL_PACK_RESAMPLE_OML = 0x8984; - public static final int GL_PACK_RESAMPLE_SGIX = 0x842C; - public static final int GL_PACK_ROW_LENGTH = 0x0D02; - public static final int GL_PACK_SKIP_IMAGES = 0x806B; - public static final int GL_PACK_SKIP_IMAGES_EXT = 0x806B; - public static final int GL_PACK_SKIP_PIXELS = 0x0D04; - public static final int GL_PACK_SKIP_ROWS = 0x0D03; - public static final int GL_PACK_SKIP_VOLUMES_SGIS = 0x8130; - public static final int GL_PACK_SUBSAMPLE_RATE_SGIX = 0x85A0; - public static final int GL_PACK_SWAP_BYTES = 0x0D00; - public static final int GL_PARALLEL_ARRAYS_INTEL = 0x83F4; - public static final int GL_PASS_THROUGH_NV = 0x86E6; - public static final int GL_PASS_THROUGH_TOKEN = 0x0700; - public static final int GL_PERSPECTIVE_CORRECTION_HINT = 0x0C50; - public static final int GL_PERTURB_EXT = 0x85AE; - public static final int GL_PER_STAGE_CONSTANTS_NV = 0x8535; - public static final int GL_PGI_misc_hints = 1; - public static final int GL_PGI_vertex_hints = 1; - public static final int GL_PHONG_HINT_WIN = 0x80EB; - public static final int GL_PHONG_WIN = 0x80EA; - public static final int GL_PIXEL_CUBIC_WEIGHT_EXT = 0x8333; - public static final int GL_PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS = 0x8355; - public static final int GL_PIXEL_FRAGMENT_RGB_SOURCE_SGIS = 0x8354; - public static final int GL_PIXEL_GROUP_COLOR_SGIS = 0x8356; - public static final int GL_PIXEL_MAG_FILTER_EXT = 0x8331; - public static final int GL_PIXEL_MAP_A_TO_A = 0x0C79; - public static final int GL_PIXEL_MAP_A_TO_A_SIZE = 0x0CB9; - public static final int GL_PIXEL_MAP_B_TO_B = 0x0C78; - public static final int GL_PIXEL_MAP_B_TO_B_SIZE = 0x0CB8; - public static final int GL_PIXEL_MAP_G_TO_G = 0x0C77; - public static final int GL_PIXEL_MAP_G_TO_G_SIZE = 0x0CB7; - public static final int GL_PIXEL_MAP_I_TO_A = 0x0C75; - public static final int GL_PIXEL_MAP_I_TO_A_SIZE = 0x0CB5; - public static final int GL_PIXEL_MAP_I_TO_B = 0x0C74; - public static final int GL_PIXEL_MAP_I_TO_B_SIZE = 0x0CB4; - public static final int GL_PIXEL_MAP_I_TO_G = 0x0C73; - public static final int GL_PIXEL_MAP_I_TO_G_SIZE = 0x0CB3; - public static final int GL_PIXEL_MAP_I_TO_I = 0x0C70; - public static final int GL_PIXEL_MAP_I_TO_I_SIZE = 0x0CB0; - public static final int GL_PIXEL_MAP_I_TO_R = 0x0C72; - public static final int GL_PIXEL_MAP_I_TO_R_SIZE = 0x0CB2; - public static final int GL_PIXEL_MAP_R_TO_R = 0x0C76; - public static final int GL_PIXEL_MAP_R_TO_R_SIZE = 0x0CB6; - public static final int GL_PIXEL_MAP_S_TO_S = 0x0C71; - public static final int GL_PIXEL_MAP_S_TO_S_SIZE = 0x0CB1; - public static final int GL_PIXEL_MIN_FILTER_EXT = 0x8332; - public static final int GL_PIXEL_MODE_BIT = 0x00000020; - public static final int GL_PIXEL_SUBSAMPLE_2424_SGIX = 0x85A3; - public static final int GL_PIXEL_SUBSAMPLE_4242_SGIX = 0x85A4; - public static final int GL_PIXEL_SUBSAMPLE_4444_SGIX = 0x85A2; - public static final int GL_PIXEL_TEXTURE_SGIS = 0x8353; - public static final int GL_PIXEL_TEX_GEN_ALPHA_LS_SGIX = 0x8189; - public static final int GL_PIXEL_TEX_GEN_ALPHA_MS_SGIX = 0x818A; - public static final int GL_PIXEL_TEX_GEN_ALPHA_NO_REPLACE_SGIX = 0x8188; - public static final int GL_PIXEL_TEX_GEN_ALPHA_REPLACE_SGIX = 0x8187; - public static final int GL_PIXEL_TEX_GEN_MODE_SGIX = 0x832B; - public static final int GL_PIXEL_TEX_GEN_Q_CEILING_SGIX = 0x8184; - public static final int GL_PIXEL_TEX_GEN_Q_FLOOR_SGIX = 0x8186; - public static final int GL_PIXEL_TEX_GEN_Q_ROUND_SGIX = 0x8185; - public static final int GL_PIXEL_TEX_GEN_SGIX = 0x8139; - public static final int GL_PIXEL_TILE_BEST_ALIGNMENT_SGIX = 0x813E; - public static final int GL_PIXEL_TILE_CACHE_INCREMENT_SGIX = 0x813F; - public static final int GL_PIXEL_TILE_CACHE_SIZE_SGIX = 0x8145; - public static final int GL_PIXEL_TILE_GRID_DEPTH_SGIX = 0x8144; - public static final int GL_PIXEL_TILE_GRID_HEIGHT_SGIX = 0x8143; - public static final int GL_PIXEL_TILE_GRID_WIDTH_SGIX = 0x8142; - public static final int GL_PIXEL_TILE_HEIGHT_SGIX = 0x8141; - public static final int GL_PIXEL_TILE_WIDTH_SGIX = 0x8140; - public static final int GL_PIXEL_TRANSFORM_2D_EXT = 0x8330; - public static final int GL_PIXEL_TRANSFORM_2D_MATRIX_EXT = 0x8338; - public static final int GL_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT = 0x8336; - public static final int GL_PN_TRIANGLES_ATI = 0x87F0; - public static final int GL_PN_TRIANGLES_NORMAL_MODE_ATI = 0x87F3; - public static final int GL_PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI = 0x87F7; - public static final int GL_PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI = 0x87F8; - public static final int GL_PN_TRIANGLES_POINT_MODE_ATI = 0x87F2; - public static final int GL_PN_TRIANGLES_POINT_MODE_CUBIC_ATI = 0x87F6; - public static final int GL_PN_TRIANGLES_POINT_MODE_LINEAR_ATI = 0x87F5; - public static final int GL_PN_TRIANGLES_TESSELATION_LEVEL_ATI = 0x87F4; - public static final int GL_POINT = 0x1B00; - public static final int GL_POINTS = 0x0000; - public static final int GL_POINT_BIT = 0x00000002; - public static final int GL_POINT_DISTANCE_ATTENUATION_ARB = 0x8129; - public static final int GL_POINT_FADE_THRESHOLD_SIZE_ARB = 0x8128; - public static final int GL_POINT_FADE_THRESHOLD_SIZE_EXT = 0x8128; - public static final int GL_POINT_FADE_THRESHOLD_SIZE_SGIS = 0x8128; - public static final int GL_POINT_SIZE = 0x0B11; - public static final int GL_POINT_SIZE_GRANULARITY = 0x0B13; - public static final int GL_POINT_SIZE_MAX_ARB = 0x8127; - public static final int GL_POINT_SIZE_MAX_EXT = 0x8127; - public static final int GL_POINT_SIZE_MAX_SGIS = 0x8127; - public static final int GL_POINT_SIZE_MIN_ARB = 0x8126; - public static final int GL_POINT_SIZE_MIN_EXT = 0x8126; - public static final int GL_POINT_SIZE_MIN_SGIS = 0x8126; - public static final int GL_POINT_SIZE_RANGE = 0x0B12; - public static final int GL_POINT_SMOOTH = 0x0B10; - public static final int GL_POINT_SMOOTH_HINT = 0x0C51; - public static final int GL_POINT_TOKEN = 0x0701; - public static final int GL_POLYGON = 0x0009; - public static final int GL_POLYGON_BIT = 0x00000008; - public static final int GL_POLYGON_MODE = 0x0B40; - public static final int GL_POLYGON_OFFSET_BIAS_EXT = 0x8039; - public static final int GL_POLYGON_OFFSET_EXT = 0x8037; - public static final int GL_POLYGON_OFFSET_FACTOR = 0x8038; - public static final int GL_POLYGON_OFFSET_FACTOR_EXT = 0x8038; - public static final int GL_POLYGON_OFFSET_FILL = 0x8037; - public static final int GL_POLYGON_OFFSET_LINE = 0x2A02; - public static final int GL_POLYGON_OFFSET_POINT = 0x2A01; - public static final int GL_POLYGON_OFFSET_UNITS = 0x2A00; - public static final int GL_POLYGON_SMOOTH = 0x0B41; - public static final int GL_POLYGON_SMOOTH_HINT = 0x0C53; - public static final int GL_POLYGON_STIPPLE = 0x0B42; - public static final int GL_POLYGON_STIPPLE_BIT = 0x00000010; - public static final int GL_POLYGON_TOKEN = 0x0703; - public static final int GL_POSITION = 0x1203; - public static final int GL_POST_COLOR_MATRIX_ALPHA_BIAS = 0x80BB; - public static final int GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI = 0x80BB; - public static final int GL_POST_COLOR_MATRIX_ALPHA_SCALE = 0x80B7; - public static final int GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI = 0x80B7; - public static final int GL_POST_COLOR_MATRIX_BLUE_BIAS = 0x80BA; - public static final int GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI = 0x80BA; - public static final int GL_POST_COLOR_MATRIX_BLUE_SCALE = 0x80B6; - public static final int GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI = 0x80B6; - public static final int GL_POST_COLOR_MATRIX_COLOR_TABLE = 0x80D2; - public static final int GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI = 0x80D2; - public static final int GL_POST_COLOR_MATRIX_GREEN_BIAS = 0x80B9; - public static final int GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI = 0x80B9; - public static final int GL_POST_COLOR_MATRIX_GREEN_SCALE = 0x80B5; - public static final int GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI = 0x80B5; - public static final int GL_POST_COLOR_MATRIX_RED_BIAS = 0x80B8; - public static final int GL_POST_COLOR_MATRIX_RED_BIAS_SGI = 0x80B8; - public static final int GL_POST_COLOR_MATRIX_RED_SCALE = 0x80B4; - public static final int GL_POST_COLOR_MATRIX_RED_SCALE_SGI = 0x80B4; - public static final int GL_POST_CONVOLUTION_ALPHA_BIAS = 0x8023; - public static final int GL_POST_CONVOLUTION_ALPHA_BIAS_EXT = 0x8023; - public static final int GL_POST_CONVOLUTION_ALPHA_SCALE = 0x801F; - public static final int GL_POST_CONVOLUTION_ALPHA_SCALE_EXT = 0x801F; - public static final int GL_POST_CONVOLUTION_BLUE_BIAS = 0x8022; - public static final int GL_POST_CONVOLUTION_BLUE_BIAS_EXT = 0x8022; - public static final int GL_POST_CONVOLUTION_BLUE_SCALE = 0x801E; - public static final int GL_POST_CONVOLUTION_BLUE_SCALE_EXT = 0x801E; - public static final int GL_POST_CONVOLUTION_COLOR_TABLE = 0x80D1; - public static final int GL_POST_CONVOLUTION_COLOR_TABLE_SGI = 0x80D1; - public static final int GL_POST_CONVOLUTION_GREEN_BIAS = 0x8021; - public static final int GL_POST_CONVOLUTION_GREEN_BIAS_EXT = 0x8021; - public static final int GL_POST_CONVOLUTION_GREEN_SCALE = 0x801D; - public static final int GL_POST_CONVOLUTION_GREEN_SCALE_EXT = 0x801D; - public static final int GL_POST_CONVOLUTION_RED_BIAS = 0x8020; - public static final int GL_POST_CONVOLUTION_RED_BIAS_EXT = 0x8020; - public static final int GL_POST_CONVOLUTION_RED_SCALE = 0x801C; - public static final int GL_POST_CONVOLUTION_RED_SCALE_EXT = 0x801C; - public static final int GL_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP = 0x8162; - public static final int GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX = 0x817B; - public static final int GL_POST_TEXTURE_FILTER_BIAS_SGIX = 0x8179; - public static final int GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX = 0x817C; - public static final int GL_POST_TEXTURE_FILTER_SCALE_SGIX = 0x817A; - public static final int GL_PREFER_DOUBLEBUFFER_HINT_PGI = 0x1A1F8; - public static final int GL_PRESERVE_ATI = 0x8762; - public static final int GL_PREVIOUS = 0x8578; - public static final int GL_PREVIOUS_ARB = 0x8578; - public static final int GL_PREVIOUS_EXT = 0x8578; - public static final int GL_PREVIOUS_TEXTURE_INPUT_NV = 0x86E4; - public static final int GL_PRIMARY_COLOR = 0x8577; - public static final int GL_PRIMARY_COLOR_ARB = 0x8577; - public static final int GL_PRIMARY_COLOR_EXT = 0x8577; - public static final int GL_PRIMARY_COLOR_NV = 0x852C; - public static final int GL_PROGRAM_ERROR_POSITION_NV = 0x864B; - public static final int GL_PROGRAM_LENGTH_NV = 0x8627; - public static final int GL_PROGRAM_PARAMETER_NV = 0x8644; - public static final int GL_PROGRAM_RESIDENT_NV = 0x8647; - public static final int GL_PROGRAM_STRING_NV = 0x8628; - public static final int GL_PROGRAM_TARGET_NV = 0x8646; - public static final int GL_PROJECTION = 0x1701; - public static final int GL_PROJECTION_MATRIX = 0x0BA7; - public static final int GL_PROJECTION_STACK_DEPTH = 0x0BA4; - public static final int GL_PROXY_COLOR_TABLE = 0x80D3; - public static final int GL_PROXY_COLOR_TABLE_SGI = 0x80D3; - public static final int GL_PROXY_HISTOGRAM = 0x8025; - public static final int GL_PROXY_HISTOGRAM_EXT = 0x8025; - public static final int GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE = 0x80D5; - public static final int GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI = 0x80D5; - public static final int GL_PROXY_POST_CONVOLUTION_COLOR_TABLE = 0x80D4; - public static final int GL_PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI = 0x80D4; - public static final int GL_PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP = 0x8163; - public static final int GL_PROXY_TEXTURE_1D = 0x8063; - public static final int GL_PROXY_TEXTURE_1D_EXT = 0x8063; - public static final int GL_PROXY_TEXTURE_2D = 0x8064; - public static final int GL_PROXY_TEXTURE_2D_EXT = 0x8064; - public static final int GL_PROXY_TEXTURE_3D = 0x8070; - public static final int GL_PROXY_TEXTURE_3D_EXT = 0x8070; - public static final int GL_PROXY_TEXTURE_4D_SGIS = 0x8135; - public static final int GL_PROXY_TEXTURE_COLOR_TABLE_SGI = 0x80BD; - public static final int GL_PROXY_TEXTURE_CUBE_MAP = 0x851B; - public static final int GL_PROXY_TEXTURE_CUBE_MAP_ARB = 0x851B; - public static final int GL_PROXY_TEXTURE_CUBE_MAP_EXT = 0x851B; - public static final int GL_PROXY_TEXTURE_RECTANGLE_NV = 0x84F7; - public static final int GL_Q = 0x2003; - public static final int GL_QUADRATIC_ATTENUATION = 0x1209; - public static final int GL_QUADS = 0x0007; - public static final int GL_QUAD_ALPHA4_SGIS = 0x811E; - public static final int GL_QUAD_ALPHA8_SGIS = 0x811F; - public static final int GL_QUAD_INTENSITY4_SGIS = 0x8122; - public static final int GL_QUAD_INTENSITY8_SGIS = 0x8123; - public static final int GL_QUAD_LUMINANCE4_SGIS = 0x8120; - public static final int GL_QUAD_LUMINANCE8_SGIS = 0x8121; - public static final int GL_QUAD_STRIP = 0x0008; - public static final int GL_QUAD_TEXTURE_SELECT_SGIS = 0x8125; - public static final int GL_QUARTER_BIT_ATI = 0x00000010; - public static final int GL_R = 0x2002; - public static final int GL_R1UI_C3F_V3F_SUN = 0x85C6; - public static final int GL_R1UI_C4F_N3F_V3F_SUN = 0x85C8; - public static final int GL_R1UI_C4UB_V3F_SUN = 0x85C5; - public static final int GL_R1UI_N3F_V3F_SUN = 0x85C7; - public static final int GL_R1UI_T2F_C4F_N3F_V3F_SUN = 0x85CB; - public static final int GL_R1UI_T2F_N3F_V3F_SUN = 0x85CA; - public static final int GL_R1UI_T2F_V3F_SUN = 0x85C9; - public static final int GL_R1UI_V3F_SUN = 0x85C4; - public static final int GL_R3_G3_B2 = 0x2A10; - public static final int GL_RASTER_POSITION_UNCLIPPED_IBM = 0x19262; - public static final int GL_READ_BUFFER = 0x0C02; - public static final int GL_RECLAIM_MEMORY_HINT_PGI = 0x1A1FE; - public static final int GL_RED = 0x1903; - public static final int GL_REDUCE = 0x8016; - public static final int GL_REDUCE_EXT = 0x8016; - public static final int GL_RED_BIAS = 0x0D15; - public static final int GL_RED_BITS = 0x0D52; - public static final int GL_RED_BIT_ATI = 0x00000001; - public static final int GL_RED_MAX_CLAMP_INGR = 0x8564; - public static final int GL_RED_MIN_CLAMP_INGR = 0x8560; - public static final int GL_RED_SCALE = 0x0D14; - public static final int GL_REFERENCE_PLANE_EQUATION_SGIX = 0x817E; - public static final int GL_REFERENCE_PLANE_SGIX = 0x817D; - public static final int GL_REFLECTION_MAP = 0x8512; - public static final int GL_REFLECTION_MAP_ARB = 0x8512; - public static final int GL_REFLECTION_MAP_EXT = 0x8512; - public static final int GL_REFLECTION_MAP_NV = 0x8512; - public static final int GL_REGISTER_COMBINERS_NV = 0x8522; - public static final int GL_REG_0_ATI = 0x8921; - public static final int GL_REG_10_ATI = 0x892B; - public static final int GL_REG_11_ATI = 0x892C; - public static final int GL_REG_12_ATI = 0x892D; - public static final int GL_REG_13_ATI = 0x892E; - public static final int GL_REG_14_ATI = 0x892F; - public static final int GL_REG_15_ATI = 0x8930; - public static final int GL_REG_16_ATI = 0x8931; - public static final int GL_REG_17_ATI = 0x8932; - public static final int GL_REG_18_ATI = 0x8933; - public static final int GL_REG_19_ATI = 0x8934; - public static final int GL_REG_1_ATI = 0x8922; - public static final int GL_REG_20_ATI = 0x8935; - public static final int GL_REG_21_ATI = 0x8936; - public static final int GL_REG_22_ATI = 0x8937; - public static final int GL_REG_23_ATI = 0x8938; - public static final int GL_REG_24_ATI = 0x8939; - public static final int GL_REG_25_ATI = 0x893A; - public static final int GL_REG_26_ATI = 0x893B; - public static final int GL_REG_27_ATI = 0x893C; - public static final int GL_REG_28_ATI = 0x893D; - public static final int GL_REG_29_ATI = 0x893E; - public static final int GL_REG_2_ATI = 0x8923; - public static final int GL_REG_30_ATI = 0x893F; - public static final int GL_REG_31_ATI = 0x8940; - public static final int GL_REG_3_ATI = 0x8924; - public static final int GL_REG_4_ATI = 0x8925; - public static final int GL_REG_5_ATI = 0x8926; - public static final int GL_REG_6_ATI = 0x8927; - public static final int GL_REG_7_ATI = 0x8928; - public static final int GL_REG_8_ATI = 0x8929; - public static final int GL_REG_9_ATI = 0x892A; - public static final int GL_RENDER = 0x1C00; - public static final int GL_RENDERER = 0x1F01; - public static final int GL_RENDER_MODE = 0x0C40; - public static final int GL_REND_screen_coordinates = 1; - public static final int GL_REPEAT = 0x2901; - public static final int GL_REPLACE = 0x1E01; - public static final int GL_REPLACEMENT_CODE_ARRAY_POINTER_SUN = 0x85C3; - public static final int GL_REPLACEMENT_CODE_ARRAY_STRIDE_SUN = 0x85C2; - public static final int GL_REPLACEMENT_CODE_ARRAY_SUN = 0x85C0; - public static final int GL_REPLACEMENT_CODE_ARRAY_TYPE_SUN = 0x85C1; - public static final int GL_REPLACEMENT_CODE_SUN = 0x81D8; - public static final int GL_REPLACE_EXT = 0x8062; - public static final int GL_REPLACE_MIDDLE_SUN = 0x0002; - public static final int GL_REPLACE_OLDEST_SUN = 0x0003; - public static final int GL_REPLICATE_BORDER = 0x8153; - public static final int GL_REPLICATE_BORDER_HP = 0x8153; - public static final int GL_RESAMPLE_AVERAGE_OML = 0x8988; - public static final int GL_RESAMPLE_DECIMATE_OML = 0x8989; - public static final int GL_RESAMPLE_DECIMATE_SGIX = 0x8430; - public static final int GL_RESAMPLE_REPLICATE_OML = 0x8986; - public static final int GL_RESAMPLE_REPLICATE_SGIX = 0x842E; - public static final int GL_RESAMPLE_ZERO_FILL_OML = 0x8987; - public static final int GL_RESAMPLE_ZERO_FILL_SGIX = 0x842F; - public static final int GL_RESCALE_NORMAL = 0x803A; - public static final int GL_RESCALE_NORMAL_EXT = 0x803A; - public static final int GL_RESTART_SUN = 0x0001; - public static final int GL_RETURN = 0x0102; - public static final int GL_RGB = 0x1907; - public static final int GL_RGB10 = 0x8052; - public static final int GL_RGB10_A2 = 0x8059; - public static final int GL_RGB10_A2_EXT = 0x8059; - public static final int GL_RGB10_EXT = 0x8052; - public static final int GL_RGB12 = 0x8053; - public static final int GL_RGB12_EXT = 0x8053; - public static final int GL_RGB16 = 0x8054; - public static final int GL_RGB16_EXT = 0x8054; - public static final int GL_RGB2_EXT = 0x804E; - public static final int GL_RGB4 = 0x804F; - public static final int GL_RGB4_EXT = 0x804F; - public static final int GL_RGB5 = 0x8050; - public static final int GL_RGB5_A1 = 0x8057; - public static final int GL_RGB5_A1_EXT = 0x8057; - public static final int GL_RGB5_EXT = 0x8050; - public static final int GL_RGB8 = 0x8051; - public static final int GL_RGB8_EXT = 0x8051; - public static final int GL_RGBA = 0x1908; - public static final int GL_RGBA12 = 0x805A; - public static final int GL_RGBA12_EXT = 0x805A; - public static final int GL_RGBA16 = 0x805B; - public static final int GL_RGBA16_EXT = 0x805B; - public static final int GL_RGBA2 = 0x8055; - public static final int GL_RGBA2_EXT = 0x8055; - public static final int GL_RGBA4 = 0x8056; - public static final int GL_RGBA4_EXT = 0x8056; - public static final int GL_RGBA8 = 0x8058; - public static final int GL_RGBA8_EXT = 0x8058; - public static final int GL_RGBA_MODE = 0x0C31; - public static final int GL_RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV = 0x86D9; - public static final int GL_RGB_SCALE = 0x8573; - public static final int GL_RGB_SCALE_ARB = 0x8573; - public static final int GL_RGB_SCALE_EXT = 0x8573; - public static final int GL_RIGHT = 0x0407; - public static final int GL_S = 0x2000; - public static final int GL_SAMPLES = 0x80A9; - public static final int GL_SAMPLES_3DFX = 0x86B4; - public static final int GL_SAMPLES_ARB = 0x80A9; - public static final int GL_SAMPLES_EXT = 0x80A9; - public static final int GL_SAMPLES_SGIS = 0x80A9; - public static final int GL_SAMPLE_ALPHA_TO_COVERAGE = 0x809E; - public static final int GL_SAMPLE_ALPHA_TO_COVERAGE_ARB = 0x809E; - public static final int GL_SAMPLE_ALPHA_TO_MASK_EXT = 0x809E; - public static final int GL_SAMPLE_ALPHA_TO_MASK_SGIS = 0x809E; - public static final int GL_SAMPLE_ALPHA_TO_ONE = 0x809F; - public static final int GL_SAMPLE_ALPHA_TO_ONE_ARB = 0x809F; - public static final int GL_SAMPLE_ALPHA_TO_ONE_EXT = 0x809F; - public static final int GL_SAMPLE_ALPHA_TO_ONE_SGIS = 0x809F; - public static final int GL_SAMPLE_BUFFERS = 0x80A8; - public static final int GL_SAMPLE_BUFFERS_3DFX = 0x86B3; - public static final int GL_SAMPLE_BUFFERS_ARB = 0x80A8; - public static final int GL_SAMPLE_BUFFERS_EXT = 0x80A8; - public static final int GL_SAMPLE_BUFFERS_SGIS = 0x80A8; - public static final int GL_SAMPLE_COVERAGE = 0x80A0; - public static final int GL_SAMPLE_COVERAGE_ARB = 0x80A0; - public static final int GL_SAMPLE_COVERAGE_INVERT = 0x80AB; - public static final int GL_SAMPLE_COVERAGE_INVERT_ARB = 0x80AB; - public static final int GL_SAMPLE_COVERAGE_VALUE = 0x80AA; - public static final int GL_SAMPLE_COVERAGE_VALUE_ARB = 0x80AA; - public static final int GL_SAMPLE_MASK_EXT = 0x80A0; - public static final int GL_SAMPLE_MASK_INVERT_EXT = 0x80AB; - public static final int GL_SAMPLE_MASK_INVERT_SGIS = 0x80AB; - public static final int GL_SAMPLE_MASK_SGIS = 0x80A0; - public static final int GL_SAMPLE_MASK_VALUE_EXT = 0x80AA; - public static final int GL_SAMPLE_MASK_VALUE_SGIS = 0x80AA; - public static final int GL_SAMPLE_PATTERN_EXT = 0x80AC; - public static final int GL_SAMPLE_PATTERN_SGIS = 0x80AC; - public static final int GL_SATURATE_BIT_ATI = 0x00000040; - public static final int GL_SCALAR_EXT = 0x87BE; - public static final int GL_SCALEBIAS_HINT_SGIX = 0x8322; - public static final int GL_SCALE_BY_FOUR_NV = 0x853F; - public static final int GL_SCALE_BY_ONE_HALF_NV = 0x8540; - public static final int GL_SCALE_BY_TWO_NV = 0x853E; - public static final int GL_SCISSOR_BIT = 0x00080000; - public static final int GL_SCISSOR_BOX = 0x0C10; - public static final int GL_SCISSOR_TEST = 0x0C11; - public static final int GL_SCREEN_COORDINATES_REND = 0x8490; - public static final int GL_SECONDARY_COLOR_ARRAY_EXT = 0x845E; - public static final int GL_SECONDARY_COLOR_ARRAY_LIST_IBM = 103077; - public static final int GL_SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM = 103087; - public static final int GL_SECONDARY_COLOR_ARRAY_POINTER_EXT = 0x845D; - public static final int GL_SECONDARY_COLOR_ARRAY_SIZE_EXT = 0x845A; - public static final int GL_SECONDARY_COLOR_ARRAY_STRIDE_EXT = 0x845C; - public static final int GL_SECONDARY_COLOR_ARRAY_TYPE_EXT = 0x845B; - public static final int GL_SECONDARY_COLOR_NV = 0x852D; - public static final int GL_SECONDARY_INTERPOLATOR_ATI = 0x896D; - public static final int GL_SELECT = 0x1C02; - public static final int GL_SELECTION_BUFFER_POINTER = 0x0DF3; - public static final int GL_SELECTION_BUFFER_SIZE = 0x0DF4; - public static final int GL_SEPARABLE_2D = 0x8012; - public static final int GL_SEPARABLE_2D_EXT = 0x8012; - public static final int GL_SEPARATE_SPECULAR_COLOR = 0x81FA; - public static final int GL_SEPARATE_SPECULAR_COLOR_EXT = 0x81FA; - public static final int GL_SET = 0x150F; - public static final int GL_SGIS_detail_texture = 1; - public static final int GL_SGIS_fog_function = 1; - public static final int GL_SGIS_generate_mipmap = 1; - public static final int GL_SGIS_multisample = 1; - public static final int GL_SGIS_pixel_texture = 1; - public static final int GL_SGIS_point_line_texgen = 1; - public static final int GL_SGIS_sharpen_texture = 1; - public static final int GL_SGIS_texture4D = 1; - public static final int GL_SGIS_texture_border_clamp = 1; - public static final int GL_SGIS_texture_color_mask = 1; - public static final int GL_SGIS_texture_edge_clamp = 1; - public static final int GL_SGIS_texture_filter4 = 1; - public static final int GL_SGIS_texture_lod = 1; - public static final int GL_SGIX_async = 1; - public static final int GL_SGIX_async_histogram = 1; - public static final int GL_SGIX_async_pixel = 1; - public static final int GL_SGIX_blend_alpha_minmax = 1; - public static final int GL_SGIX_calligraphic_fragment = 1; - public static final int GL_SGIX_clipmap = 1; - public static final int GL_SGIX_convolution_accuracy = 1; - public static final int GL_SGIX_depth_pass_instrument = 1; - public static final int GL_SGIX_depth_texture = 1; - public static final int GL_SGIX_flush_raster = 1; - public static final int GL_SGIX_fog_offset = 1; - public static final int GL_SGIX_fog_scale = 1; - public static final int GL_SGIX_fragment_lighting = 1; - public static final int GL_SGIX_framezoom = 1; - public static final int GL_SGIX_igloo_interface = 1; - public static final int GL_SGIX_instruments = 1; - public static final int GL_SGIX_interlace = 1; - public static final int GL_SGIX_ir_instrument1 = 1; - public static final int GL_SGIX_list_priority = 1; - public static final int GL_SGIX_pixel_texture = 1; - public static final int GL_SGIX_pixel_tiles = 1; - public static final int GL_SGIX_polynomial_ffd = 1; - public static final int GL_SGIX_reference_plane = 1; - public static final int GL_SGIX_resample = 1; - public static final int GL_SGIX_scalebias_hint = 1; - public static final int GL_SGIX_shadow = 1; - public static final int GL_SGIX_shadow_ambient = 1; - public static final int GL_SGIX_sprite = 1; - public static final int GL_SGIX_subsample = 1; - public static final int GL_SGIX_tag_sample_buffer = 1; - public static final int GL_SGIX_texture_add_env = 1; - public static final int GL_SGIX_texture_coordinate_clamp = 1; - public static final int GL_SGIX_texture_lod_bias = 1; - public static final int GL_SGIX_texture_multi_buffer = 1; - public static final int GL_SGIX_texture_scale_bias = 1; - public static final int GL_SGIX_texture_select = 1; - public static final int GL_SGIX_vertex_preclip = 1; - public static final int GL_SGIX_ycrcb = 1; - public static final int GL_SGIX_ycrcb_subsample = 1; - public static final int GL_SGIX_ycrcba = 1; - public static final int GL_SGI_color_table = 1; - public static final int GL_SGI_texture_color_table = 1; - public static final int GL_SHADER_CONSISTENT_NV = 0x86DD; - public static final int GL_SHADER_OPERATION_NV = 0x86DF; - public static final int GL_SHADE_MODEL = 0x0B54; - public static final int GL_SHADOW_AMBIENT_SGIX = 0x80BF; - public static final int GL_SHADOW_ATTENUATION_EXT = 0x834E; - public static final int GL_SHARED_TEXTURE_PALETTE_EXT = 0x81FB; - public static final int GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS = 0x80B0; - public static final int GL_SHININESS = 0x1601; - public static final int GL_SHORT = 0x1402; - public static final int GL_SIGNED_ALPHA8_NV = 0x8706; - public static final int GL_SIGNED_ALPHA_NV = 0x8705; - public static final int GL_SIGNED_HILO16_NV = 0x86FA; - public static final int GL_SIGNED_HILO_NV = 0x86F9; - public static final int GL_SIGNED_IDENTITY_NV = 0x853C; - public static final int GL_SIGNED_INTENSITY8_NV = 0x8708; - public static final int GL_SIGNED_INTENSITY_NV = 0x8707; - public static final int GL_SIGNED_LUMINANCE8_ALPHA8_NV = 0x8704; - public static final int GL_SIGNED_LUMINANCE8_NV = 0x8702; - public static final int GL_SIGNED_LUMINANCE_ALPHA_NV = 0x8703; - public static final int GL_SIGNED_LUMINANCE_NV = 0x8701; - public static final int GL_SIGNED_NEGATE_NV = 0x853D; - public static final int GL_SIGNED_RGB8_NV = 0x86FF; - public static final int GL_SIGNED_RGB8_UNSIGNED_ALPHA8_NV = 0x870D; - public static final int GL_SIGNED_RGBA8_NV = 0x86FC; - public static final int GL_SIGNED_RGBA_NV = 0x86FB; - public static final int GL_SIGNED_RGB_NV = 0x86FE; - public static final int GL_SIGNED_RGB_UNSIGNED_ALPHA_NV = 0x870C; - public static final int GL_SINGLE_COLOR = 0x81F9; - public static final int GL_SINGLE_COLOR_EXT = 0x81F9; - public static final int GL_SMOOTH = 0x1D01; - public static final int GL_SMOOTH_LINE_WIDTH_GRANULARITY = 0x0B23; - public static final int GL_SMOOTH_LINE_WIDTH_RANGE = 0x0B22; - public static final int GL_SMOOTH_POINT_SIZE_GRANULARITY = 0x0B13; - public static final int GL_SMOOTH_POINT_SIZE_RANGE = 0x0B12; - public static final int GL_SOURCE0_ALPHA = 0x8588; - public static final int GL_SOURCE0_ALPHA_ARB = 0x8588; - public static final int GL_SOURCE0_ALPHA_EXT = 0x8588; - public static final int GL_SOURCE0_RGB = 0x8580; - public static final int GL_SOURCE0_RGB_ARB = 0x8580; - public static final int GL_SOURCE0_RGB_EXT = 0x8580; - public static final int GL_SOURCE1_ALPHA = 0x8589; - public static final int GL_SOURCE1_ALPHA_ARB = 0x8589; - public static final int GL_SOURCE1_ALPHA_EXT = 0x8589; - public static final int GL_SOURCE1_RGB = 0x8581; - public static final int GL_SOURCE1_RGB_ARB = 0x8581; - public static final int GL_SOURCE1_RGB_EXT = 0x8581; - public static final int GL_SOURCE2_ALPHA = 0x858A; - public static final int GL_SOURCE2_ALPHA_ARB = 0x858A; - public static final int GL_SOURCE2_ALPHA_EXT = 0x858A; - public static final int GL_SOURCE2_RGB = 0x8582; - public static final int GL_SOURCE2_RGB_ARB = 0x8582; - public static final int GL_SOURCE2_RGB_EXT = 0x8582; - public static final int GL_SOURCE3_ALPHA_NV = 0x858B; - public static final int GL_SOURCE3_RGB_NV = 0x8583; - public static final int GL_SPARE0_NV = 0x852E; - public static final int GL_SPARE0_PLUS_SECONDARY_COLOR_NV = 0x8532; - public static final int GL_SPARE1_NV = 0x852F; - public static final int GL_SPECULAR = 0x1202; - public static final int GL_SPHERE_MAP = 0x2402; - public static final int GL_SPOT_CUTOFF = 0x1206; - public static final int GL_SPOT_DIRECTION = 0x1204; - public static final int GL_SPOT_EXPONENT = 0x1205; - public static final int GL_SPRITE_AXIAL_SGIX = 0x814C; - public static final int GL_SPRITE_AXIS_SGIX = 0x814A; - public static final int GL_SPRITE_EYE_ALIGNED_SGIX = 0x814E; - public static final int GL_SPRITE_MODE_SGIX = 0x8149; - public static final int GL_SPRITE_OBJECT_ALIGNED_SGIX = 0x814D; - public static final int GL_SPRITE_POINT_MESA = 0x8757; - public static final int GL_SPRITE_SGIX = 0x8148; - public static final int GL_SPRITE_TRANSLATION_SGIX = 0x814B; - public static final int GL_SRC_ALPHA = 0x0302; - public static final int GL_SRC_ALPHA_SATURATE = 0x0308; - public static final int GL_SRC_COLOR = 0x0300; - public static final int GL_STACK_OVERFLOW = 0x0503; - public static final int GL_STACK_UNDERFLOW = 0x0504; - public static final int GL_STATIC_ATI = 0x8760; - public static final int GL_STENCIL = 0x1802; - public static final int GL_STENCIL_BITS = 0x0D57; - public static final int GL_STENCIL_BUFFER_BIT = 0x00000400; - public static final int GL_STENCIL_CLEAR_VALUE = 0x0B91; - public static final int GL_STENCIL_FAIL = 0x0B94; - public static final int GL_STENCIL_FUNC = 0x0B92; - public static final int GL_STENCIL_INDEX = 0x1901; - public static final int GL_STENCIL_PASS_DEPTH_FAIL = 0x0B95; - public static final int GL_STENCIL_PASS_DEPTH_PASS = 0x0B96; - public static final int GL_STENCIL_REF = 0x0B97; - public static final int GL_STENCIL_TEST = 0x0B90; - public static final int GL_STENCIL_VALUE_MASK = 0x0B93; - public static final int GL_STENCIL_WRITEMASK = 0x0B98; - public static final int GL_STEREO = 0x0C33; - public static final int GL_STRICT_DEPTHFUNC_HINT_PGI = 0x1A216; - public static final int GL_STRICT_LIGHTING_HINT_PGI = 0x1A217; - public static final int GL_STRICT_SCISSOR_HINT_PGI = 0x1A218; - public static final int GL_SUBPIXEL_BITS = 0x0D50; - public static final int GL_SUBTRACT = 0x84E7; - public static final int GL_SUBTRACT_ARB = 0x84E7; - public static final int GL_SUB_ATI = 0x8965; - public static final int GL_SUNX_constant_data = 1; - public static final int GL_SUN_convolution_border_modes = 1; - public static final int GL_SUN_global_alpha = 1; - public static final int GL_SUN_triangle_list = 1; - public static final int GL_SUN_vertex = 1; - public static final int GL_SWIZZLE_STQ_ATI = 0x8977; - public static final int GL_SWIZZLE_STQ_DQ_ATI = 0x8979; - public static final int GL_SWIZZLE_STRQ_ATI = 0x897A; - public static final int GL_SWIZZLE_STRQ_DQ_ATI = 0x897B; - public static final int GL_SWIZZLE_STR_ATI = 0x8976; - public static final int GL_SWIZZLE_STR_DR_ATI = 0x8978; - public static final int GL_T = 0x2001; - public static final int GL_T2F_C3F_V3F = 0x2A2A; - public static final int GL_T2F_C4F_N3F_V3F = 0x2A2C; - public static final int GL_T2F_C4UB_V3F = 0x2A29; - public static final int GL_T2F_IUI_N3F_V2F_EXT = 0x81B3; - public static final int GL_T2F_IUI_N3F_V3F_EXT = 0x81B4; - public static final int GL_T2F_IUI_V2F_EXT = 0x81B1; - public static final int GL_T2F_IUI_V3F_EXT = 0x81B2; - public static final int GL_T2F_N3F_V3F = 0x2A2B; - public static final int GL_T2F_V3F = 0x2A27; - public static final int GL_T4F_C4F_N3F_V4F = 0x2A2D; - public static final int GL_T4F_V4F = 0x2A28; - public static final int GL_TABLE_TOO_LARGE = 0x8031; - public static final int GL_TABLE_TOO_LARGE_EXT = 0x8031; - public static final int GL_TANGENT_ARRAY_EXT = 0x8439; - public static final int GL_TANGENT_ARRAY_POINTER_EXT = 0x8442; - public static final int GL_TANGENT_ARRAY_STRIDE_EXT = 0x843F; - public static final int GL_TANGENT_ARRAY_TYPE_EXT = 0x843E; - public static final int GL_TEXCOORD1_BIT_PGI = 0x10000000; - public static final int GL_TEXCOORD2_BIT_PGI = 0x20000000; - public static final int GL_TEXCOORD3_BIT_PGI = 0x40000000; - public static final int GL_TEXCOORD4_BIT_PGI = 0x80000000; - public static final int GL_TEXTURE = 0x1702; - public static final int GL_TEXTURE0 = 0x84C0; - public static final int GL_TEXTURE0_ARB = 0x84C0; - public static final int GL_TEXTURE1 = 0x84C1; - public static final int GL_TEXTURE10 = 0x84CA; - public static final int GL_TEXTURE10_ARB = 0x84CA; - public static final int GL_TEXTURE11 = 0x84CB; - public static final int GL_TEXTURE11_ARB = 0x84CB; - public static final int GL_TEXTURE12 = 0x84CC; - public static final int GL_TEXTURE12_ARB = 0x84CC; - public static final int GL_TEXTURE13 = 0x84CD; - public static final int GL_TEXTURE13_ARB = 0x84CD; - public static final int GL_TEXTURE14 = 0x84CE; - public static final int GL_TEXTURE14_ARB = 0x84CE; - public static final int GL_TEXTURE15 = 0x84CF; - public static final int GL_TEXTURE15_ARB = 0x84CF; - public static final int GL_TEXTURE16 = 0x84D0; - public static final int GL_TEXTURE16_ARB = 0x84D0; - public static final int GL_TEXTURE17 = 0x84D1; - public static final int GL_TEXTURE17_ARB = 0x84D1; - public static final int GL_TEXTURE18 = 0x84D2; - public static final int GL_TEXTURE18_ARB = 0x84D2; - public static final int GL_TEXTURE19 = 0x84D3; - public static final int GL_TEXTURE19_ARB = 0x84D3; - public static final int GL_TEXTURE1_ARB = 0x84C1; - public static final int GL_TEXTURE2 = 0x84C2; - public static final int GL_TEXTURE20 = 0x84D4; - public static final int GL_TEXTURE20_ARB = 0x84D4; - public static final int GL_TEXTURE21 = 0x84D5; - public static final int GL_TEXTURE21_ARB = 0x84D5; - public static final int GL_TEXTURE22 = 0x84D6; - public static final int GL_TEXTURE22_ARB = 0x84D6; - public static final int GL_TEXTURE23 = 0x84D7; - public static final int GL_TEXTURE23_ARB = 0x84D7; - public static final int GL_TEXTURE24 = 0x84D8; - public static final int GL_TEXTURE24_ARB = 0x84D8; - public static final int GL_TEXTURE25 = 0x84D9; - public static final int GL_TEXTURE25_ARB = 0x84D9; - public static final int GL_TEXTURE26 = 0x84DA; - public static final int GL_TEXTURE26_ARB = 0x84DA; - public static final int GL_TEXTURE27 = 0x84DB; - public static final int GL_TEXTURE27_ARB = 0x84DB; - public static final int GL_TEXTURE28 = 0x84DC; - public static final int GL_TEXTURE28_ARB = 0x84DC; - public static final int GL_TEXTURE29 = 0x84DD; - public static final int GL_TEXTURE29_ARB = 0x84DD; - public static final int GL_TEXTURE2_ARB = 0x84C2; - public static final int GL_TEXTURE3 = 0x84C3; - public static final int GL_TEXTURE30 = 0x84DE; - public static final int GL_TEXTURE30_ARB = 0x84DE; - public static final int GL_TEXTURE31 = 0x84DF; - public static final int GL_TEXTURE31_ARB = 0x84DF; - public static final int GL_TEXTURE3_ARB = 0x84C3; - public static final int GL_TEXTURE4 = 0x84C4; - public static final int GL_TEXTURE4_ARB = 0x84C4; - public static final int GL_TEXTURE5 = 0x84C5; - public static final int GL_TEXTURE5_ARB = 0x84C5; - public static final int GL_TEXTURE6 = 0x84C6; - public static final int GL_TEXTURE6_ARB = 0x84C6; - public static final int GL_TEXTURE7 = 0x84C7; - public static final int GL_TEXTURE7_ARB = 0x84C7; - public static final int GL_TEXTURE8 = 0x84C8; - public static final int GL_TEXTURE8_ARB = 0x84C8; - public static final int GL_TEXTURE9 = 0x84C9; - public static final int GL_TEXTURE9_ARB = 0x84C9; - public static final int GL_TEXTURE_1D = 0x0DE0; - public static final int GL_TEXTURE_1D_BINDING_EXT = 0x8068; - public static final int GL_TEXTURE_2D = 0x0DE1; - public static final int GL_TEXTURE_2D_BINDING_EXT = 0x8069; - public static final int GL_TEXTURE_3D = 0x806F; - public static final int GL_TEXTURE_3D_BINDING_EXT = 0x806A; - public static final int GL_TEXTURE_3D_EXT = 0x806F; - public static final int GL_TEXTURE_4DSIZE_SGIS = 0x8136; - public static final int GL_TEXTURE_4D_BINDING_SGIS = 0x814F; - public static final int GL_TEXTURE_4D_SGIS = 0x8134; - public static final int GL_TEXTURE_ALPHA_SIZE = 0x805F; - public static final int GL_TEXTURE_ALPHA_SIZE_EXT = 0x805F; - public static final int GL_TEXTURE_APPLICATION_MODE_EXT = 0x834F; - public static final int GL_TEXTURE_BASE_LEVEL = 0x813C; - public static final int GL_TEXTURE_BASE_LEVEL_SGIS = 0x813C; - public static final int GL_TEXTURE_BINDING_1D = 0x8068; - public static final int GL_TEXTURE_BINDING_2D = 0x8069; - public static final int GL_TEXTURE_BINDING_3D = 0x806A; - public static final int GL_TEXTURE_BINDING_CUBE_MAP = 0x8514; - public static final int GL_TEXTURE_BINDING_CUBE_MAP_ARB = 0x8514; - public static final int GL_TEXTURE_BINDING_CUBE_MAP_EXT = 0x8514; - public static final int GL_TEXTURE_BINDING_RECTANGLE_NV = 0x84F6; - public static final int GL_TEXTURE_BIT = 0x00040000; - public static final int GL_TEXTURE_BLUE_SIZE = 0x805E; - public static final int GL_TEXTURE_BLUE_SIZE_EXT = 0x805E; - public static final int GL_TEXTURE_BORDER = 0x1005; - public static final int GL_TEXTURE_BORDER_COLOR = 0x1004; - public static final int GL_TEXTURE_BORDER_VALUES_NV = 0x871A; - public static final int GL_TEXTURE_CLIPMAP_CENTER_SGIX = 0x8171; - public static final int GL_TEXTURE_CLIPMAP_DEPTH_SGIX = 0x8176; - public static final int GL_TEXTURE_CLIPMAP_FRAME_SGIX = 0x8172; - public static final int GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX = 0x8175; - public static final int GL_TEXTURE_CLIPMAP_OFFSET_SGIX = 0x8173; - public static final int GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX = 0x8174; - public static final int GL_TEXTURE_COLOR_TABLE_SGI = 0x80BC; - public static final int GL_TEXTURE_COLOR_WRITEMASK_SGIS = 0x81EF; - public static final int GL_TEXTURE_COMPARE_OPERATOR_SGIX = 0x819B; - public static final int GL_TEXTURE_COMPARE_SGIX = 0x819A; - public static final int GL_TEXTURE_COMPONENTS = 0x1003; - public static final int GL_TEXTURE_COMPRESSED = 0x86A1; - public static final int GL_TEXTURE_COMPRESSED_ARB = 0x86A1; - public static final int GL_TEXTURE_COMPRESSED_IMAGE_SIZE = 0x86A0; - public static final int GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB = 0x86A0; - public static final int GL_TEXTURE_COMPRESSION_HINT = 0x84EF; - public static final int GL_TEXTURE_COMPRESSION_HINT_ARB = 0x84EF; - public static final int GL_TEXTURE_CONSTANT_DATA_SUNX = 0x81D6; - public static final int GL_TEXTURE_COORD_ARRAY = 0x8078; - public static final int GL_TEXTURE_COORD_ARRAY_COUNT_EXT = 0x808B; - public static final int GL_TEXTURE_COORD_ARRAY_EXT = 0x8078; - public static final int GL_TEXTURE_COORD_ARRAY_LIST_IBM = 103074; - public static final int GL_TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM = 103084; - public static final int GL_TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL = 0x83F8; - public static final int GL_TEXTURE_COORD_ARRAY_POINTER = 0x8092; - public static final int GL_TEXTURE_COORD_ARRAY_POINTER_EXT = 0x8092; - public static final int GL_TEXTURE_COORD_ARRAY_SIZE = 0x8088; - public static final int GL_TEXTURE_COORD_ARRAY_SIZE_EXT = 0x8088; - public static final int GL_TEXTURE_COORD_ARRAY_STRIDE = 0x808A; - public static final int GL_TEXTURE_COORD_ARRAY_STRIDE_EXT = 0x808A; - public static final int GL_TEXTURE_COORD_ARRAY_TYPE = 0x8089; - public static final int GL_TEXTURE_COORD_ARRAY_TYPE_EXT = 0x8089; - public static final int GL_TEXTURE_CUBE_MAP = 0x8513; - public static final int GL_TEXTURE_CUBE_MAP_ARB = 0x8513; - public static final int GL_TEXTURE_CUBE_MAP_EXT = 0x8513; - public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_X = 0x8516; - public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB = 0x8516; - public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_X_EXT = 0x8516; - public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_Y = 0x8518; - public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB = 0x8518; - public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT = 0x8518; - public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_Z = 0x851A; - public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB = 0x851A; - public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT = 0x851A; - public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_X = 0x8515; - public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB = 0x8515; - public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_X_EXT = 0x8515; - public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_Y = 0x8517; - public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB = 0x8517; - public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_Y_EXT = 0x8517; - public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_Z = 0x8519; - public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB = 0x8519; - public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_Z_EXT = 0x8519; - public static final int GL_TEXTURE_DEFORMATION_BIT_SGIX = 0x00000001; - public static final int GL_TEXTURE_DEFORMATION_SGIX = 0x8195; - public static final int GL_TEXTURE_DEPTH = 0x8071; - public static final int GL_TEXTURE_DEPTH_EXT = 0x8071; - public static final int GL_TEXTURE_DS_SIZE_NV = 0x871D; - public static final int GL_TEXTURE_DT_SIZE_NV = 0x871E; - public static final int GL_TEXTURE_ENV = 0x2300; - public static final int GL_TEXTURE_ENV_BIAS_SGIX = 0x80BE; - public static final int GL_TEXTURE_ENV_COLOR = 0x2201; - public static final int GL_TEXTURE_ENV_MODE = 0x2200; - public static final int GL_TEXTURE_FILTER4_SIZE_SGIS = 0x8147; - public static final int GL_TEXTURE_FILTER_CONTROL_EXT = 0x8500; - public static final int GL_TEXTURE_GEN_MODE = 0x2500; - public static final int GL_TEXTURE_GEN_Q = 0x0C63; - public static final int GL_TEXTURE_GEN_R = 0x0C62; - public static final int GL_TEXTURE_GEN_S = 0x0C60; - public static final int GL_TEXTURE_GEN_T = 0x0C61; - public static final int GL_TEXTURE_GEQUAL_R_SGIX = 0x819D; - public static final int GL_TEXTURE_GREEN_SIZE = 0x805D; - public static final int GL_TEXTURE_GREEN_SIZE_EXT = 0x805D; - public static final int GL_TEXTURE_HEIGHT = 0x1001; - public static final int GL_TEXTURE_HI_SIZE_NV = 0x871B; - public static final int GL_TEXTURE_INDEX_SIZE_EXT = 0x80ED; - public static final int GL_TEXTURE_INTENSITY_SIZE = 0x8061; - public static final int GL_TEXTURE_INTENSITY_SIZE_EXT = 0x8061; - public static final int GL_TEXTURE_INTERNAL_FORMAT = 0x1003; - public static final int GL_TEXTURE_LEQUAL_R_SGIX = 0x819C; - public static final int GL_TEXTURE_LIGHTING_MODE_HP = 0x8167; - public static final int GL_TEXTURE_LIGHT_EXT = 0x8350; - public static final int GL_TEXTURE_LOD_BIAS_EXT = 0x8501; - public static final int GL_TEXTURE_LOD_BIAS_R_SGIX = 0x8190; - public static final int GL_TEXTURE_LOD_BIAS_S_SGIX = 0x818E; - public static final int GL_TEXTURE_LOD_BIAS_T_SGIX = 0x818F; - public static final int GL_TEXTURE_LO_SIZE_NV = 0x871C; - public static final int GL_TEXTURE_LUMINANCE_SIZE = 0x8060; - public static final int GL_TEXTURE_LUMINANCE_SIZE_EXT = 0x8060; - public static final int GL_TEXTURE_MAG_FILTER = 0x2800; - public static final int GL_TEXTURE_MAG_SIZE_NV = 0x871F; - public static final int GL_TEXTURE_MATERIAL_FACE_EXT = 0x8351; - public static final int GL_TEXTURE_MATERIAL_PARAMETER_EXT = 0x8352; - public static final int GL_TEXTURE_MATRIX = 0x0BA8; - public static final int GL_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE; - public static final int GL_TEXTURE_MAX_CLAMP_R_SGIX = 0x836B; - public static final int GL_TEXTURE_MAX_CLAMP_S_SGIX = 0x8369; - public static final int GL_TEXTURE_MAX_CLAMP_T_SGIX = 0x836A; - public static final int GL_TEXTURE_MAX_LEVEL = 0x813D; - public static final int GL_TEXTURE_MAX_LEVEL_SGIS = 0x813D; - public static final int GL_TEXTURE_MAX_LOD = 0x813B; - public static final int GL_TEXTURE_MAX_LOD_SGIS = 0x813B; - public static final int GL_TEXTURE_MIN_FILTER = 0x2801; - public static final int GL_TEXTURE_MIN_LOD = 0x813A; - public static final int GL_TEXTURE_MIN_LOD_SGIS = 0x813A; - public static final int GL_TEXTURE_MULTI_BUFFER_HINT_SGIX = 0x812E; - public static final int GL_TEXTURE_NORMAL_EXT = 0x85AF; - public static final int GL_TEXTURE_POST_SPECULAR_HP = 0x8168; - public static final int GL_TEXTURE_PRE_SPECULAR_HP = 0x8169; - public static final int GL_TEXTURE_PRIORITY = 0x8066; - public static final int GL_TEXTURE_PRIORITY_EXT = 0x8066; - public static final int GL_TEXTURE_RECTANGLE_NV = 0x84F5; - public static final int GL_TEXTURE_RED_SIZE = 0x805C; - public static final int GL_TEXTURE_RED_SIZE_EXT = 0x805C; - public static final int GL_TEXTURE_RESIDENT = 0x8067; - public static final int GL_TEXTURE_RESIDENT_EXT = 0x8067; - public static final int GL_TEXTURE_SHADER_NV = 0x86DE; - public static final int GL_TEXTURE_STACK_DEPTH = 0x0BA5; - public static final int GL_TEXTURE_TOO_LARGE_EXT = 0x8065; - public static final int GL_TEXTURE_WIDTH = 0x1000; - public static final int GL_TEXTURE_WRAP_Q_SGIS = 0x8137; - public static final int GL_TEXTURE_WRAP_R = 0x8072; - public static final int GL_TEXTURE_WRAP_R_EXT = 0x8072; - public static final int GL_TEXTURE_WRAP_S = 0x2802; - public static final int GL_TEXTURE_WRAP_T = 0x2803; - public static final int GL_TRACE_ALL_BITS_MESA = 0xFFFF; - public static final int GL_TRACE_ARRAYS_BIT_MESA = 0x0004; - public static final int GL_TRACE_ERRORS_BIT_MESA = 0x0020; - public static final int GL_TRACE_MASK_MESA = 0x8755; - public static final int GL_TRACE_NAME_MESA = 0x8756; - public static final int GL_TRACE_OPERATIONS_BIT_MESA = 0x0001; - public static final int GL_TRACE_PIXELS_BIT_MESA = 0x0010; - public static final int GL_TRACE_PRIMITIVES_BIT_MESA = 0x0002; - public static final int GL_TRACE_TEXTURES_BIT_MESA = 0x0008; - public static final int GL_TRACK_MATRIX_NV = 0x8648; - public static final int GL_TRACK_MATRIX_TRANSFORM_NV = 0x8649; - public static final int GL_TRANSFORM_BIT = 0x00001000; - public static final int GL_TRANSFORM_HINT_APPLE = 0x85B1; - public static final int GL_TRANSPOSE_COLOR_MATRIX = 0x84E6; - public static final int GL_TRANSPOSE_COLOR_MATRIX_ARB = 0x84E6; - public static final int GL_TRANSPOSE_MODELVIEW_MATRIX = 0x84E3; - public static final int GL_TRANSPOSE_MODELVIEW_MATRIX_ARB = 0x84E3; - public static final int GL_TRANSPOSE_NV = 0x862C; - public static final int GL_TRANSPOSE_PROJECTION_MATRIX = 0x84E4; - public static final int GL_TRANSPOSE_PROJECTION_MATRIX_ARB = 0x84E4; - public static final int GL_TRANSPOSE_TEXTURE_MATRIX = 0x84E5; - public static final int GL_TRANSPOSE_TEXTURE_MATRIX_ARB = 0x84E5; - public static final int GL_TRIANGLES = 0x0004; - public static final int GL_TRIANGLE_FAN = 0x0006; - public static final int GL_TRIANGLE_LIST_SUN = 0x81D7; - public static final int GL_TRIANGLE_STRIP = 0x0005; - public static final int GL_UNPACK_ALIGNMENT = 0x0CF5; - public static final int GL_UNPACK_CMYK_HINT_EXT = 0x800F; - public static final int GL_UNPACK_CONSTANT_DATA_SUNX = 0x81D5; - public static final int GL_UNPACK_IMAGE_DEPTH_SGIS = 0x8133; - public static final int GL_UNPACK_IMAGE_HEIGHT = 0x806E; - public static final int GL_UNPACK_IMAGE_HEIGHT_EXT = 0x806E; - public static final int GL_UNPACK_LSB_FIRST = 0x0CF1; - public static final int GL_UNPACK_RESAMPLE_OML = 0x8985; - public static final int GL_UNPACK_RESAMPLE_SGIX = 0x842D; - public static final int GL_UNPACK_ROW_LENGTH = 0x0CF2; - public static final int GL_UNPACK_SKIP_IMAGES = 0x806D; - public static final int GL_UNPACK_SKIP_IMAGES_EXT = 0x806D; - public static final int GL_UNPACK_SKIP_PIXELS = 0x0CF4; - public static final int GL_UNPACK_SKIP_ROWS = 0x0CF3; - public static final int GL_UNPACK_SKIP_VOLUMES_SGIS = 0x8132; - public static final int GL_UNPACK_SUBSAMPLE_RATE_SGIX = 0x85A1; - public static final int GL_UNPACK_SWAP_BYTES = 0x0CF0; - public static final int GL_UNSIGNED_BYTE = 0x1401; - public static final int GL_UNSIGNED_BYTE_2_3_3_REV = 0x8362; - public static final int GL_UNSIGNED_BYTE_3_3_2 = 0x8032; - public static final int GL_UNSIGNED_BYTE_3_3_2_EXT = 0x8032; - public static final int GL_UNSIGNED_IDENTITY_NV = 0x8536; - public static final int GL_UNSIGNED_INT = 0x1405; - public static final int GL_UNSIGNED_INT_10_10_10_2 = 0x8036; - public static final int GL_UNSIGNED_INT_10_10_10_2_EXT = 0x8036; - public static final int GL_UNSIGNED_INT_24_8_MESA = 0x8751; - public static final int GL_UNSIGNED_INT_24_8_NV = 0x84FA; - public static final int GL_UNSIGNED_INT_2_10_10_10_REV = 0x8368; - public static final int GL_UNSIGNED_INT_8_24_REV_MESA = 0x8752; - public static final int GL_UNSIGNED_INT_8_8_8_8 = 0x8035; - public static final int GL_UNSIGNED_INT_8_8_8_8_EXT = 0x8035; - public static final int GL_UNSIGNED_INT_8_8_8_8_REV = 0x8367; - public static final int GL_UNSIGNED_INT_8_8_S8_S8_REV_NV = 0x86DB; - public static final int GL_UNSIGNED_INT_S8_S8_8_8_NV = 0x86DA; - public static final int GL_UNSIGNED_INVERT_NV = 0x8537; - public static final int GL_UNSIGNED_SHORT = 0x1403; - public static final int GL_UNSIGNED_SHORT_15_1_MESA = 0x8753; - public static final int GL_UNSIGNED_SHORT_1_15_REV_MESA = 0x8754; - public static final int GL_UNSIGNED_SHORT_1_5_5_5_REV = 0x8366; - public static final int GL_UNSIGNED_SHORT_4_4_4_4 = 0x8033; - public static final int GL_UNSIGNED_SHORT_4_4_4_4_EXT = 0x8033; - public static final int GL_UNSIGNED_SHORT_4_4_4_4_REV = 0x8365; - public static final int GL_UNSIGNED_SHORT_5_5_5_1 = 0x8034; - public static final int GL_UNSIGNED_SHORT_5_5_5_1_EXT = 0x8034; - public static final int GL_UNSIGNED_SHORT_5_6_5 = 0x8363; - public static final int GL_UNSIGNED_SHORT_5_6_5_REV = 0x8364; - public static final int GL_V2F = 0x2A20; - public static final int GL_V3F = 0x2A21; - public static final int GL_VARIABLE_A_NV = 0x8523; - public static final int GL_VARIABLE_B_NV = 0x8524; - public static final int GL_VARIABLE_C_NV = 0x8525; - public static final int GL_VARIABLE_D_NV = 0x8526; - public static final int GL_VARIABLE_E_NV = 0x8527; - public static final int GL_VARIABLE_F_NV = 0x8528; - public static final int GL_VARIABLE_G_NV = 0x8529; - public static final int GL_VARIANT_ARRAY_EXT = 0x87E8; - public static final int GL_VARIANT_ARRAY_POINTER_EXT = 0x87E9; - public static final int GL_VARIANT_ARRAY_STRIDE_EXT = 0x87E6; - public static final int GL_VARIANT_ARRAY_TYPE_EXT = 0x87E7; - public static final int GL_VARIANT_DATATYPE_EXT = 0x87E5; - public static final int GL_VARIANT_EXT = 0x87C1; - public static final int GL_VARIANT_VALUE_EXT = 0x87E4; - public static final int GL_VECTOR_EXT = 0x87BF; - public static final int GL_VENDOR = 0x1F00; - public static final int GL_VERSION = 0x1F02; - public static final int GL_VERSION_1_1 = 1; - public static final int GL_VERSION_1_2 = 1; - public static final int GL_VERSION_1_3 = 1; - public static final int GL_VERTEX23_BIT_PGI = 0x00000004; - public static final int GL_VERTEX4_BIT_PGI = 0x00000008; - public static final int GL_VERTEX_ARRAY = 0x8074; - public static final int GL_VERTEX_ARRAY_COUNT_EXT = 0x807D; - public static final int GL_VERTEX_ARRAY_EXT = 0x8074; - public static final int GL_VERTEX_ARRAY_LIST_IBM = 103070; - public static final int GL_VERTEX_ARRAY_LIST_STRIDE_IBM = 103080; - public static final int GL_VERTEX_ARRAY_PARALLEL_POINTERS_INTEL = 0x83F5; - public static final int GL_VERTEX_ARRAY_POINTER = 0x808E; - public static final int GL_VERTEX_ARRAY_POINTER_EXT = 0x808E; - public static final int GL_VERTEX_ARRAY_RANGE_LENGTH_NV = 0x851E; - public static final int GL_VERTEX_ARRAY_RANGE_NV = 0x851D; - public static final int GL_VERTEX_ARRAY_RANGE_POINTER_NV = 0x8521; - public static final int GL_VERTEX_ARRAY_RANGE_VALID_NV = 0x851F; - public static final int GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV = 0x8533; - public static final int GL_VERTEX_ARRAY_SIZE = 0x807A; - public static final int GL_VERTEX_ARRAY_SIZE_EXT = 0x807A; - public static final int GL_VERTEX_ARRAY_STRIDE = 0x807C; - public static final int GL_VERTEX_ARRAY_STRIDE_EXT = 0x807C; - public static final int GL_VERTEX_ARRAY_TYPE = 0x807B; - public static final int GL_VERTEX_ARRAY_TYPE_EXT = 0x807B; - public static final int GL_VERTEX_ATTRIB_ARRAY0_NV = 0x8650; - public static final int GL_VERTEX_ATTRIB_ARRAY10_NV = 0x865A; - public static final int GL_VERTEX_ATTRIB_ARRAY11_NV = 0x865B; - public static final int GL_VERTEX_ATTRIB_ARRAY12_NV = 0x865C; - public static final int GL_VERTEX_ATTRIB_ARRAY13_NV = 0x865D; - public static final int GL_VERTEX_ATTRIB_ARRAY14_NV = 0x865E; - public static final int GL_VERTEX_ATTRIB_ARRAY15_NV = 0x865F; - public static final int GL_VERTEX_ATTRIB_ARRAY1_NV = 0x8651; - public static final int GL_VERTEX_ATTRIB_ARRAY2_NV = 0x8652; - public static final int GL_VERTEX_ATTRIB_ARRAY3_NV = 0x8653; - public static final int GL_VERTEX_ATTRIB_ARRAY4_NV = 0x8654; - public static final int GL_VERTEX_ATTRIB_ARRAY5_NV = 0x8655; - public static final int GL_VERTEX_ATTRIB_ARRAY6_NV = 0x8656; - public static final int GL_VERTEX_ATTRIB_ARRAY7_NV = 0x8657; - public static final int GL_VERTEX_ATTRIB_ARRAY8_NV = 0x8658; - public static final int GL_VERTEX_ATTRIB_ARRAY9_NV = 0x8659; - public static final int GL_VERTEX_BLEND_ARB = 0x86A7; - public static final int GL_VERTEX_CONSISTENT_HINT_PGI = 0x1A22B; - public static final int GL_VERTEX_DATA_HINT_PGI = 0x1A22A; - public static final int GL_VERTEX_PRECLIP_HINT_SGIX = 0x83EF; - public static final int GL_VERTEX_PRECLIP_SGIX = 0x83EE; - public static final int GL_VERTEX_PROGRAM_BINDING_NV = 0x864A; - public static final int GL_VERTEX_PROGRAM_NV = 0x8620; - public static final int GL_VERTEX_PROGRAM_POINT_SIZE_NV = 0x8642; - public static final int GL_VERTEX_PROGRAM_TWO_SIDE_NV = 0x8643; - public static final int GL_VERTEX_SHADER_BINDING_EXT = 0x8781; - public static final int GL_VERTEX_SHADER_EXT = 0x8780; - public static final int GL_VERTEX_SHADER_INSTRUCTIONS_EXT = 0x87CF; - public static final int GL_VERTEX_SHADER_INVARIANTS_EXT = 0x87D1; - public static final int GL_VERTEX_SHADER_LOCALS_EXT = 0x87D3; - public static final int GL_VERTEX_SHADER_LOCAL_CONSTANTS_EXT = 0x87D2; - public static final int GL_VERTEX_SHADER_OPTIMIZED_EXT = 0x87D4; - public static final int GL_VERTEX_SHADER_VARIANTS_EXT = 0x87D0; - public static final int GL_VERTEX_SOURCE_ATI = 0x8774; - public static final int GL_VERTEX_STATE_PROGRAM_NV = 0x8621; - public static final int GL_VERTEX_STREAM0_ATI = 0x876C; - public static final int GL_VERTEX_STREAM1_ATI = 0x876D; - public static final int GL_VERTEX_STREAM2_ATI = 0x876E; - public static final int GL_VERTEX_STREAM3_ATI = 0x876F; - public static final int GL_VERTEX_STREAM4_ATI = 0x8770; - public static final int GL_VERTEX_STREAM5_ATI = 0x8771; - public static final int GL_VERTEX_STREAM6_ATI = 0x8772; - public static final int GL_VERTEX_STREAM7_ATI = 0x8773; - public static final int GL_VERTEX_WEIGHTING_EXT = 0x8509; - public static final int GL_VERTEX_WEIGHT_ARRAY_EXT = 0x850C; - public static final int GL_VERTEX_WEIGHT_ARRAY_POINTER_EXT = 0x8510; - public static final int GL_VERTEX_WEIGHT_ARRAY_SIZE_EXT = 0x850D; - public static final int GL_VERTEX_WEIGHT_ARRAY_STRIDE_EXT = 0x850F; - public static final int GL_VERTEX_WEIGHT_ARRAY_TYPE_EXT = 0x850E; - public static final int GL_VIBRANCE_BIAS_NV = 0x8719; - public static final int GL_VIBRANCE_SCALE_NV = 0x8713; - public static final int GL_VIEWPORT = 0x0BA2; - public static final int GL_VIEWPORT_BIT = 0x00000800; - public static final int GL_WEIGHT_ARRAY_ARB = 0x86AD; - public static final int GL_WEIGHT_ARRAY_POINTER_ARB = 0x86AC; - public static final int GL_WEIGHT_ARRAY_SIZE_ARB = 0x86AB; - public static final int GL_WEIGHT_ARRAY_STRIDE_ARB = 0x86AA; - public static final int GL_WEIGHT_ARRAY_TYPE_ARB = 0x86A9; - public static final int GL_WEIGHT_SUM_UNITY_ARB = 0x86A6; - public static final int GL_WIDE_LINE_HINT_PGI = 0x1A222; - public static final int GL_WIN_phong_shading = 1; - public static final int GL_WIN_specular_fog = 1; - public static final int GL_WRAP_BORDER = 0x8152; - public static final int GL_WRAP_BORDER_SUN = 0x81D4; - public static final int GL_W_EXT = 0x87D8; - public static final int GL_XOR = 0x1506; - public static final int GL_X_EXT = 0x87D5; - public static final int GL_YCRCBA_SGIX = 0x8319; - public static final int GL_YCRCB_422_SGIX = 0x81BB; - public static final int GL_YCRCB_444_SGIX = 0x81BC; - public static final int GL_YCRCB_SGIX = 0x8318; - public static final int GL_Y_EXT = 0x87D6; - public static final int GL_ZERO = 0x0; - public static final int GL_ZOOM_X = 0x0D16; - public static final int GL_ZOOM_Y = 0x0D17; - public static final int GL_Z_EXT = 0x87D7; -/* C2J Parser Version 3.0: Java program parsed successfully. */ +
+ public static final int GL_1PASS_EXT = 0x80A1;
+ public static final int GL_1PASS_SGIS = 0x80A1;
+ public static final int GL_2D = 0x0600;
+ public static final int GL_2PASS_0_EXT = 0x80A2;
+ public static final int GL_2PASS_0_SGIS = 0x80A2;
+ public static final int GL_2PASS_1_EXT = 0x80A3;
+ public static final int GL_2PASS_1_SGIS = 0x80A3;
+ public static final int GL_2X_BIT_ATI = 0x00000001;
+ public static final int GL_2_BYTES = 0x1407;
+ public static final int GL_3D = 0x0601;
+ public static final int GL_3DFX_multisample = 1;
+ public static final int GL_3DFX_tbuffer = 1;
+ public static final int GL_3DFX_texture_compression_FXT1 = 1;
+ public static final int GL_3D_COLOR = 0x0602;
+ public static final int GL_3D_COLOR_TEXTURE = 0x0603;
+ public static final int GL_3_BYTES = 0x1408;
+ public static final int GL_422_AVERAGE_EXT = 0x80CE;
+ public static final int GL_422_EXT = 0x80CC;
+ public static final int GL_422_REV_AVERAGE_EXT = 0x80CF;
+ public static final int GL_422_REV_EXT = 0x80CD;
+ public static final int GL_4D_COLOR_TEXTURE = 0x0604;
+ public static final int GL_4PASS_0_EXT = 0x80A4;
+ public static final int GL_4PASS_0_SGIS = 0x80A4;
+ public static final int GL_4PASS_1_EXT = 0x80A5;
+ public static final int GL_4PASS_1_SGIS = 0x80A5;
+ public static final int GL_4PASS_2_EXT = 0x80A6;
+ public static final int GL_4PASS_2_SGIS = 0x80A6;
+ public static final int GL_4PASS_3_EXT = 0x80A7;
+ public static final int GL_4PASS_3_SGIS = 0x80A7;
+ public static final int GL_4X_BIT_ATI = 0x00000002;
+ public static final int GL_4_BYTES = 0x1409;
+ public static final int GL_8X_BIT_ATI = 0x00000004;
+ public static final int GL_ABGR_EXT = 0x8000;
+ public static final int GL_ACCUM = 0x0100;
+ public static final int GL_ACCUM_ALPHA_BITS = 0x0D5B;
+ public static final int GL_ACCUM_BLUE_BITS = 0x0D5A;
+ public static final int GL_ACCUM_BUFFER_BIT = 0x00000200;
+ public static final int GL_ACCUM_CLEAR_VALUE = 0x0B80;
+ public static final int GL_ACCUM_GREEN_BITS = 0x0D59;
+ public static final int GL_ACCUM_RED_BITS = 0x0D58;
+ public static final int GL_ACTIVE_TEXTURE = 0x84E0;
+ public static final int GL_ACTIVE_TEXTURE_ARB = 0x84E0;
+ public static final int GL_ACTIVE_VERTEX_UNITS_ARB = 0x86A5;
+ public static final int GL_ADD = 0x0104;
+ public static final int GL_ADD_ATI = 0x8963;
+ public static final int GL_ADD_SIGNED = 0x8574;
+ public static final int GL_ADD_SIGNED_ARB = 0x8574;
+ public static final int GL_ADD_SIGNED_EXT = 0x8574;
+ public static final int GL_ALIASED_LINE_WIDTH_RANGE = 0x846E;
+ public static final int GL_ALIASED_POINT_SIZE_RANGE = 0x846D;
+ public static final int GL_ALLOW_DRAW_FRG_HINT_PGI = 0x1A210;
+ public static final int GL_ALLOW_DRAW_MEM_HINT_PGI = 0x1A211;
+ public static final int GL_ALLOW_DRAW_OBJ_HINT_PGI = 0x1A20E;
+ public static final int GL_ALLOW_DRAW_WIN_HINT_PGI = 0x1A20F;
+ public static final int GL_ALL_ATTRIB_BITS = 0x000FFFFF;
+ public static final int GL_ALL_CLIENT_ATTRIB_BITS = 0xFFFFFFFF;
+ public static final int GL_ALL_COMPLETED_NV = 0x84F2;
+ public static final int GL_ALPHA = 0x1906;
+ public static final int GL_ALPHA12 = 0x803D;
+ public static final int GL_ALPHA12_EXT = 0x803D;
+ public static final int GL_ALPHA16 = 0x803E;
+ public static final int GL_ALPHA16_EXT = 0x803E;
+ public static final int GL_ALPHA4 = 0x803B;
+ public static final int GL_ALPHA4_EXT = 0x803B;
+ public static final int GL_ALPHA8 = 0x803C;
+ public static final int GL_ALPHA8_EXT = 0x803C;
+ public static final int GL_ALPHA_BIAS = 0x0D1D;
+ public static final int GL_ALPHA_BITS = 0x0D55;
+ public static final int GL_ALPHA_MAX_CLAMP_INGR = 0x8567;
+ public static final int GL_ALPHA_MAX_SGIX = 0x8321;
+ public static final int GL_ALPHA_MIN_CLAMP_INGR = 0x8563;
+ public static final int GL_ALPHA_MIN_SGIX = 0x8320;
+ public static final int GL_ALPHA_SCALE = 0x0D1C;
+ public static final int GL_ALPHA_TEST = 0x0BC0;
+ public static final int GL_ALPHA_TEST_FUNC = 0x0BC1;
+ public static final int GL_ALPHA_TEST_REF = 0x0BC2;
+ public static final int GL_ALWAYS = 0x0207;
+ public static final int GL_ALWAYS_FAST_HINT_PGI = 0x1A20C;
+ public static final int GL_ALWAYS_SOFT_HINT_PGI = 0x1A20D;
+ public static final int GL_AMBIENT = 0x1200;
+ public static final int GL_AMBIENT_AND_DIFFUSE = 0x1602;
+ public static final int GL_AND = 0x1501;
+ public static final int GL_AND_INVERTED = 0x1504;
+ public static final int GL_AND_REVERSE = 0x1502;
+ public static final int GL_APPLE_specular_vector = 1;
+ public static final int GL_APPLE_transform_hint = 1;
+ public static final int GL_ARB_imaging = 1;
+ public static final int GL_ARB_matrix_palette = 1;
+ public static final int GL_ARB_multisample = 1;
+ public static final int GL_ARB_multitexture = 1;
+ public static final int GL_ARB_point_parameters = 1;
+ public static final int GL_ARB_texture_border_clamp = 1;
+ public static final int GL_ARB_texture_compression = 1;
+ public static final int GL_ARB_texture_cube_map = 1;
+ public static final int GL_ARB_texture_env_add = 1;
+ public static final int GL_ARB_texture_env_combine = 1;
+ public static final int GL_ARB_texture_env_crossbar = 1;
+ public static final int GL_ARB_texture_env_dot3 = 1;
+ public static final int GL_ARB_transpose_matrix = 1;
+ public static final int GL_ARB_vertex_blend = 1;
+ public static final int GL_ARRAY_ELEMENT_LOCK_COUNT_EXT = 0x81A9;
+ public static final int GL_ARRAY_ELEMENT_LOCK_FIRST_EXT = 0x81A8;
+ public static final int GL_ARRAY_OBJECT_BUFFER_ATI = 0x8766;
+ public static final int GL_ARRAY_OBJECT_OFFSET_ATI = 0x8767;
+ public static final int GL_ASYNC_DRAW_PIXELS_SGIX = 0x835D;
+ public static final int GL_ASYNC_HISTOGRAM_SGIX = 0x832C;
+ public static final int GL_ASYNC_MARKER_SGIX = 0x8329;
+ public static final int GL_ASYNC_READ_PIXELS_SGIX = 0x835E;
+ public static final int GL_ASYNC_TEX_IMAGE_SGIX = 0x835C;
+ public static final int GL_ATI_envmap_bumpmap = 1;
+ public static final int GL_ATI_fragment_shader = 1;
+ public static final int GL_ATI_pn_triangles = 1;
+ public static final int GL_ATI_vertex_array_object = 1;
+ public static final int GL_ATI_vertex_streams = 1;
+ public static final int GL_ATTENUATION_EXT = 0x834D;
+ public static final int GL_ATTRIB_ARRAY_POINTER_NV = 0x8645;
+ public static final int GL_ATTRIB_ARRAY_SIZE_NV = 0x8623;
+ public static final int GL_ATTRIB_ARRAY_STRIDE_NV = 0x8624;
+ public static final int GL_ATTRIB_ARRAY_TYPE_NV = 0x8625;
+ public static final int GL_ATTRIB_STACK_DEPTH = 0x0BB0;
+ public static final int GL_AUTO_NORMAL = 0x0D80;
+ public static final int GL_AUX0 = 0x0409;
+ public static final int GL_AUX1 = 0x040A;
+ public static final int GL_AUX2 = 0x040B;
+ public static final int GL_AUX3 = 0x040C;
+ public static final int GL_AUX_BUFFERS = 0x0C00;
+ public static final int GL_AVERAGE_EXT = 0x8335;
+ public static final int GL_AVERAGE_HP = 0x8160;
+ public static final int GL_BACK = 0x0405;
+ public static final int GL_BACK_LEFT = 0x0402;
+ public static final int GL_BACK_NORMALS_HINT_PGI = 0x1A223;
+ public static final int GL_BACK_RIGHT = 0x0403;
+ public static final int GL_BGR = 0x80E0;
+ public static final int GL_BGRA = 0x80E1;
+ public static final int GL_BGRA_EXT = 0x80E1;
+ public static final int GL_BGR_EXT = 0x80E0;
+ public static final int GL_BIAS_BIT_ATI = 0x00000008;
+ public static final int GL_BIAS_BY_NEGATIVE_ONE_HALF_NV = 0x8541;
+ public static final int GL_BINORMAL_ARRAY_EXT = 0x843A;
+ public static final int GL_BINORMAL_ARRAY_POINTER_EXT = 0x8443;
+ public static final int GL_BINORMAL_ARRAY_STRIDE_EXT = 0x8441;
+ public static final int GL_BINORMAL_ARRAY_TYPE_EXT = 0x8440;
+ public static final int GL_BITMAP = 0x1A00;
+ public static final int GL_BITMAP_TOKEN = 0x0704;
+ public static final int GL_BLEND = 0x0BE2;
+ public static final int GL_BLEND_COLOR = 0x8005;
+ public static final int GL_BLEND_COLOR_EXT = 0x8005;
+ public static final int GL_BLEND_DST = 0x0BE0;
+ public static final int GL_BLEND_DST_ALPHA_EXT = 0x80CA;
+ public static final int GL_BLEND_DST_RGB_EXT = 0x80C8;
+ public static final int GL_BLEND_EQUATION = 0x8009;
+ public static final int GL_BLEND_EQUATION_EXT = 0x8009;
+ public static final int GL_BLEND_SRC = 0x0BE1;
+ public static final int GL_BLEND_SRC_ALPHA_EXT = 0x80CB;
+ public static final int GL_BLEND_SRC_RGB_EXT = 0x80C9;
+ public static final int GL_BLUE = 0x1905;
+ public static final int GL_BLUE_BIAS = 0x0D1B;
+ public static final int GL_BLUE_BITS = 0x0D54;
+ public static final int GL_BLUE_BIT_ATI = 0x00000004;
+ public static final int GL_BLUE_MAX_CLAMP_INGR = 0x8566;
+ public static final int GL_BLUE_MIN_CLAMP_INGR = 0x8562;
+ public static final int GL_BLUE_SCALE = 0x0D1A;
+ public static final int GL_BUMP_ENVMAP_ATI = 0x877B;
+ public static final int GL_BUMP_NUM_TEX_UNITS_ATI = 0x8777;
+ public static final int GL_BUMP_ROT_MATRIX_ATI = 0x8775;
+ public static final int GL_BUMP_ROT_MATRIX_SIZE_ATI = 0x8776;
+ public static final int GL_BUMP_TARGET_ATI = 0x877C;
+ public static final int GL_BUMP_TEX_UNITS_ATI = 0x8778;
+ public static final int GL_BYTE = 0x1400;
+ public static final int GL_C3F_V3F = 0x2A24;
+ public static final int GL_C4F_N3F_V3F = 0x2A26;
+ public static final int GL_C4UB_V2F = 0x2A22;
+ public static final int GL_C4UB_V3F = 0x2A23;
+ public static final int GL_CALLIGRAPHIC_FRAGMENT_SGIX = 0x8183;
+ public static final int GL_CCW = 0x0901;
+ public static final int GL_CLAMP = 0x2900;
+ public static final int GL_CLAMP_TO_BORDER = 0x812D;
+ public static final int GL_CLAMP_TO_BORDER_ARB = 0x812D;
+ public static final int GL_CLAMP_TO_BORDER_SGIS = 0x812D;
+ public static final int GL_CLAMP_TO_EDGE = 0x812F;
+ public static final int GL_CLAMP_TO_EDGE_SGIS = 0x812F;
+ public static final int GL_CLEAR = 0x1500;
+ public static final int GL_CLIENT_ACTIVE_TEXTURE = 0x84E1;
+ public static final int GL_CLIENT_ACTIVE_TEXTURE_ARB = 0x84E1;
+ public static final int GL_CLIENT_ALL_ATTRIB_BITS = 0xFFFFFFFF;
+ public static final int GL_CLIENT_ATTRIB_STACK_DEPTH = 0x0BB1;
+ public static final int GL_CLIENT_PIXEL_STORE_BIT = 0x00000001;
+ public static final int GL_CLIENT_VERTEX_ARRAY_BIT = 0x00000002;
+ public static final int GL_CLIP_FAR_HINT_PGI = 0x1A221;
+ public static final int GL_CLIP_NEAR_HINT_PGI = 0x1A220;
+ public static final int GL_CLIP_PLANE0 = 0x3000;
+ public static final int GL_CLIP_PLANE1 = 0x3001;
+ public static final int GL_CLIP_PLANE2 = 0x3002;
+ public static final int GL_CLIP_PLANE3 = 0x3003;
+ public static final int GL_CLIP_PLANE4 = 0x3004;
+ public static final int GL_CLIP_PLANE5 = 0x3005;
+ public static final int GL_CLIP_VOLUME_CLIPPING_HINT_EXT = 0x80F0;
+ public static final int GL_CMYKA_EXT = 0x800D;
+ public static final int GL_CMYK_EXT = 0x800C;
+ public static final int GL_CND0_ATI = 0x896B;
+ public static final int GL_CND_ATI = 0x896A;
+ public static final int GL_COEFF = 0x0A00;
+ public static final int GL_COLOR = 0x1800;
+ public static final int GL_COLOR3_BIT_PGI = 0x00010000;
+ public static final int GL_COLOR4_BIT_PGI = 0x00020000;
+ public static final int GL_COLOR_ALPHA_PAIRING_ATI = 0x8975;
+ public static final int GL_COLOR_ARRAY = 0x8076;
+ public static final int GL_COLOR_ARRAY_COUNT_EXT = 0x8084;
+ public static final int GL_COLOR_ARRAY_EXT = 0x8076;
+ public static final int GL_COLOR_ARRAY_LIST_IBM = 103072;
+ public static final int GL_COLOR_ARRAY_LIST_STRIDE_IBM = 103082;
+ public static final int GL_COLOR_ARRAY_PARALLEL_POINTERS_INTEL = 0x83F7;
+ public static final int GL_COLOR_ARRAY_POINTER = 0x8090;
+ public static final int GL_COLOR_ARRAY_POINTER_EXT = 0x8090;
+ public static final int GL_COLOR_ARRAY_SIZE = 0x8081;
+ public static final int GL_COLOR_ARRAY_SIZE_EXT = 0x8081;
+ public static final int GL_COLOR_ARRAY_STRIDE = 0x8083;
+ public static final int GL_COLOR_ARRAY_STRIDE_EXT = 0x8083;
+ public static final int GL_COLOR_ARRAY_TYPE = 0x8082;
+ public static final int GL_COLOR_ARRAY_TYPE_EXT = 0x8082;
+ public static final int GL_COLOR_BUFFER_BIT = 0x00004000;
+ public static final int GL_COLOR_CLEAR_VALUE = 0x0C22;
+ public static final int GL_COLOR_INDEX = 0x1900;
+ public static final int GL_COLOR_INDEX12_EXT = 0x80E6;
+ public static final int GL_COLOR_INDEX16_EXT = 0x80E7;
+ 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_INDEXES = 0x1603;
+ public static final int GL_COLOR_LOGIC_OP = 0x0BF2;
+ public static final int GL_COLOR_MATERIAL = 0x0B57;
+ public static final int GL_COLOR_MATERIAL_FACE = 0x0B55;
+ public static final int GL_COLOR_MATERIAL_PARAMETER = 0x0B56;
+ public static final int GL_COLOR_MATRIX = 0x80B1;
+ public static final int GL_COLOR_MATRIX_SGI = 0x80B1;
+ public static final int GL_COLOR_MATRIX_STACK_DEPTH = 0x80B2;
+ public static final int GL_COLOR_MATRIX_STACK_DEPTH_SGI = 0x80B2;
+ public static final int GL_COLOR_SUM_CLAMP_NV = 0x854F;
+ public static final int GL_COLOR_SUM_EXT = 0x8458;
+ public static final int GL_COLOR_TABLE = 0x80D0;
+ public static final int GL_COLOR_TABLE_ALPHA_SIZE = 0x80DD;
+ public static final int GL_COLOR_TABLE_ALPHA_SIZE_EXT = 0x80DD;
+ public static final int GL_COLOR_TABLE_ALPHA_SIZE_SGI = 0x80DD;
+ public static final int GL_COLOR_TABLE_BIAS = 0x80D7;
+ public static final int GL_COLOR_TABLE_BIAS_SGI = 0x80D7;
+ public static final int GL_COLOR_TABLE_BLUE_SIZE = 0x80DC;
+ public static final int GL_COLOR_TABLE_BLUE_SIZE_EXT = 0x80DC;
+ public static final int GL_COLOR_TABLE_BLUE_SIZE_SGI = 0x80DC;
+ public static final int GL_COLOR_TABLE_FORMAT = 0x80D8;
+ public static final int GL_COLOR_TABLE_FORMAT_EXT = 0x80D8;
+ public static final int GL_COLOR_TABLE_FORMAT_SGI = 0x80D8;
+ public static final int GL_COLOR_TABLE_GREEN_SIZE = 0x80DB;
+ public static final int GL_COLOR_TABLE_GREEN_SIZE_EXT = 0x80DB;
+ public static final int GL_COLOR_TABLE_GREEN_SIZE_SGI = 0x80DB;
+ public static final int GL_COLOR_TABLE_INTENSITY_SIZE = 0x80DF;
+ public static final int GL_COLOR_TABLE_INTENSITY_SIZE_EXT = 0x80DF;
+ public static final int GL_COLOR_TABLE_INTENSITY_SIZE_SGI = 0x80DF;
+ public static final int GL_COLOR_TABLE_LUMINANCE_SIZE = 0x80DE;
+ public static final int GL_COLOR_TABLE_LUMINANCE_SIZE_EXT = 0x80DE;
+ public static final int GL_COLOR_TABLE_LUMINANCE_SIZE_SGI = 0x80DE;
+ public static final int GL_COLOR_TABLE_RED_SIZE = 0x80DA;
+ public static final int GL_COLOR_TABLE_RED_SIZE_EXT = 0x80DA;
+ public static final int GL_COLOR_TABLE_RED_SIZE_SGI = 0x80DA;
+ public static final int GL_COLOR_TABLE_SCALE = 0x80D6;
+ public static final int GL_COLOR_TABLE_SCALE_SGI = 0x80D6;
+ public static final int GL_COLOR_TABLE_SGI = 0x80D0;
+ public static final int GL_COLOR_TABLE_WIDTH = 0x80D9;
+ public static final int GL_COLOR_TABLE_WIDTH_EXT = 0x80D9;
+ public static final int GL_COLOR_TABLE_WIDTH_SGI = 0x80D9;
+ public static final int GL_COLOR_WRITEMASK = 0x0C23;
+ public static final int GL_COMBINE = 0x8570;
+ public static final int GL_COMBINE4_NV = 0x8503;
+ public static final int GL_COMBINER0_NV = 0x8550;
+ public static final int GL_COMBINER1_NV = 0x8551;
+ public static final int GL_COMBINER2_NV = 0x8552;
+ public static final int GL_COMBINER3_NV = 0x8553;
+ public static final int GL_COMBINER4_NV = 0x8554;
+ public static final int GL_COMBINER5_NV = 0x8555;
+ public static final int GL_COMBINER6_NV = 0x8556;
+ public static final int GL_COMBINER7_NV = 0x8557;
+ public static final int GL_COMBINER_AB_DOT_PRODUCT_NV = 0x8545;
+ public static final int GL_COMBINER_AB_OUTPUT_NV = 0x854A;
+ public static final int GL_COMBINER_BIAS_NV = 0x8549;
+ public static final int GL_COMBINER_CD_DOT_PRODUCT_NV = 0x8546;
+ public static final int GL_COMBINER_CD_OUTPUT_NV = 0x854B;
+ public static final int GL_COMBINER_COMPONENT_USAGE_NV = 0x8544;
+ public static final int GL_COMBINER_INPUT_NV = 0x8542;
+ public static final int GL_COMBINER_MAPPING_NV = 0x8543;
+ public static final int GL_COMBINER_MUX_SUM_NV = 0x8547;
+ public static final int GL_COMBINER_SCALE_NV = 0x8548;
+ public static final int GL_COMBINER_SUM_OUTPUT_NV = 0x854C;
+ public static final int GL_COMBINE_ALPHA = 0x8572;
+ public static final int GL_COMBINE_ALPHA_ARB = 0x8572;
+ public static final int GL_COMBINE_ALPHA_EXT = 0x8572;
+ public static final int GL_COMBINE_ARB = 0x8570;
+ public static final int GL_COMBINE_EXT = 0x8570;
+ public static final int GL_COMBINE_RGB = 0x8571;
+ public static final int GL_COMBINE_RGB_ARB = 0x8571;
+ public static final int GL_COMBINE_RGB_EXT = 0x8571;
+ public static final int GL_COMPILE = 0x1300;
+ public static final int GL_COMPILE_AND_EXECUTE = 0x1301;
+ public static final int GL_COMPRESSED_ALPHA = 0x84E9;
+ public static final int GL_COMPRESSED_ALPHA_ARB = 0x84E9;
+ public static final int GL_COMPRESSED_INTENSITY = 0x84EC;
+ public static final int GL_COMPRESSED_INTENSITY_ARB = 0x84EC;
+ public static final int GL_COMPRESSED_LUMINANCE = 0x84EA;
+ public static final int GL_COMPRESSED_LUMINANCE_ALPHA = 0x84EB;
+ public static final int GL_COMPRESSED_LUMINANCE_ALPHA_ARB = 0x84EB;
+ public static final int GL_COMPRESSED_LUMINANCE_ARB = 0x84EA;
+ public static final int GL_COMPRESSED_RGB = 0x84ED;
+ public static final int GL_COMPRESSED_RGBA = 0x84EE;
+ public static final int GL_COMPRESSED_RGBA_ARB = 0x84EE;
+ public static final int GL_COMPRESSED_RGBA_FXT1_3DFX = 0x86B1;
+ public static final int GL_COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1;
+ public static final int GL_COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83F2;
+ public static final int GL_COMPRESSED_RGBA_S3TC_DXT5_EXT = 0x83F3;
+ public static final int GL_COMPRESSED_RGB_ARB = 0x84ED;
+ public static final int GL_COMPRESSED_RGB_FXT1_3DFX = 0x86B0;
+ public static final int GL_COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0;
+ public static final int GL_COMPRESSED_TEXTURE_FORMATS = 0x86A3;
+ public static final int GL_COMPRESSED_TEXTURE_FORMATS_ARB = 0x86A3;
+ public static final int GL_COMP_BIT_ATI = 0x00000002;
+ public static final int GL_CONSERVE_MEMORY_HINT_PGI = 0x1A1FD;
+ public static final int GL_CONSTANT = 0x8576;
+ public static final int GL_CONSTANT_ALPHA = 0x8003;
+ public static final int GL_CONSTANT_ALPHA_EXT = 0x8003;
+ public static final int GL_CONSTANT_ARB = 0x8576;
+ public static final int GL_CONSTANT_ATTENUATION = 0x1207;
+ public static final int GL_CONSTANT_BORDER = 0x8151;
+ public static final int GL_CONSTANT_BORDER_HP = 0x8151;
+ public static final int GL_CONSTANT_COLOR = 0x8001;
+ public static final int GL_CONSTANT_COLOR0_NV = 0x852A;
+ public static final int GL_CONSTANT_COLOR1_NV = 0x852B;
+ public static final int GL_CONSTANT_COLOR_EXT = 0x8001;
+ public static final int GL_CONSTANT_EXT = 0x8576;
+ public static final int GL_CONST_EYE_NV = 0x86E5;
+ public static final int GL_CONVOLUTION_1D = 0x8010;
+ public static final int GL_CONVOLUTION_1D_EXT = 0x8010;
+ public static final int GL_CONVOLUTION_2D = 0x8011;
+ public static final int GL_CONVOLUTION_2D_EXT = 0x8011;
+ public static final int GL_CONVOLUTION_BORDER_COLOR = 0x8154;
+ public static final int GL_CONVOLUTION_BORDER_COLOR_HP = 0x8154;
+ public static final int GL_CONVOLUTION_BORDER_MODE = 0x8013;
+ public static final int GL_CONVOLUTION_BORDER_MODE_EXT = 0x8013;
+ public static final int GL_CONVOLUTION_FILTER_BIAS = 0x8015;
+ public static final int GL_CONVOLUTION_FILTER_BIAS_EXT = 0x8015;
+ public static final int GL_CONVOLUTION_FILTER_SCALE = 0x8014;
+ public static final int GL_CONVOLUTION_FILTER_SCALE_EXT = 0x8014;
+ public static final int GL_CONVOLUTION_FORMAT = 0x8017;
+ public static final int GL_CONVOLUTION_FORMAT_EXT = 0x8017;
+ public static final int GL_CONVOLUTION_HEIGHT = 0x8019;
+ public static final int GL_CONVOLUTION_HEIGHT_EXT = 0x8019;
+ public static final int GL_CONVOLUTION_HINT_SGIX = 0x8316;
+ public static final int GL_CONVOLUTION_WIDTH = 0x8018;
+ public static final int GL_CONVOLUTION_WIDTH_EXT = 0x8018;
+ public static final int GL_CON_0_ATI = 0x8941;
+ public static final int GL_CON_10_ATI = 0x894B;
+ public static final int GL_CON_11_ATI = 0x894C;
+ public static final int GL_CON_12_ATI = 0x894D;
+ public static final int GL_CON_13_ATI = 0x894E;
+ public static final int GL_CON_14_ATI = 0x894F;
+ public static final int GL_CON_15_ATI = 0x8950;
+ public static final int GL_CON_16_ATI = 0x8951;
+ public static final int GL_CON_17_ATI = 0x8952;
+ public static final int GL_CON_18_ATI = 0x8953;
+ public static final int GL_CON_19_ATI = 0x8954;
+ public static final int GL_CON_1_ATI = 0x8942;
+ public static final int GL_CON_20_ATI = 0x8955;
+ public static final int GL_CON_21_ATI = 0x8956;
+ public static final int GL_CON_22_ATI = 0x8957;
+ public static final int GL_CON_23_ATI = 0x8958;
+ public static final int GL_CON_24_ATI = 0x8959;
+ public static final int GL_CON_25_ATI = 0x895A;
+ public static final int GL_CON_26_ATI = 0x895B;
+ public static final int GL_CON_27_ATI = 0x895C;
+ public static final int GL_CON_28_ATI = 0x895D;
+ public static final int GL_CON_29_ATI = 0x895E;
+ public static final int GL_CON_2_ATI = 0x8943;
+ public static final int GL_CON_30_ATI = 0x895F;
+ public static final int GL_CON_31_ATI = 0x8960;
+ public static final int GL_CON_3_ATI = 0x8944;
+ public static final int GL_CON_4_ATI = 0x8945;
+ public static final int GL_CON_5_ATI = 0x8946;
+ public static final int GL_CON_6_ATI = 0x8947;
+ public static final int GL_CON_7_ATI = 0x8948;
+ public static final int GL_CON_8_ATI = 0x8949;
+ public static final int GL_CON_9_ATI = 0x894A;
+ public static final int GL_COPY = 0x1503;
+ public static final int GL_COPY_INVERTED = 0x150C;
+ public static final int GL_COPY_PIXEL_TOKEN = 0x0706;
+ public static final int GL_CUBIC_EXT = 0x8334;
+ public static final int GL_CUBIC_HP = 0x815F;
+ public static final int GL_CULL_FACE = 0x0B44;
+ public static final int GL_CULL_FACE_MODE = 0x0B45;
+ public static final int GL_CULL_FRAGMENT_NV = 0x86E7;
+ public static final int GL_CULL_MODES_NV = 0x86E0;
+ public static final int GL_CULL_VERTEX_EXT = 0x81AA;
+ public static final int GL_CULL_VERTEX_EYE_POSITION_EXT = 0x81AB;
+ public static final int GL_CULL_VERTEX_IBM = 103050;
+ public static final int GL_CULL_VERTEX_OBJECT_POSITION_EXT = 0x81AC;
+ public static final int GL_CURRENT_ATTRIB_NV = 0x8626;
+ public static final int GL_CURRENT_BINORMAL_EXT = 0x843C;
+ public static final int GL_CURRENT_BIT = 0x00000001;
+ public static final int GL_CURRENT_COLOR = 0x0B00;
+ public static final int GL_CURRENT_FOG_COORDINATE_EXT = 0x8453;
+ public static final int GL_CURRENT_INDEX = 0x0B01;
+ public static final int GL_CURRENT_MATRIX_INDEX_ARB = 0x8845;
+ public static final int GL_CURRENT_MATRIX_NV = 0x8641;
+ public static final int GL_CURRENT_MATRIX_STACK_DEPTH_NV = 0x8640;
+ public static final int GL_CURRENT_NORMAL = 0x0B02;
+ public static final int GL_CURRENT_PALETTE_MATRIX_ARB = 0x8843;
+ public static final int GL_CURRENT_RASTER_COLOR = 0x0B04;
+ public static final int GL_CURRENT_RASTER_DISTANCE = 0x0B09;
+ public static final int GL_CURRENT_RASTER_INDEX = 0x0B05;
+ public static final int GL_CURRENT_RASTER_NORMAL_SGIX = 0x8406;
+ public static final int GL_CURRENT_RASTER_POSITION = 0x0B07;
+ public static final int GL_CURRENT_RASTER_POSITION_VALID = 0x0B08;
+ public static final int GL_CURRENT_RASTER_TEXTURE_COORDS = 0x0B06;
+ public static final int GL_CURRENT_SECONDARY_COLOR_EXT = 0x8459;
+ public static final int GL_CURRENT_TANGENT_EXT = 0x843B;
+ public static final int GL_CURRENT_TEXTURE_COORDS = 0x0B03;
+ public static final int GL_CURRENT_VERTEX_EXT = 0x87E2;
+ public static final int GL_CURRENT_VERTEX_WEIGHT_EXT = 0x850B;
+ public static final int GL_CURRENT_WEIGHT_ARB = 0x86A8;
+ public static final int GL_CW = 0x0900;
+ public static final int GL_DECAL = 0x2101;
+ public static final int GL_DECR = 0x1E03;
+ public static final int GL_DECR_WRAP_EXT = 0x8508;
+ public static final int GL_DEFORMATIONS_MASK_SGIX = 0x8196;
+ public static final int GL_DEPENDENT_AR_TEXTURE_2D_NV = 0x86E9;
+ public static final int GL_DEPENDENT_GB_TEXTURE_2D_NV = 0x86EA;
+ public static final int GL_DEPTH = 0x1801;
+ public static final int GL_DEPTH_BIAS = 0x0D1F;
+ public static final int GL_DEPTH_BITS = 0x0D56;
+ public static final int GL_DEPTH_BUFFER_BIT = 0x00000100;
+ public static final int GL_DEPTH_CLEAR_VALUE = 0x0B73;
+ public static final int GL_DEPTH_COMPONENT = 0x1902;
+ public static final int GL_DEPTH_COMPONENT16_SGIX = 0x81A5;
+ public static final int GL_DEPTH_COMPONENT24_SGIX = 0x81A6;
+ public static final int GL_DEPTH_COMPONENT32_SGIX = 0x81A7;
+ public static final int GL_DEPTH_FUNC = 0x0B74;
+ public static final int GL_DEPTH_PASS_INSTRUMENT_COUNTERS_SGIX = 0x8311;
+ public static final int GL_DEPTH_PASS_INSTRUMENT_MAX_SGIX = 0x8312;
+ public static final int GL_DEPTH_PASS_INSTRUMENT_SGIX = 0x8310;
+ public static final int GL_DEPTH_RANGE = 0x0B70;
+ public static final int GL_DEPTH_SCALE = 0x0D1E;
+ public static final int GL_DEPTH_STENCIL_MESA = 0x8750;
+ public static final int GL_DEPTH_STENCIL_NV = 0x84F9;
+ public static final int GL_DEPTH_STENCIL_TO_BGRA_NV = 0x886F;
+ public static final int GL_DEPTH_STENCIL_TO_RGBA_NV = 0x886E;
+ public static final int GL_DEPTH_TEST = 0x0B71;
+ public static final int GL_DEPTH_WRITEMASK = 0x0B72;
+ public static final int GL_DETAIL_TEXTURE_2D_BINDING_SGIS = 0x8096;
+ public static final int GL_DETAIL_TEXTURE_2D_SGIS = 0x8095;
+ public static final int GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS = 0x809C;
+ public static final int GL_DETAIL_TEXTURE_LEVEL_SGIS = 0x809A;
+ public static final int GL_DETAIL_TEXTURE_MODE_SGIS = 0x809B;
+ public static final int GL_DIFFUSE = 0x1201;
+ public static final int GL_DISCARD_ATI = 0x8763;
+ public static final int GL_DISCARD_NV = 0x8530;
+ public static final int GL_DISTANCE_ATTENUATION_EXT = 0x8129;
+ public static final int GL_DISTANCE_ATTENUATION_SGIS = 0x8129;
+ public static final int GL_DITHER = 0x0BD0;
+ public static final int GL_DOMAIN = 0x0A02;
+ public static final int GL_DONT_CARE = 0x1100;
+ public static final int GL_DOT2_ADD_ATI = 0x896C;
+ public static final int GL_DOT3_ATI = 0x8966;
+ public static final int GL_DOT3_RGB = 0x86AE;
+ public static final int GL_DOT3_RGBA = 0x86AF;
+ public static final int GL_DOT3_RGBA_ARB = 0x86AF;
+ public static final int GL_DOT3_RGBA_EXT = 0x8741;
+ public static final int GL_DOT3_RGB_ARB = 0x86AE;
+ public static final int GL_DOT3_RGB_EXT = 0x8740;
+ public static final int GL_DOT4_ATI = 0x8967;
+ public static final int GL_DOT_PRODUCT_CONST_EYE_REFLECT_CUBE_MAP_NV = 0x86F3;
+ public static final int GL_DOT_PRODUCT_DEPTH_REPLACE_NV = 0x86ED;
+ public static final int GL_DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV = 0x86F1;
+ public static final int GL_DOT_PRODUCT_NV = 0x86EC;
+ public static final int GL_DOT_PRODUCT_REFLECT_CUBE_MAP_NV = 0x86F2;
+ public static final int GL_DOT_PRODUCT_TEXTURE_2D_NV = 0x86EE;
+ public static final int GL_DOT_PRODUCT_TEXTURE_3D_NV = 0x86EF;
+ public static final int GL_DOT_PRODUCT_TEXTURE_CUBE_MAP_NV = 0x86F0;
+ public static final int GL_DOT_PRODUCT_TEXTURE_RECTANGLE_NV = 0x864E;
+ public static final int GL_DOUBLE = 0x140A;
+ public static final int GL_DOUBLEBUFFER = 0x0C32;
+ public static final int GL_DRAW_BUFFER = 0x0C01;
+ public static final int GL_DRAW_PIXEL_TOKEN = 0x0705;
+ public static final int GL_DSDT8_MAG8_INTENSITY8_NV = 0x870B;
+ public static final int GL_DSDT8_MAG8_NV = 0x870A;
+ public static final int GL_DSDT8_NV = 0x8709;
+ public static final int GL_DSDT_MAG_INTENSITY_NV = 0x86DC;
+ public static final int GL_DSDT_MAG_NV = 0x86F6;
+ public static final int GL_DSDT_MAG_VIB_NV = 0x86F7;
+ public static final int GL_DSDT_NV = 0x86F5;
+ public static final int GL_DST_ALPHA = 0x0304;
+ public static final int GL_DST_COLOR = 0x0306;
+ public static final int GL_DS_BIAS_NV = 0x8716;
+ public static final int GL_DS_SCALE_NV = 0x8710;
+ public static final int GL_DT_BIAS_NV = 0x8717;
+ public static final int GL_DT_SCALE_NV = 0x8711;
+ public static final int GL_DU8DV8_ATI = 0x877A;
+ public static final int GL_DUAL_ALPHA12_SGIS = 0x8112;
+ public static final int GL_DUAL_ALPHA16_SGIS = 0x8113;
+ public static final int GL_DUAL_ALPHA4_SGIS = 0x8110;
+ public static final int GL_DUAL_ALPHA8_SGIS = 0x8111;
+ public static final int GL_DUAL_INTENSITY12_SGIS = 0x811A;
+ public static final int GL_DUAL_INTENSITY16_SGIS = 0x811B;
+ public static final int GL_DUAL_INTENSITY4_SGIS = 0x8118;
+ public static final int GL_DUAL_INTENSITY8_SGIS = 0x8119;
+ public static final int GL_DUAL_LUMINANCE12_SGIS = 0x8116;
+ public static final int GL_DUAL_LUMINANCE16_SGIS = 0x8117;
+ public static final int GL_DUAL_LUMINANCE4_SGIS = 0x8114;
+ public static final int GL_DUAL_LUMINANCE8_SGIS = 0x8115;
+ public static final int GL_DUAL_LUMINANCE_ALPHA4_SGIS = 0x811C;
+ public static final int GL_DUAL_LUMINANCE_ALPHA8_SGIS = 0x811D;
+ public static final int GL_DUAL_TEXTURE_SELECT_SGIS = 0x8124;
+ public static final int GL_DUDV_ATI = 0x8779;
+ public static final int GL_DYNAMIC_ATI = 0x8761;
+ public static final int GL_EDGEFLAG_BIT_PGI = 0x00040000;
+ public static final int GL_EDGE_FLAG = 0x0B43;
+ public static final int GL_EDGE_FLAG_ARRAY = 0x8079;
+ public static final int GL_EDGE_FLAG_ARRAY_COUNT_EXT = 0x808D;
+ public static final int GL_EDGE_FLAG_ARRAY_EXT = 0x8079;
+ public static final int GL_EDGE_FLAG_ARRAY_LIST_IBM = 103075;
+ public static final int GL_EDGE_FLAG_ARRAY_LIST_STRIDE_IBM = 103085;
+ public static final int GL_EDGE_FLAG_ARRAY_POINTER = 0x8093;
+ public static final int GL_EDGE_FLAG_ARRAY_POINTER_EXT = 0x8093;
+ public static final int GL_EDGE_FLAG_ARRAY_STRIDE = 0x808C;
+ public static final int GL_EDGE_FLAG_ARRAY_STRIDE_EXT = 0x808C;
+ public static final int GL_EIGHTH_BIT_ATI = 0x00000020;
+ public static final int GL_EMBOSS_CONSTANT_NV = 0x855E;
+ public static final int GL_EMBOSS_LIGHT_NV = 0x855D;
+ public static final int GL_EMBOSS_MAP_NV = 0x855F;
+ public static final int GL_EMISSION = 0x1600;
+ public static final int GL_ENABLE_BIT = 0x00002000;
+ public static final int GL_EQUAL = 0x0202;
+ public static final int GL_EQUIV = 0x1509;
+ public static final int GL_EVAL_2D_NV = 0x86C0;
+ public static final int GL_EVAL_BIT = 0x00010000;
+ public static final int GL_EVAL_FRACTIONAL_TESSELLATION_NV = 0x86C5;
+ public static final int GL_EVAL_TRIANGULAR_2D_NV = 0x86C1;
+ public static final int GL_EVAL_VERTEX_ATTRIB0_NV = 0x86C6;
+ public static final int GL_EVAL_VERTEX_ATTRIB10_NV = 0x86D0;
+ public static final int GL_EVAL_VERTEX_ATTRIB11_NV = 0x86D1;
+ public static final int GL_EVAL_VERTEX_ATTRIB12_NV = 0x86D2;
+ public static final int GL_EVAL_VERTEX_ATTRIB13_NV = 0x86D3;
+ public static final int GL_EVAL_VERTEX_ATTRIB14_NV = 0x86D4;
+ public static final int GL_EVAL_VERTEX_ATTRIB15_NV = 0x86D5;
+ public static final int GL_EVAL_VERTEX_ATTRIB1_NV = 0x86C7;
+ public static final int GL_EVAL_VERTEX_ATTRIB2_NV = 0x86C8;
+ public static final int GL_EVAL_VERTEX_ATTRIB3_NV = 0x86C9;
+ public static final int GL_EVAL_VERTEX_ATTRIB4_NV = 0x86CA;
+ public static final int GL_EVAL_VERTEX_ATTRIB5_NV = 0x86CB;
+ public static final int GL_EVAL_VERTEX_ATTRIB6_NV = 0x86CC;
+ public static final int GL_EVAL_VERTEX_ATTRIB7_NV = 0x86CD;
+ public static final int GL_EVAL_VERTEX_ATTRIB8_NV = 0x86CE;
+ public static final int GL_EVAL_VERTEX_ATTRIB9_NV = 0x86CF;
+ public static final int GL_EXP = 0x0800;
+ public static final int GL_EXP2 = 0x0801;
+ public static final int GL_EXPAND_NEGATE_NV = 0x8539;
+ public static final int GL_EXPAND_NORMAL_NV = 0x8538;
+ public static final int GL_EXTENSIONS = 0x1F03;
+ public static final int GL_EXT_422_pixels = 1;
+ public static final int GL_EXT_abgr = 1;
+ public static final int GL_EXT_bgra = 1;
+ public static final int GL_EXT_blend_color = 1;
+ public static final int GL_EXT_blend_func_separate = 1;
+ public static final int GL_EXT_blend_logic_op = 1;
+ public static final int GL_EXT_blend_minmax = 1;
+ public static final int GL_EXT_blend_subtract = 1;
+ public static final int GL_EXT_clip_volume_hint = 1;
+ public static final int GL_EXT_cmyka = 1;
+ public static final int GL_EXT_color_matrix = 1;
+ public static final int GL_EXT_color_subtable = 1;
+ public static final int GL_EXT_compiled_vertex_array = 1;
+ public static final int GL_EXT_convolution = 1;
+ public static final int GL_EXT_coordinate_frame = 1;
+ public static final int GL_EXT_copy_texture = 1;
+ public static final int GL_EXT_cull_vertex = 1;
+ public static final int GL_EXT_draw_range_elements = 1;
+ public static final int GL_EXT_fog_coord = 1;
+ public static final int GL_EXT_histogram = 1;
+ public static final int GL_EXT_index_array_formats = 1;
+ public static final int GL_EXT_index_func = 1;
+ public static final int GL_EXT_index_material = 1;
+ public static final int GL_EXT_index_texture = 1;
+ public static final int GL_EXT_light_texture = 1;
+ public static final int GL_EXT_misc_attribute = 1;
+ public static final int GL_EXT_multi_draw_arrays = 1;
+ public static final int GL_EXT_multisample = 1;
+ public static final int GL_EXT_packed_pixels = 1;
+ public static final int GL_EXT_paletted_texture = 1;
+ public static final int GL_EXT_pixel_transform = 1;
+ public static final int GL_EXT_pixel_transform_color_table = 1;
+ public static final int GL_EXT_point_parameters = 1;
+ public static final int GL_EXT_polygon_offset = 1;
+ public static final int GL_EXT_rescale_normal = 1;
+ public static final int GL_EXT_secondary_color = 1;
+ public static final int GL_EXT_separate_specular_color = 1;
+ public static final int GL_EXT_shared_texture_palette = 1;
+ public static final int GL_EXT_stencil_wrap = 1;
+ public static final int GL_EXT_subtexture = 1;
+ public static final int GL_EXT_texture = 1;
+ public static final int GL_EXT_texture3D = 1;
+ public static final int GL_EXT_texture_env_add = 1;
+ public static final int GL_EXT_texture_env_combine = 1;
+ public static final int GL_EXT_texture_env_dot3 = 1;
+ public static final int GL_EXT_texture_filter_anisotropic = 1;
+ public static final int GL_EXT_texture_lod_bias = 1;
+ public static final int GL_EXT_texture_object = 1;
+ public static final int GL_EXT_texture_perturb_normal = 1;
+ public static final int GL_EXT_vertex_array = 1;
+ public static final int GL_EXT_vertex_shader = 1;
+ public static final int GL_EXT_vertex_weighting = 1;
+ public static final int GL_EYE_DISTANCE_TO_LINE_SGIS = 0x81F2;
+ public static final int GL_EYE_DISTANCE_TO_POINT_SGIS = 0x81F0;
+ public static final int GL_EYE_LINEAR = 0x2400;
+ public static final int GL_EYE_LINE_SGIS = 0x81F6;
+ public static final int GL_EYE_PLANE = 0x2502;
+ public static final int GL_EYE_PLANE_ABSOLUTE_NV = 0x855C;
+ public static final int GL_EYE_POINT_SGIS = 0x81F4;
+ public static final int GL_EYE_RADIAL_NV = 0x855B;
+ public static final int GL_E_TIMES_F_NV = 0x8531;
+ public static final int GL_FASTEST = 0x1101;
+ public static final int GL_FEEDBACK = 0x1C01;
+ public static final int GL_FEEDBACK_BUFFER_POINTER = 0x0DF0;
+ public static final int GL_FEEDBACK_BUFFER_SIZE = 0x0DF1;
+ public static final int GL_FEEDBACK_BUFFER_TYPE = 0x0DF2;
+ public static final int GL_FENCE_CONDITION_NV = 0x84F4;
+ public static final int GL_FENCE_STATUS_NV = 0x84F3;
+ public static final int GL_FILL = 0x1B02;
+ public static final int GL_FILTER4_SGIS = 0x8146;
+ public static final int GL_FLAT = 0x1D00;
+ public static final int GL_FLOAT = 0x1406;
+ public static final int GL_FOG = 0x0B60;
+ public static final int GL_FOG_BIT = 0x00000080;
+ public static final int GL_FOG_COLOR = 0x0B66;
+ public static final int GL_FOG_COORDINATE_ARRAY_EXT = 0x8457;
+ public static final int GL_FOG_COORDINATE_ARRAY_LIST_IBM = 103076;
+ public static final int GL_FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM = 103086;
+ public static final int GL_FOG_COORDINATE_ARRAY_POINTER_EXT = 0x8456;
+ public static final int GL_FOG_COORDINATE_ARRAY_STRIDE_EXT = 0x8455;
+ public static final int GL_FOG_COORDINATE_ARRAY_TYPE_EXT = 0x8454;
+ public static final int GL_FOG_COORDINATE_EXT = 0x8451;
+ public static final int GL_FOG_COORDINATE_SOURCE_EXT = 0x8450;
+ public static final int GL_FOG_DENSITY = 0x0B62;
+ public static final int GL_FOG_DISTANCE_MODE_NV = 0x855A;
+ public static final int GL_FOG_END = 0x0B64;
+ public static final int GL_FOG_FUNC_POINTS_SGIS = 0x812B;
+ public static final int GL_FOG_FUNC_SGIS = 0x812A;
+ public static final int GL_FOG_HINT = 0x0C54;
+ public static final int GL_FOG_INDEX = 0x0B61;
+ public static final int GL_FOG_MODE = 0x0B65;
+ public static final int GL_FOG_OFFSET_SGIX = 0x8198;
+ public static final int GL_FOG_OFFSET_VALUE_SGIX = 0x8199;
+ public static final int GL_FOG_SCALE_SGIX = 0x81FC;
+ public static final int GL_FOG_SCALE_VALUE_SGIX = 0x81FD;
+ public static final int GL_FOG_SPECULAR_TEXTURE_WIN = 0x80EC;
+ public static final int GL_FOG_START = 0x0B63;
+ public static final int GL_FORMAT_SUBSAMPLE_244_244_OML = 0x8983;
+ public static final int GL_FORMAT_SUBSAMPLE_24_24_OML = 0x8982;
+ public static final int GL_FRAGMENT_COLOR_EXT = 0x834C;
+ public static final int GL_FRAGMENT_COLOR_MATERIAL_FACE_SGIX = 0x8402;
+ public static final int GL_FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX = 0x8403;
+ public static final int GL_FRAGMENT_COLOR_MATERIAL_SGIX = 0x8401;
+ public static final int GL_FRAGMENT_DEPTH_EXT = 0x8452;
+ public static final int GL_FRAGMENT_LIGHT0_SGIX = 0x840C;
+ public static final int GL_FRAGMENT_LIGHT1_SGIX = 0x840D;
+ public static final int GL_FRAGMENT_LIGHT2_SGIX = 0x840E;
+ public static final int GL_FRAGMENT_LIGHT3_SGIX = 0x840F;
+ public static final int GL_FRAGMENT_LIGHT4_SGIX = 0x8410;
+ public static final int GL_FRAGMENT_LIGHT5_SGIX = 0x8411;
+ public static final int GL_FRAGMENT_LIGHT6_SGIX = 0x8412;
+ public static final int GL_FRAGMENT_LIGHT7_SGIX = 0x8413;
+ public static final int GL_FRAGMENT_LIGHTING_SGIX = 0x8400;
+ public static final int GL_FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX = 0x840A;
+ public static final int GL_FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX = 0x8408;
+ public static final int GL_FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX = 0x840B;
+ public static final int GL_FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX = 0x8409;
+ public static final int GL_FRAGMENT_MATERIAL_EXT = 0x8349;
+ public static final int GL_FRAGMENT_NORMAL_EXT = 0x834A;
+ public static final int GL_FRAGMENT_SHADER_ATI = 0x8920;
+ public static final int GL_FRAMEZOOM_FACTOR_SGIX = 0x818C;
+ public static final int GL_FRAMEZOOM_SGIX = 0x818B;
+ public static final int GL_FRONT = 0x0404;
+ public static final int GL_FRONT_AND_BACK = 0x0408;
+ public static final int GL_FRONT_FACE = 0x0B46;
+ public static final int GL_FRONT_LEFT = 0x0400;
+ public static final int GL_FRONT_RIGHT = 0x0401;
+ public static final int GL_FULL_RANGE_EXT = 0x87E1;
+ public static final int GL_FULL_STIPPLE_HINT_PGI = 0x1A219;
+ public static final int GL_FUNC_ADD = 0x8006;
+ public static final int GL_FUNC_ADD_EXT = 0x8006;
+ public static final int GL_FUNC_REVERSE_SUBTRACT = 0x800B;
+ public static final int GL_FUNC_REVERSE_SUBTRACT_EXT = 0x800B;
+ public static final int GL_FUNC_SUBTRACT = 0x800A;
+ public static final int GL_FUNC_SUBTRACT_EXT = 0x800A;
+ public static final int GL_GENERATE_MIPMAP_HINT_SGIS = 0x8192;
+ public static final int GL_GENERATE_MIPMAP_SGIS = 0x8191;
+ public static final int GL_GEOMETRY_DEFORMATION_BIT_SGIX = 0x00000002;
+ public static final int GL_GEOMETRY_DEFORMATION_SGIX = 0x8194;
+ public static final int GL_GEQUAL = 0x0206;
+ public static final int GL_GLEXT_VERSION = 9;
+ public static final int GL_GLOBAL_ALPHA_FACTOR_SUN = 0x81DA;
+ public static final int GL_GLOBAL_ALPHA_SUN = 0x81D9;
+ public static final int GL_GREATER = 0x0204;
+ public static final int GL_GREEN = 0x1904;
+ public static final int GL_GREEN_BIAS = 0x0D19;
+ public static final int GL_GREEN_BITS = 0x0D53;
+ public static final int GL_GREEN_BIT_ATI = 0x00000002;
+ public static final int GL_GREEN_MAX_CLAMP_INGR = 0x8565;
+ public static final int GL_GREEN_MIN_CLAMP_INGR = 0x8561;
+ public static final int GL_GREEN_SCALE = 0x0D18;
+ public static final int GL_HALF_BIAS_NEGATE_NV = 0x853B;
+ public static final int GL_HALF_BIAS_NORMAL_NV = 0x853A;
+ public static final int GL_HALF_BIT_ATI = 0x00000008;
+ public static final int GL_HILO16_NV = 0x86F8;
+ public static final int GL_HILO_NV = 0x86F4;
+ public static final int GL_HINT_BIT = 0x00008000;
+ public static final int GL_HISTOGRAM = 0x8024;
+ public static final int GL_HISTOGRAM_ALPHA_SIZE = 0x802B;
+ public static final int GL_HISTOGRAM_ALPHA_SIZE_EXT = 0x802B;
+ public static final int GL_HISTOGRAM_BLUE_SIZE = 0x802A;
+ public static final int GL_HISTOGRAM_BLUE_SIZE_EXT = 0x802A;
+ public static final int GL_HISTOGRAM_EXT = 0x8024;
+ public static final int GL_HISTOGRAM_FORMAT = 0x8027;
+ public static final int GL_HISTOGRAM_FORMAT_EXT = 0x8027;
+ public static final int GL_HISTOGRAM_GREEN_SIZE = 0x8029;
+ public static final int GL_HISTOGRAM_GREEN_SIZE_EXT = 0x8029;
+ public static final int GL_HISTOGRAM_LUMINANCE_SIZE = 0x802C;
+ public static final int GL_HISTOGRAM_LUMINANCE_SIZE_EXT = 0x802C;
+ public static final int GL_HISTOGRAM_RED_SIZE = 0x8028;
+ public static final int GL_HISTOGRAM_RED_SIZE_EXT = 0x8028;
+ public static final int GL_HISTOGRAM_SINK = 0x802D;
+ public static final int GL_HISTOGRAM_SINK_EXT = 0x802D;
+ public static final int GL_HISTOGRAM_WIDTH = 0x8026;
+ public static final int GL_HISTOGRAM_WIDTH_EXT = 0x8026;
+ public static final int GL_HI_BIAS_NV = 0x8714;
+ public static final int GL_HI_SCALE_NV = 0x870E;
+ public static final int GL_HP_convolution_border_modes = 1;
+ public static final int GL_HP_image_transform = 1;
+ public static final int GL_HP_occlusion_test = 1;
+ public static final int GL_HP_texture_lighting = 1;
+ public static final int GL_IBM_cull_vertex = 1;
+ public static final int GL_IBM_multimode_draw_arrays = 1;
+ public static final int GL_IBM_rasterpos_clip = 1;
+ public static final int GL_IBM_vertex_array_lists = 1;
+ public static final int GL_IDENTITY_NV = 0x862A;
+ public static final int GL_IGNORE_BORDER = 0x8150;
+ public static final int GL_IGNORE_BORDER_HP = 0x8150;
+ public static final int GL_IMAGE_CUBIC_WEIGHT_HP = 0x815E;
+ public static final int GL_IMAGE_MAG_FILTER_HP = 0x815C;
+ public static final int GL_IMAGE_MIN_FILTER_HP = 0x815D;
+ public static final int GL_IMAGE_ROTATE_ANGLE_HP = 0x8159;
+ public static final int GL_IMAGE_ROTATE_ORIGIN_X_HP = 0x815A;
+ public static final int GL_IMAGE_ROTATE_ORIGIN_Y_HP = 0x815B;
+ public static final int GL_IMAGE_SCALE_X_HP = 0x8155;
+ public static final int GL_IMAGE_SCALE_Y_HP = 0x8156;
+ public static final int GL_IMAGE_TRANSFORM_2D_HP = 0x8161;
+ public static final int GL_IMAGE_TRANSLATE_X_HP = 0x8157;
+ public static final int GL_IMAGE_TRANSLATE_Y_HP = 0x8158;
+ public static final int GL_INCR = 0x1E02;
+ public static final int GL_INCR_WRAP_EXT = 0x8507;
+ public static final int GL_INDEX_ARRAY = 0x8077;
+ public static final int GL_INDEX_ARRAY_COUNT_EXT = 0x8087;
+ public static final int GL_INDEX_ARRAY_EXT = 0x8077;
+ public static final int GL_INDEX_ARRAY_LIST_IBM = 103073;
+ public static final int GL_INDEX_ARRAY_LIST_STRIDE_IBM = 103083;
+ public static final int GL_INDEX_ARRAY_POINTER = 0x8091;
+ public static final int GL_INDEX_ARRAY_POINTER_EXT = 0x8091;
+ public static final int GL_INDEX_ARRAY_STRIDE = 0x8086;
+ public static final int GL_INDEX_ARRAY_STRIDE_EXT = 0x8086;
+ public static final int GL_INDEX_ARRAY_TYPE = 0x8085;
+ public static final int GL_INDEX_ARRAY_TYPE_EXT = 0x8085;
+ public static final int GL_INDEX_BITS = 0x0D51;
+ public static final int GL_INDEX_BIT_PGI = 0x00080000;
+ public static final int GL_INDEX_CLEAR_VALUE = 0x0C20;
+ public static final int GL_INDEX_LOGIC_OP = 0x0BF1;
+ public static final int GL_INDEX_MATERIAL_EXT = 0x81B8;
+ public static final int GL_INDEX_MATERIAL_FACE_EXT = 0x81BA;
+ public static final int GL_INDEX_MATERIAL_PARAMETER_EXT = 0x81B9;
+ public static final int GL_INDEX_MODE = 0x0C30;
+ public static final int GL_INDEX_OFFSET = 0x0D13;
+ public static final int GL_INDEX_SHIFT = 0x0D12;
+ public static final int GL_INDEX_TEST_EXT = 0x81B5;
+ public static final int GL_INDEX_TEST_FUNC_EXT = 0x81B6;
+ public static final int GL_INDEX_TEST_REF_EXT = 0x81B7;
+ public static final int GL_INDEX_WRITEMASK = 0x0C21;
+ public static final int GL_INGR_color_clamp = 1;
+ public static final int GL_INGR_interlace_read = 1;
+ public static final int GL_INSTRUMENT_BUFFER_POINTER_SGIX = 0x8180;
+ public static final int GL_INSTRUMENT_MEASUREMENTS_SGIX = 0x8181;
+ public static final int GL_INT = 0x1404;
+ public static final int GL_INTEL_parallel_arrays = 1;
+ public static final int GL_INTENSITY = 0x8049;
+ public static final int GL_INTENSITY12 = 0x804C;
+ public static final int GL_INTENSITY12_EXT = 0x804C;
+ public static final int GL_INTENSITY16 = 0x804D;
+ public static final int GL_INTENSITY16_EXT = 0x804D;
+ public static final int GL_INTENSITY4 = 0x804A;
+ public static final int GL_INTENSITY4_EXT = 0x804A;
+ public static final int GL_INTENSITY8 = 0x804B;
+ public static final int GL_INTENSITY8_EXT = 0x804B;
+ public static final int GL_INTENSITY_EXT = 0x8049;
+ public static final int GL_INTERLACE_OML = 0x8980;
+ public static final int GL_INTERLACE_READ_INGR = 0x8568;
+ public static final int GL_INTERLACE_READ_OML = 0x8981;
+ public static final int GL_INTERLACE_SGIX = 0x8094;
+ public static final int GL_INTERPOLATE = 0x8575;
+ public static final int GL_INTERPOLATE_ARB = 0x8575;
+ public static final int GL_INTERPOLATE_EXT = 0x8575;
+ public static final int GL_INVALID_ENUM = 0x0500;
+ public static final int GL_INVALID_OPERATION = 0x0502;
+ public static final int GL_INVALID_VALUE = 0x0501;
+ public static final int GL_INVARIANT_DATATYPE_EXT = 0x87EB;
+ public static final int GL_INVARIANT_EXT = 0x87C2;
+ public static final int GL_INVARIANT_VALUE_EXT = 0x87EA;
+ public static final int GL_INVERSE_NV = 0x862B;
+ public static final int GL_INVERSE_TRANSPOSE_NV = 0x862D;
+ public static final int GL_INVERT = 0x150A;
+ public static final int GL_INVERTED_SCREEN_W_REND = 0x8491;
+ public static final int GL_IR_INSTRUMENT1_SGIX = 0x817F;
+ public static final int GL_IUI_N3F_V2F_EXT = 0x81AF;
+ public static final int GL_IUI_N3F_V3F_EXT = 0x81B0;
+ public static final int GL_IUI_V2F_EXT = 0x81AD;
+ public static final int GL_IUI_V3F_EXT = 0x81AE;
+ public static final int GL_KEEP = 0x1E00;
+ public static final int GL_LEFT = 0x0406;
+ public static final int GL_LEQUAL = 0x0203;
+ public static final int GL_LERP_ATI = 0x8969;
+ public static final int GL_LESS = 0x0201;
+ public static final int GL_LIGHT0 = 0x4000;
+ public static final int GL_LIGHT1 = 0x4001;
+ public static final int GL_LIGHT2 = 0x4002;
+ public static final int GL_LIGHT3 = 0x4003;
+ public static final int GL_LIGHT4 = 0x4004;
+ public static final int GL_LIGHT5 = 0x4005;
+ public static final int GL_LIGHT6 = 0x4006;
+ public static final int GL_LIGHT7 = 0x4007;
+ public static final int GL_LIGHTING = 0x0B50;
+ public static final int GL_LIGHTING_BIT = 0x00000040;
+ public static final int GL_LIGHT_ENV_MODE_SGIX = 0x8407;
+ public static final int GL_LIGHT_MODEL_AMBIENT = 0x0B53;
+ public static final int GL_LIGHT_MODEL_COLOR_CONTROL = 0x81F8;
+ public static final int GL_LIGHT_MODEL_COLOR_CONTROL_EXT = 0x81F8;
+ public static final int GL_LIGHT_MODEL_LOCAL_VIEWER = 0x0B51;
+ public static final int GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE = 0x85B0;
+ public static final int GL_LIGHT_MODEL_TWO_SIDE = 0x0B52;
+ public static final int GL_LINE = 0x1B01;
+ public static final int GL_LINEAR = 0x2601;
+ public static final int GL_LINEAR_ATTENUATION = 0x1208;
+ public static final int GL_LINEAR_CLIPMAP_LINEAR_SGIX = 0x8170;
+ public static final int GL_LINEAR_CLIPMAP_NEAREST_SGIX = 0x844F;
+ public static final int GL_LINEAR_DETAIL_ALPHA_SGIS = 0x8098;
+ public static final int GL_LINEAR_DETAIL_COLOR_SGIS = 0x8099;
+ public static final int GL_LINEAR_DETAIL_SGIS = 0x8097;
+ public static final int GL_LINEAR_MIPMAP_LINEAR = 0x2703;
+ public static final int GL_LINEAR_MIPMAP_NEAREST = 0x2701;
+ public static final int GL_LINEAR_SHARPEN_ALPHA_SGIS = 0x80AE;
+ public static final int GL_LINEAR_SHARPEN_COLOR_SGIS = 0x80AF;
+ public static final int GL_LINEAR_SHARPEN_SGIS = 0x80AD;
+ public static final int GL_LINES = 0x0001;
+ public static final int GL_LINE_BIT = 0x00000004;
+ public static final int GL_LINE_LOOP = 0x0002;
+ public static final int GL_LINE_RESET_TOKEN = 0x0707;
+ public static final int GL_LINE_SMOOTH = 0x0B20;
+ public static final int GL_LINE_SMOOTH_HINT = 0x0C52;
+ public static final int GL_LINE_STIPPLE = 0x0B24;
+ public static final int GL_LINE_STIPPLE_PATTERN = 0x0B25;
+ public static final int GL_LINE_STIPPLE_REPEAT = 0x0B26;
+ public static final int GL_LINE_STRIP = 0x0003;
+ public static final int GL_LINE_TOKEN = 0x0702;
+ public static final int GL_LINE_WIDTH = 0x0B21;
+ public static final int GL_LINE_WIDTH_GRANULARITY = 0x0B23;
+ public static final int GL_LINE_WIDTH_RANGE = 0x0B22;
+ public static final int GL_LIST_BASE = 0x0B32;
+ public static final int GL_LIST_BIT = 0x00020000;
+ public static final int GL_LIST_INDEX = 0x0B33;
+ public static final int GL_LIST_MODE = 0x0B30;
+ public static final int GL_LIST_PRIORITY_SGIX = 0x8182;
+ public static final int GL_LOAD = 0x0101;
+ public static final int GL_LOCAL_CONSTANT_DATATYPE_EXT = 0x87ED;
+ public static final int GL_LOCAL_CONSTANT_EXT = 0x87C3;
+ public static final int GL_LOCAL_CONSTANT_VALUE_EXT = 0x87EC;
+ public static final int GL_LOCAL_EXT = 0x87C4;
+ public static final int GL_LOGIC_OP = 0x0BF1;
+ public static final int GL_LOGIC_OP_MODE = 0x0BF0;
+ public static final int GL_LO_BIAS_NV = 0x8715;
+ public static final int GL_LO_SCALE_NV = 0x870F;
+ public static final int GL_LUMINANCE = 0x1909;
+ public static final int GL_LUMINANCE12 = 0x8041;
+ public static final int GL_LUMINANCE12_ALPHA12 = 0x8047;
+ public static final int GL_LUMINANCE12_ALPHA12_EXT = 0x8047;
+ public static final int GL_LUMINANCE12_ALPHA4 = 0x8046;
+ public static final int GL_LUMINANCE12_ALPHA4_EXT = 0x8046;
+ public static final int GL_LUMINANCE12_EXT = 0x8041;
+ public static final int GL_LUMINANCE16 = 0x8042;
+ public static final int GL_LUMINANCE16_ALPHA16 = 0x8048;
+ public static final int GL_LUMINANCE16_ALPHA16_EXT = 0x8048;
+ public static final int GL_LUMINANCE16_EXT = 0x8042;
+ public static final int GL_LUMINANCE4 = 0x803F;
+ public static final int GL_LUMINANCE4_ALPHA4 = 0x8043;
+ public static final int GL_LUMINANCE4_ALPHA4_EXT = 0x8043;
+ public static final int GL_LUMINANCE4_EXT = 0x803F;
+ public static final int GL_LUMINANCE6_ALPHA2 = 0x8044;
+ public static final int GL_LUMINANCE6_ALPHA2_EXT = 0x8044;
+ public static final int GL_LUMINANCE8 = 0x8040;
+ public static final int GL_LUMINANCE8_ALPHA8 = 0x8045;
+ public static final int GL_LUMINANCE8_ALPHA8_EXT = 0x8045;
+ public static final int GL_LUMINANCE8_EXT = 0x8040;
+ public static final int GL_LUMINANCE_ALPHA = 0x190A;
+ public static final int GL_MAD_ATI = 0x8968;
+ public static final int GL_MAGNITUDE_BIAS_NV = 0x8718;
+ public static final int GL_MAGNITUDE_SCALE_NV = 0x8712;
+ public static final int GL_MAP1_BINORMAL_EXT = 0x8446;
+ public static final int GL_MAP1_COLOR_4 = 0x0D90;
+ public static final int GL_MAP1_GRID_DOMAIN = 0x0DD0;
+ public static final int GL_MAP1_GRID_SEGMENTS = 0x0DD1;
+ public static final int GL_MAP1_INDEX = 0x0D91;
+ public static final int GL_MAP1_NORMAL = 0x0D92;
+ public static final int GL_MAP1_TANGENT_EXT = 0x8444;
+ public static final int GL_MAP1_TEXTURE_COORD_1 = 0x0D93;
+ public static final int GL_MAP1_TEXTURE_COORD_2 = 0x0D94;
+ public static final int GL_MAP1_TEXTURE_COORD_3 = 0x0D95;
+ public static final int GL_MAP1_TEXTURE_COORD_4 = 0x0D96;
+ public static final int GL_MAP1_VERTEX_3 = 0x0D97;
+ public static final int GL_MAP1_VERTEX_4 = 0x0D98;
+ public static final int GL_MAP1_VERTEX_ATTRIB0_4_NV = 0x8660;
+ public static final int GL_MAP1_VERTEX_ATTRIB10_4_NV = 0x866A;
+ public static final int GL_MAP1_VERTEX_ATTRIB11_4_NV = 0x866B;
+ public static final int GL_MAP1_VERTEX_ATTRIB12_4_NV = 0x866C;
+ public static final int GL_MAP1_VERTEX_ATTRIB13_4_NV = 0x866D;
+ public static final int GL_MAP1_VERTEX_ATTRIB14_4_NV = 0x866E;
+ public static final int GL_MAP1_VERTEX_ATTRIB15_4_NV = 0x866F;
+ public static final int GL_MAP1_VERTEX_ATTRIB1_4_NV = 0x8661;
+ public static final int GL_MAP1_VERTEX_ATTRIB2_4_NV = 0x8662;
+ public static final int GL_MAP1_VERTEX_ATTRIB3_4_NV = 0x8663;
+ public static final int GL_MAP1_VERTEX_ATTRIB4_4_NV = 0x8664;
+ public static final int GL_MAP1_VERTEX_ATTRIB5_4_NV = 0x8665;
+ public static final int GL_MAP1_VERTEX_ATTRIB6_4_NV = 0x8666;
+ public static final int GL_MAP1_VERTEX_ATTRIB7_4_NV = 0x8667;
+ public static final int GL_MAP1_VERTEX_ATTRIB8_4_NV = 0x8668;
+ public static final int GL_MAP1_VERTEX_ATTRIB9_4_NV = 0x8669;
+ public static final int GL_MAP2_BINORMAL_EXT = 0x8447;
+ public static final int GL_MAP2_COLOR_4 = 0x0DB0;
+ public static final int GL_MAP2_GRID_DOMAIN = 0x0DD2;
+ public static final int GL_MAP2_GRID_SEGMENTS = 0x0DD3;
+ public static final int GL_MAP2_INDEX = 0x0DB1;
+ public static final int GL_MAP2_NORMAL = 0x0DB2;
+ public static final int GL_MAP2_TANGENT_EXT = 0x8445;
+ public static final int GL_MAP2_TEXTURE_COORD_1 = 0x0DB3;
+ public static final int GL_MAP2_TEXTURE_COORD_2 = 0x0DB4;
+ public static final int GL_MAP2_TEXTURE_COORD_3 = 0x0DB5;
+ public static final int GL_MAP2_TEXTURE_COORD_4 = 0x0DB6;
+ public static final int GL_MAP2_VERTEX_3 = 0x0DB7;
+ public static final int GL_MAP2_VERTEX_4 = 0x0DB8;
+ public static final int GL_MAP2_VERTEX_ATTRIB0_4_NV = 0x8670;
+ public static final int GL_MAP2_VERTEX_ATTRIB10_4_NV = 0x867A;
+ public static final int GL_MAP2_VERTEX_ATTRIB11_4_NV = 0x867B;
+ public static final int GL_MAP2_VERTEX_ATTRIB12_4_NV = 0x867C;
+ public static final int GL_MAP2_VERTEX_ATTRIB13_4_NV = 0x867D;
+ public static final int GL_MAP2_VERTEX_ATTRIB14_4_NV = 0x867E;
+ public static final int GL_MAP2_VERTEX_ATTRIB15_4_NV = 0x867F;
+ public static final int GL_MAP2_VERTEX_ATTRIB1_4_NV = 0x8671;
+ public static final int GL_MAP2_VERTEX_ATTRIB2_4_NV = 0x8672;
+ public static final int GL_MAP2_VERTEX_ATTRIB3_4_NV = 0x8673;
+ public static final int GL_MAP2_VERTEX_ATTRIB4_4_NV = 0x8674;
+ public static final int GL_MAP2_VERTEX_ATTRIB5_4_NV = 0x8675;
+ public static final int GL_MAP2_VERTEX_ATTRIB6_4_NV = 0x8676;
+ public static final int GL_MAP2_VERTEX_ATTRIB7_4_NV = 0x8677;
+ public static final int GL_MAP2_VERTEX_ATTRIB8_4_NV = 0x8678;
+ public static final int GL_MAP2_VERTEX_ATTRIB9_4_NV = 0x8679;
+ public static final int GL_MAP_ATTRIB_U_ORDER_NV = 0x86C3;
+ public static final int GL_MAP_ATTRIB_V_ORDER_NV = 0x86C4;
+ public static final int GL_MAP_COLOR = 0x0D10;
+ public static final int GL_MAP_STENCIL = 0x0D11;
+ public static final int GL_MAP_TESSELLATION_NV = 0x86C2;
+ public static final int GL_MATERIAL_SIDE_HINT_PGI = 0x1A22C;
+ public static final int GL_MATRIX0_NV = 0x8630;
+ public static final int GL_MATRIX1_NV = 0x8631;
+ public static final int GL_MATRIX2_NV = 0x8632;
+ public static final int GL_MATRIX3_NV = 0x8633;
+ public static final int GL_MATRIX4_NV = 0x8634;
+ public static final int GL_MATRIX5_NV = 0x8635;
+ public static final int GL_MATRIX6_NV = 0x8636;
+ public static final int GL_MATRIX7_NV = 0x8637;
+ public static final int GL_MATRIX_EXT = 0x87C0;
+ public static final int GL_MATRIX_INDEX_ARRAY_ARB = 0x8844;
+ public static final int GL_MATRIX_INDEX_ARRAY_POINTER_ARB = 0x8849;
+ public static final int GL_MATRIX_INDEX_ARRAY_SIZE_ARB = 0x8846;
+ public static final int GL_MATRIX_INDEX_ARRAY_STRIDE_ARB = 0x8848;
+ public static final int GL_MATRIX_INDEX_ARRAY_TYPE_ARB = 0x8847;
+ public static final int GL_MATRIX_MODE = 0x0BA0;
+ public static final int GL_MATRIX_PALETTE_ARB = 0x8840;
+ public static final int GL_MAT_AMBIENT_AND_DIFFUSE_BIT_PGI = 0x00200000;
+ public static final int GL_MAT_AMBIENT_BIT_PGI = 0x00100000;
+ public static final int GL_MAT_COLOR_INDEXES_BIT_PGI = 0x01000000;
+ public static final int GL_MAT_DIFFUSE_BIT_PGI = 0x00400000;
+ public static final int GL_MAT_EMISSION_BIT_PGI = 0x00800000;
+ public static final int GL_MAT_SHININESS_BIT_PGI = 0x02000000;
+ public static final int GL_MAT_SPECULAR_BIT_PGI = 0x04000000;
+ public static final int GL_MAX = 0x8008;
+ public static final int GL_MAX_3D_TEXTURE_SIZE = 0x8073;
+ public static final int GL_MAX_3D_TEXTURE_SIZE_EXT = 0x8073;
+ public static final int GL_MAX_4D_TEXTURE_SIZE_SGIS = 0x8138;
+ public static final int GL_MAX_ACTIVE_LIGHTS_SGIX = 0x8405;
+ public static final int GL_MAX_ASYNC_DRAW_PIXELS_SGIX = 0x8360;
+ public static final int GL_MAX_ASYNC_HISTOGRAM_SGIX = 0x832D;
+ public static final int GL_MAX_ASYNC_READ_PIXELS_SGIX = 0x8361;
+ public static final int GL_MAX_ASYNC_TEX_IMAGE_SGIX = 0x835F;
+ public static final int GL_MAX_ATTRIB_STACK_DEPTH = 0x0D35;
+ public static final int GL_MAX_CLIENT_ATTRIB_STACK_DEPTH = 0x0D3B;
+ public static final int GL_MAX_CLIPMAP_DEPTH_SGIX = 0x8177;
+ public static final int GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX = 0x8178;
+ public static final int GL_MAX_CLIP_PLANES = 0x0D32;
+ public static final int GL_MAX_COLOR_MATRIX_STACK_DEPTH = 0x80B3;
+ public static final int GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI = 0x80B3;
+ public static final int GL_MAX_CONVOLUTION_HEIGHT = 0x801B;
+ public static final int GL_MAX_CONVOLUTION_HEIGHT_EXT = 0x801B;
+ public static final int GL_MAX_CONVOLUTION_WIDTH = 0x801A;
+ public static final int GL_MAX_CONVOLUTION_WIDTH_EXT = 0x801A;
+ public static final int GL_MAX_CUBE_MAP_TEXTURE_SIZE = 0x851C;
+ public static final int GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB = 0x851C;
+ public static final int GL_MAX_CUBE_MAP_TEXTURE_SIZE_EXT = 0x851C;
+ public static final int GL_MAX_DEFORMATION_ORDER_SGIX = 0x8197;
+ public static final int GL_MAX_ELEMENTS_INDICES = 0x80E9;
+ public static final int GL_MAX_ELEMENTS_INDICES_EXT = 0x80E9;
+ public static final int GL_MAX_ELEMENTS_VERTICES = 0x80E8;
+ public static final int GL_MAX_ELEMENTS_VERTICES_EXT = 0x80E8;
+ public static final int GL_MAX_EVAL_ORDER = 0x0D30;
+ public static final int GL_MAX_EXT = 0x8008;
+ public static final int GL_MAX_FOG_FUNC_POINTS_SGIS = 0x812C;
+ public static final int GL_MAX_FRAGMENT_LIGHTS_SGIX = 0x8404;
+ public static final int GL_MAX_FRAMEZOOM_FACTOR_SGIX = 0x818D;
+ public static final int GL_MAX_GENERAL_COMBINERS_NV = 0x854D;
+ public static final int GL_MAX_LIGHTS = 0x0D31;
+ public static final int GL_MAX_LIST_NESTING = 0x0B31;
+ public static final int GL_MAX_MAP_TESSELLATION_NV = 0x86D6;
+ public static final int GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB = 0x8841;
+ public static final int GL_MAX_MODELVIEW_STACK_DEPTH = 0x0D36;
+ public static final int GL_MAX_NAME_STACK_DEPTH = 0x0D37;
+ public static final int GL_MAX_OPTIMIZED_VERTEX_SHADER_INARIANTS_EXT = 0x87CD;
+ public static final int GL_MAX_OPTIMIZED_VERTEX_SHADER_INSTRUCTIONS_EXT = 0x87CA;
+ public static final int GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCALS_EXT = 0x87CE;
+ public static final int GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCAL_CONSTANTS_EXT = 0x87CC;
+ public static final int GL_MAX_OPTIMIZED_VERTEX_SHADER_VARIANTS_EXT = 0x87CB;
+ public static final int GL_MAX_PALETTE_MATRICES_ARB = 0x8842;
+ public static final int GL_MAX_PIXEL_MAP_TABLE = 0x0D34;
+ public static final int GL_MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT = 0x8337;
+ public static final int GL_MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI = 0x87F1;
+ public static final int GL_MAX_PROJECTION_STACK_DEPTH = 0x0D38;
+ public static final int GL_MAX_RATIONAL_EVAL_ORDER_NV = 0x86D7;
+ public static final int GL_MAX_SHININESS_NV = 0x8504;
+ public static final int GL_MAX_SPOT_EXPONENT_NV = 0x8505;
+ public static final int GL_MAX_TEXTURE_LOD_BIAS_EXT = 0x84FD;
+ public static final int GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF;
+ public static final int GL_MAX_TEXTURE_RECTANGLE_SIZE_NV = 0x84F8;
+ public static final int GL_MAX_TEXTURE_SIZE = 0x0D33;
+ public static final int GL_MAX_TEXTURE_STACK_DEPTH = 0x0D39;
+ public static final int GL_MAX_TEXTURE_UNITS = 0x84E2;
+ public static final int GL_MAX_TEXTURE_UNITS_ARB = 0x84E2;
+ public static final int GL_MAX_TRACK_MATRICES_NV = 0x862F;
+ public static final int GL_MAX_TRACK_MATRIX_STACK_DEPTH_NV = 0x862E;
+ public static final int GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV = 0x8520;
+ public static final int GL_MAX_VERTEX_HINT_PGI = 0x1A22D;
+ public static final int GL_MAX_VERTEX_SHADER_INSTRUCTIONS_EXT = 0x87C5;
+ public static final int GL_MAX_VERTEX_SHADER_INVARIANTS_EXT = 0x87C7;
+ public static final int GL_MAX_VERTEX_SHADER_LOCALS_EXT = 0x87C9;
+ public static final int GL_MAX_VERTEX_SHADER_LOCAL_CONSTANTS_EXT = 0x87C8;
+ public static final int GL_MAX_VERTEX_SHADER_VARIANTS_EXT = 0x87C6;
+ public static final int GL_MAX_VERTEX_STREAMS_ATI = 0x876B;
+ public static final int GL_MAX_VERTEX_UNITS_ARB = 0x86A4;
+ public static final int GL_MAX_VIEWPORT_DIMS = 0x0D3A;
+ public static final int GL_MESA_packed_depth_stencil = 1;
+ public static final int GL_MESA_resize_buffers = 1;
+ public static final int GL_MESA_sprite_point = 1;
+ public static final int GL_MESA_trace = 1;
+ public static final int GL_MESA_window_pos = 1;
+ public static final int GL_MIN = 0x8007;
+ public static final int GL_MINMAX = 0x802E;
+ public static final int GL_MINMAX_EXT = 0x802E;
+ public static final int GL_MINMAX_FORMAT = 0x802F;
+ public static final int GL_MINMAX_FORMAT_EXT = 0x802F;
+ public static final int GL_MINMAX_SINK = 0x8030;
+ public static final int GL_MINMAX_SINK_EXT = 0x8030;
+ public static final int GL_MIN_EXT = 0x8007;
+ public static final int GL_MIRRORED_REPEAT_IBM = 0x8370;
+ public static final int GL_MODELVIEW = 0x1700;
+ public static final int GL_MODELVIEW0_ARB = 0x1700;
+ public static final int GL_MODELVIEW0_EXT = 0x1700;
+ public static final int GL_MODELVIEW0_MATRIX_EXT = 0x0BA6;
+ public static final int GL_MODELVIEW0_STACK_DEPTH_EXT = 0x0BA3;
+ public static final int GL_MODELVIEW10_ARB = 0x872A;
+ public static final int GL_MODELVIEW11_ARB = 0x872B;
+ public static final int GL_MODELVIEW12_ARB = 0x872C;
+ public static final int GL_MODELVIEW13_ARB = 0x872D;
+ public static final int GL_MODELVIEW14_ARB = 0x872E;
+ public static final int GL_MODELVIEW15_ARB = 0x872F;
+ public static final int GL_MODELVIEW16_ARB = 0x8730;
+ public static final int GL_MODELVIEW17_ARB = 0x8731;
+ public static final int GL_MODELVIEW18_ARB = 0x8732;
+ public static final int GL_MODELVIEW19_ARB = 0x8733;
+ public static final int GL_MODELVIEW1_ARB = 0x850A;
+ public static final int GL_MODELVIEW1_EXT = 0x850A;
+ public static final int GL_MODELVIEW1_MATRIX_EXT = 0x8506;
+ public static final int GL_MODELVIEW1_STACK_DEPTH_EXT = 0x8502;
+ public static final int GL_MODELVIEW20_ARB = 0x8734;
+ public static final int GL_MODELVIEW21_ARB = 0x8735;
+ public static final int GL_MODELVIEW22_ARB = 0x8736;
+ public static final int GL_MODELVIEW23_ARB = 0x8737;
+ public static final int GL_MODELVIEW24_ARB = 0x8738;
+ public static final int GL_MODELVIEW25_ARB = 0x8739;
+ public static final int GL_MODELVIEW26_ARB = 0x873A;
+ public static final int GL_MODELVIEW27_ARB = 0x873B;
+ public static final int GL_MODELVIEW28_ARB = 0x873C;
+ public static final int GL_MODELVIEW29_ARB = 0x873D;
+ public static final int GL_MODELVIEW2_ARB = 0x8722;
+ public static final int GL_MODELVIEW30_ARB = 0x873E;
+ public static final int GL_MODELVIEW31_ARB = 0x873F;
+ public static final int GL_MODELVIEW3_ARB = 0x8723;
+ public static final int GL_MODELVIEW4_ARB = 0x8724;
+ public static final int GL_MODELVIEW5_ARB = 0x8725;
+ public static final int GL_MODELVIEW6_ARB = 0x8726;
+ public static final int GL_MODELVIEW7_ARB = 0x8727;
+ public static final int GL_MODELVIEW8_ARB = 0x8728;
+ public static final int GL_MODELVIEW9_ARB = 0x8729;
+ public static final int GL_MODELVIEW_MATRIX = 0x0BA6;
+ public static final int GL_MODELVIEW_PROJECTION_NV = 0x8629;
+ public static final int GL_MODELVIEW_STACK_DEPTH = 0x0BA3;
+ public static final int GL_MODULATE = 0x2100;
+ public static final int GL_MOV_ATI = 0x8961;
+ public static final int GL_MULT = 0x0103;
+ public static final int GL_MULTISAMPLE = 0x809D;
+ public static final int GL_MULTISAMPLE_3DFX = 0x86B2;
+ public static final int GL_MULTISAMPLE_ARB = 0x809D;
+ public static final int GL_MULTISAMPLE_BIT = 0x20000000;
+ public static final int GL_MULTISAMPLE_BIT_3DFX = 0x20000000;
+ public static final int GL_MULTISAMPLE_BIT_ARB = 0x20000000;
+ public static final int GL_MULTISAMPLE_BIT_EXT = 0x20000000;
+ public static final int GL_MULTISAMPLE_EXT = 0x809D;
+ public static final int GL_MULTISAMPLE_SGIS = 0x809D;
+ public static final int GL_MUL_ATI = 0x8964;
+ public static final int GL_MVP_MATRIX_EXT = 0x87E3;
+ public static final int GL_N3F_V3F = 0x2A25;
+ public static final int GL_NAME_STACK_DEPTH = 0x0D70;
+ public static final int GL_NAND = 0x150E;
+ public static final int GL_NATIVE_GRAPHICS_BEGIN_HINT_PGI = 0x1A203;
+ public static final int GL_NATIVE_GRAPHICS_END_HINT_PGI = 0x1A204;
+ public static final int GL_NATIVE_GRAPHICS_HANDLE_PGI = 0x1A202;
+ public static final int GL_NEAREST = 0x2600;
+ public static final int GL_NEAREST_CLIPMAP_LINEAR_SGIX = 0x844E;
+ public static final int GL_NEAREST_CLIPMAP_NEAREST_SGIX = 0x844D;
+ public static final int GL_NEAREST_MIPMAP_LINEAR = 0x2702;
+ public static final int GL_NEAREST_MIPMAP_NEAREST = 0x2700;
+ public static final int GL_NEGATE_BIT_ATI = 0x00000004;
+ public static final int GL_NEGEXTVE_ONE_EXT = 0x87DF;
+ public static final int GL_NEGEXTVE_W_EXT = 0x87DC;
+ public static final int GL_NEGEXTVE_X_EXT = 0x87D9;
+ public static final int GL_NEGEXTVE_Y_EXT = 0x87DA;
+ public static final int GL_NEGEXTVE_Z_EXT = 0x87DB;
+ public static final int GL_NEVER = 0x0200;
+ public static final int GL_NICEST = 0x1102;
+ public static final int GL_NONE = 0x0;
+ public static final int GL_NOOP = 0x1505;
+ public static final int GL_NOR = 0x1508;
+ public static final int GL_NORMALIZE = 0x0BA1;
+ public static final int GL_NORMALIZED_RANGE_EXT = 0x87E0;
+ public static final int GL_NORMAL_ARRAY = 0x8075;
+ public static final int GL_NORMAL_ARRAY_COUNT_EXT = 0x8080;
+ public static final int GL_NORMAL_ARRAY_EXT = 0x8075;
+ public static final int GL_NORMAL_ARRAY_LIST_IBM = 103071;
+ public static final int GL_NORMAL_ARRAY_LIST_STRIDE_IBM = 103081;
+ public static final int GL_NORMAL_ARRAY_PARALLEL_POINTERS_INTEL = 0x83F6;
+ public static final int GL_NORMAL_ARRAY_POINTER = 0x808F;
+ public static final int GL_NORMAL_ARRAY_POINTER_EXT = 0x808F;
+ public static final int GL_NORMAL_ARRAY_STRIDE = 0x807F;
+ public static final int GL_NORMAL_ARRAY_STRIDE_EXT = 0x807F;
+ public static final int GL_NORMAL_ARRAY_TYPE = 0x807E;
+ public static final int GL_NORMAL_ARRAY_TYPE_EXT = 0x807E;
+ public static final int GL_NORMAL_BIT_PGI = 0x08000000;
+ public static final int GL_NORMAL_MAP = 0x8511;
+ public static final int GL_NORMAL_MAP_ARB = 0x8511;
+ public static final int GL_NORMAL_MAP_EXT = 0x8511;
+ public static final int GL_NORMAL_MAP_NV = 0x8511;
+ public static final int GL_NOTEQUAL = 0x0205;
+ public static final int GL_NO_ERROR = 0x0;
+ public static final int GL_NUM_COMPRESSED_TEXTURE_FORMATS = 0x86A2;
+ public static final int GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB = 0x86A2;
+ public static final int GL_NUM_FRAGMENT_CONSTANTS_ATI = 0x896F;
+ public static final int GL_NUM_FRAGMENT_REGISTERS_ATI = 0x896E;
+ public static final int GL_NUM_GENERAL_COMBINERS_NV = 0x854E;
+ public static final int GL_NUM_INPUT_INTERPOLATOR_COMPONENTS_ATI = 0x8973;
+ public static final int GL_NUM_INSTRUCTIONS_PER_PASS_ATI = 0x8971;
+ public static final int GL_NUM_INSTRUCTIONS_TOTAL_ATI = 0x8972;
+ public static final int GL_NUM_LOOPBACK_COMPONENTS_ATI = 0x8974;
+ public static final int GL_NUM_PASSES_ATI = 0x8970;
+ public static final int GL_NV_blend_square = 1;
+ public static final int GL_NV_copy_depth_to_color = 1;
+ public static final int GL_NV_evaluators = 1;
+ public static final int GL_NV_fence = 1;
+ public static final int GL_NV_fog_distance = 1;
+ public static final int GL_NV_light_max_exponent = 1;
+ public static final int GL_NV_packed_depth_stencil = 1;
+ public static final int GL_NV_register_combiners = 1;
+ public static final int GL_NV_register_combiners2 = 1;
+ public static final int GL_NV_texgen_emboss = 1;
+ public static final int GL_NV_texgen_reflection = 1;
+ public static final int GL_NV_texture_compression_vtc = 1;
+ public static final int GL_NV_texture_env_combine4 = 1;
+ public static final int GL_NV_texture_rectangle = 1;
+ public static final int GL_NV_texture_shader = 1;
+ public static final int GL_NV_texture_shader2 = 1;
+ public static final int GL_NV_vertex_array_range = 1;
+ public static final int GL_NV_vertex_array_range2 = 1;
+ public static final int GL_NV_vertex_program = 1;
+ public static final int GL_OBJECT_BUFFER_SIZE_ATI = 0x8764;
+ public static final int GL_OBJECT_BUFFER_USAGE_ATI = 0x8765;
+ public static final int GL_OBJECT_DISTANCE_TO_LINE_SGIS = 0x81F3;
+ public static final int GL_OBJECT_DISTANCE_TO_POINT_SGIS = 0x81F1;
+ public static final int GL_OBJECT_LINEAR = 0x2401;
+ public static final int GL_OBJECT_LINE_SGIS = 0x81F7;
+ public static final int GL_OBJECT_PLANE = 0x2501;
+ public static final int GL_OBJECT_POINT_SGIS = 0x81F5;
+ public static final int GL_OCCLUSION_TEST_HP = 0x8165;
+ public static final int GL_OCCLUSION_TEST_RESULT_HP = 0x8166;
+ public static final int GL_OFFSET_TEXTURE_2D_BIAS_NV = 0x86E3;
+ public static final int GL_OFFSET_TEXTURE_2D_MATRIX_NV = 0x86E1;
+ public static final int GL_OFFSET_TEXTURE_2D_NV = 0x86E8;
+ public static final int GL_OFFSET_TEXTURE_2D_SCALE_NV = 0x86E2;
+ public static final int GL_OFFSET_TEXTURE_BIAS_NV = 0x86E3;
+ public static final int GL_OFFSET_TEXTURE_MATRIX_NV = 0x86E1;
+ public static final int GL_OFFSET_TEXTURE_RECTANGLE_NV = 0x864C;
+ public static final int GL_OFFSET_TEXTURE_RECTANGLE_SCALE_NV = 0x864D;
+ public static final int GL_OFFSET_TEXTURE_SCALE_NV = 0x86E2;
+ public static final int GL_OML_interlace = 1;
+ public static final int GL_OML_resample = 1;
+ public static final int GL_OML_subsample = 1;
+ public static final int GL_ONE = 0x1;
+ public static final int GL_ONE_MINUS_CONSTANT_ALPHA = 0x8004;
+ public static final int GL_ONE_MINUS_CONSTANT_ALPHA_EXT = 0x8004;
+ public static final int GL_ONE_MINUS_CONSTANT_COLOR = 0x8002;
+ public static final int GL_ONE_MINUS_CONSTANT_COLOR_EXT = 0x8002;
+ public static final int GL_ONE_MINUS_DST_ALPHA = 0x0305;
+ public static final int GL_ONE_MINUS_DST_COLOR = 0x0307;
+ public static final int GL_ONE_MINUS_SRC_ALPHA = 0x0303;
+ public static final int GL_ONE_MINUS_SRC_COLOR = 0x0301;
+ public static final int GL_OPERAND0_ALPHA = 0x8598;
+ public static final int GL_OPERAND0_ALPHA_ARB = 0x8598;
+ public static final int GL_OPERAND0_ALPHA_EXT = 0x8598;
+ public static final int GL_OPERAND0_RGB = 0x8590;
+ public static final int GL_OPERAND0_RGB_ARB = 0x8590;
+ public static final int GL_OPERAND0_RGB_EXT = 0x8590;
+ public static final int GL_OPERAND1_ALPHA = 0x8599;
+ public static final int GL_OPERAND1_ALPHA_ARB = 0x8599;
+ public static final int GL_OPERAND1_ALPHA_EXT = 0x8599;
+ public static final int GL_OPERAND1_RGB = 0x8591;
+ public static final int GL_OPERAND1_RGB_ARB = 0x8591;
+ public static final int GL_OPERAND1_RGB_EXT = 0x8591;
+ public static final int GL_OPERAND2_ALPHA = 0x859A;
+ public static final int GL_OPERAND2_ALPHA_ARB = 0x859A;
+ public static final int GL_OPERAND2_ALPHA_EXT = 0x859A;
+ public static final int GL_OPERAND2_RGB = 0x8592;
+ public static final int GL_OPERAND2_RGB_ARB = 0x8592;
+ public static final int GL_OPERAND2_RGB_EXT = 0x8592;
+ public static final int GL_OPERAND3_ALPHA_NV = 0x859B;
+ public static final int GL_OPERAND3_RGB_NV = 0x8593;
+ public static final int GL_OP_ADD_EXT = 0x8787;
+ public static final int GL_OP_CLAMP_EXT = 0x878E;
+ public static final int GL_OP_CROSS_PRODUCT_EXT = 0x8797;
+ public static final int GL_OP_DOT3_EXT = 0x8784;
+ public static final int GL_OP_DOT4_EXT = 0x8785;
+ public static final int GL_OP_EXP_BASE_2_EXT = 0x8791;
+ public static final int GL_OP_FLOOR_EXT = 0x878F;
+ public static final int GL_OP_FRAC_EXT = 0x8789;
+ public static final int GL_OP_INDEX_EXT = 0x8782;
+ public static final int GL_OP_LOG_BASE_2_EXT = 0x8792;
+ public static final int GL_OP_MADD_EXT = 0x8788;
+ public static final int GL_OP_MAX_EXT = 0x878A;
+ public static final int GL_OP_MIN_EXT = 0x878B;
+ public static final int GL_OP_MOV_EXT = 0x8799;
+ public static final int GL_OP_MULTIPLY_MATRIX_EXT = 0x8798;
+ public static final int GL_OP_MUL_EXT = 0x8786;
+ public static final int GL_OP_NEGATE_EXT = 0x8783;
+ public static final int GL_OP_POWER_EXT = 0x8793;
+ public static final int GL_OP_RECIP_EXT = 0x8794;
+ public static final int GL_OP_RECIP_SQRT_EXT = 0x8795;
+ public static final int GL_OP_ROUND_EXT = 0x8790;
+ public static final int GL_OP_SET_GE_EXT = 0x878C;
+ public static final int GL_OP_SET_LT_EXT = 0x878D;
+ public static final int GL_OP_SUB_EXT = 0x8796;
+ public static final int GL_OR = 0x1507;
+ public static final int GL_ORDER = 0x0A01;
+ public static final int GL_OR_INVERTED = 0x150D;
+ public static final int GL_OR_REVERSE = 0x150B;
+ public static final int GL_OUTPUT_COLOR0_EXT = 0x879B;
+ public static final int GL_OUTPUT_COLOR1_EXT = 0x879C;
+ public static final int GL_OUTPUT_FOG_EXT = 0x87BD;
+ public static final int GL_OUTPUT_TEXTURE_COORD0_EXT = 0x879D;
+ public static final int GL_OUTPUT_TEXTURE_COORD10_EXT = 0x87A7;
+ public static final int GL_OUTPUT_TEXTURE_COORD11_EXT = 0x87A8;
+ public static final int GL_OUTPUT_TEXTURE_COORD12_EXT = 0x87A9;
+ public static final int GL_OUTPUT_TEXTURE_COORD13_EXT = 0x87AA;
+ public static final int GL_OUTPUT_TEXTURE_COORD14_EXT = 0x87AB;
+ public static final int GL_OUTPUT_TEXTURE_COORD15_EXT = 0x87AC;
+ public static final int GL_OUTPUT_TEXTURE_COORD16_EXT = 0x87AD;
+ public static final int GL_OUTPUT_TEXTURE_COORD17_EXT = 0x87AE;
+ public static final int GL_OUTPUT_TEXTURE_COORD18_EXT = 0x87AF;
+ public static final int GL_OUTPUT_TEXTURE_COORD19_EXT = 0x87B0;
+ public static final int GL_OUTPUT_TEXTURE_COORD1_EXT = 0x879E;
+ public static final int GL_OUTPUT_TEXTURE_COORD20_EXT = 0x87B1;
+ public static final int GL_OUTPUT_TEXTURE_COORD21_EXT = 0x87B2;
+ public static final int GL_OUTPUT_TEXTURE_COORD22_EXT = 0x87B3;
+ public static final int GL_OUTPUT_TEXTURE_COORD23_EXT = 0x87B4;
+ public static final int GL_OUTPUT_TEXTURE_COORD24_EXT = 0x87B5;
+ public static final int GL_OUTPUT_TEXTURE_COORD25_EXT = 0x87B6;
+ public static final int GL_OUTPUT_TEXTURE_COORD26_EXT = 0x87B7;
+ public static final int GL_OUTPUT_TEXTURE_COORD27_EXT = 0x87B8;
+ public static final int GL_OUTPUT_TEXTURE_COORD28_EXT = 0x87B9;
+ public static final int GL_OUTPUT_TEXTURE_COORD29_EXT = 0x87BA;
+ public static final int GL_OUTPUT_TEXTURE_COORD2_EXT = 0x879F;
+ public static final int GL_OUTPUT_TEXTURE_COORD30_EXT = 0x87BB;
+ public static final int GL_OUTPUT_TEXTURE_COORD31_EXT = 0x87BC;
+ public static final int GL_OUTPUT_TEXTURE_COORD3_EXT = 0x87A0;
+ public static final int GL_OUTPUT_TEXTURE_COORD4_EXT = 0x87A1;
+ public static final int GL_OUTPUT_TEXTURE_COORD5_EXT = 0x87A2;
+ public static final int GL_OUTPUT_TEXTURE_COORD6_EXT = 0x87A3;
+ public static final int GL_OUTPUT_TEXTURE_COORD7_EXT = 0x87A4;
+ public static final int GL_OUTPUT_TEXTURE_COORD8_EXT = 0x87A5;
+ public static final int GL_OUTPUT_TEXTURE_COORD9_EXT = 0x87A6;
+ public static final int GL_OUTPUT_VERTEX_EXT = 0x879A;
+ public static final int GL_OUT_OF_MEMORY = 0x0505;
+ public static final int GL_PACK_ALIGNMENT = 0x0D05;
+ public static final int GL_PACK_CMYK_HINT_EXT = 0x800E;
+ public static final int GL_PACK_IMAGE_DEPTH_SGIS = 0x8131;
+ public static final int GL_PACK_IMAGE_HEIGHT = 0x806C;
+ public static final int GL_PACK_IMAGE_HEIGHT_EXT = 0x806C;
+ public static final int GL_PACK_LSB_FIRST = 0x0D01;
+ public static final int GL_PACK_RESAMPLE_OML = 0x8984;
+ public static final int GL_PACK_RESAMPLE_SGIX = 0x842C;
+ public static final int GL_PACK_ROW_LENGTH = 0x0D02;
+ public static final int GL_PACK_SKIP_IMAGES = 0x806B;
+ public static final int GL_PACK_SKIP_IMAGES_EXT = 0x806B;
+ public static final int GL_PACK_SKIP_PIXELS = 0x0D04;
+ public static final int GL_PACK_SKIP_ROWS = 0x0D03;
+ public static final int GL_PACK_SKIP_VOLUMES_SGIS = 0x8130;
+ public static final int GL_PACK_SUBSAMPLE_RATE_SGIX = 0x85A0;
+ public static final int GL_PACK_SWAP_BYTES = 0x0D00;
+ public static final int GL_PARALLEL_ARRAYS_INTEL = 0x83F4;
+ public static final int GL_PASS_THROUGH_NV = 0x86E6;
+ public static final int GL_PASS_THROUGH_TOKEN = 0x0700;
+ public static final int GL_PERSPECTIVE_CORRECTION_HINT = 0x0C50;
+ public static final int GL_PERTURB_EXT = 0x85AE;
+ public static final int GL_PER_STAGE_CONSTANTS_NV = 0x8535;
+ public static final int GL_PGI_misc_hints = 1;
+ public static final int GL_PGI_vertex_hints = 1;
+ public static final int GL_PHONG_HINT_WIN = 0x80EB;
+ public static final int GL_PHONG_WIN = 0x80EA;
+ public static final int GL_PIXEL_CUBIC_WEIGHT_EXT = 0x8333;
+ public static final int GL_PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS = 0x8355;
+ public static final int GL_PIXEL_FRAGMENT_RGB_SOURCE_SGIS = 0x8354;
+ public static final int GL_PIXEL_GROUP_COLOR_SGIS = 0x8356;
+ public static final int GL_PIXEL_MAG_FILTER_EXT = 0x8331;
+ public static final int GL_PIXEL_MAP_A_TO_A = 0x0C79;
+ public static final int GL_PIXEL_MAP_A_TO_A_SIZE = 0x0CB9;
+ public static final int GL_PIXEL_MAP_B_TO_B = 0x0C78;
+ public static final int GL_PIXEL_MAP_B_TO_B_SIZE = 0x0CB8;
+ public static final int GL_PIXEL_MAP_G_TO_G = 0x0C77;
+ public static final int GL_PIXEL_MAP_G_TO_G_SIZE = 0x0CB7;
+ public static final int GL_PIXEL_MAP_I_TO_A = 0x0C75;
+ public static final int GL_PIXEL_MAP_I_TO_A_SIZE = 0x0CB5;
+ public static final int GL_PIXEL_MAP_I_TO_B = 0x0C74;
+ public static final int GL_PIXEL_MAP_I_TO_B_SIZE = 0x0CB4;
+ public static final int GL_PIXEL_MAP_I_TO_G = 0x0C73;
+ public static final int GL_PIXEL_MAP_I_TO_G_SIZE = 0x0CB3;
+ public static final int GL_PIXEL_MAP_I_TO_I = 0x0C70;
+ public static final int GL_PIXEL_MAP_I_TO_I_SIZE = 0x0CB0;
+ public static final int GL_PIXEL_MAP_I_TO_R = 0x0C72;
+ public static final int GL_PIXEL_MAP_I_TO_R_SIZE = 0x0CB2;
+ public static final int GL_PIXEL_MAP_R_TO_R = 0x0C76;
+ public static final int GL_PIXEL_MAP_R_TO_R_SIZE = 0x0CB6;
+ public static final int GL_PIXEL_MAP_S_TO_S = 0x0C71;
+ public static final int GL_PIXEL_MAP_S_TO_S_SIZE = 0x0CB1;
+ public static final int GL_PIXEL_MIN_FILTER_EXT = 0x8332;
+ public static final int GL_PIXEL_MODE_BIT = 0x00000020;
+ public static final int GL_PIXEL_SUBSAMPLE_2424_SGIX = 0x85A3;
+ public static final int GL_PIXEL_SUBSAMPLE_4242_SGIX = 0x85A4;
+ public static final int GL_PIXEL_SUBSAMPLE_4444_SGIX = 0x85A2;
+ public static final int GL_PIXEL_TEXTURE_SGIS = 0x8353;
+ public static final int GL_PIXEL_TEX_GEN_ALPHA_LS_SGIX = 0x8189;
+ public static final int GL_PIXEL_TEX_GEN_ALPHA_MS_SGIX = 0x818A;
+ public static final int GL_PIXEL_TEX_GEN_ALPHA_NO_REPLACE_SGIX = 0x8188;
+ public static final int GL_PIXEL_TEX_GEN_ALPHA_REPLACE_SGIX = 0x8187;
+ public static final int GL_PIXEL_TEX_GEN_MODE_SGIX = 0x832B;
+ public static final int GL_PIXEL_TEX_GEN_Q_CEILING_SGIX = 0x8184;
+ public static final int GL_PIXEL_TEX_GEN_Q_FLOOR_SGIX = 0x8186;
+ public static final int GL_PIXEL_TEX_GEN_Q_ROUND_SGIX = 0x8185;
+ public static final int GL_PIXEL_TEX_GEN_SGIX = 0x8139;
+ public static final int GL_PIXEL_TILE_BEST_ALIGNMENT_SGIX = 0x813E;
+ public static final int GL_PIXEL_TILE_CACHE_INCREMENT_SGIX = 0x813F;
+ public static final int GL_PIXEL_TILE_CACHE_SIZE_SGIX = 0x8145;
+ public static final int GL_PIXEL_TILE_GRID_DEPTH_SGIX = 0x8144;
+ public static final int GL_PIXEL_TILE_GRID_HEIGHT_SGIX = 0x8143;
+ public static final int GL_PIXEL_TILE_GRID_WIDTH_SGIX = 0x8142;
+ public static final int GL_PIXEL_TILE_HEIGHT_SGIX = 0x8141;
+ public static final int GL_PIXEL_TILE_WIDTH_SGIX = 0x8140;
+ public static final int GL_PIXEL_TRANSFORM_2D_EXT = 0x8330;
+ public static final int GL_PIXEL_TRANSFORM_2D_MATRIX_EXT = 0x8338;
+ public static final int GL_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT = 0x8336;
+ public static final int GL_PN_TRIANGLES_ATI = 0x87F0;
+ public static final int GL_PN_TRIANGLES_NORMAL_MODE_ATI = 0x87F3;
+ public static final int GL_PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI = 0x87F7;
+ public static final int GL_PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI = 0x87F8;
+ public static final int GL_PN_TRIANGLES_POINT_MODE_ATI = 0x87F2;
+ public static final int GL_PN_TRIANGLES_POINT_MODE_CUBIC_ATI = 0x87F6;
+ public static final int GL_PN_TRIANGLES_POINT_MODE_LINEAR_ATI = 0x87F5;
+ public static final int GL_PN_TRIANGLES_TESSELATION_LEVEL_ATI = 0x87F4;
+ public static final int GL_POINT = 0x1B00;
+ public static final int GL_POINTS = 0x0000;
+ public static final int GL_POINT_BIT = 0x00000002;
+ public static final int GL_POINT_DISTANCE_ATTENUATION_ARB = 0x8129;
+ public static final int GL_POINT_FADE_THRESHOLD_SIZE_ARB = 0x8128;
+ public static final int GL_POINT_FADE_THRESHOLD_SIZE_EXT = 0x8128;
+ public static final int GL_POINT_FADE_THRESHOLD_SIZE_SGIS = 0x8128;
+ public static final int GL_POINT_SIZE = 0x0B11;
+ public static final int GL_POINT_SIZE_GRANULARITY = 0x0B13;
+ public static final int GL_POINT_SIZE_MAX_ARB = 0x8127;
+ public static final int GL_POINT_SIZE_MAX_EXT = 0x8127;
+ public static final int GL_POINT_SIZE_MAX_SGIS = 0x8127;
+ public static final int GL_POINT_SIZE_MIN_ARB = 0x8126;
+ public static final int GL_POINT_SIZE_MIN_EXT = 0x8126;
+ public static final int GL_POINT_SIZE_MIN_SGIS = 0x8126;
+ public static final int GL_POINT_SIZE_RANGE = 0x0B12;
+ public static final int GL_POINT_SMOOTH = 0x0B10;
+ public static final int GL_POINT_SMOOTH_HINT = 0x0C51;
+ public static final int GL_POINT_TOKEN = 0x0701;
+ public static final int GL_POLYGON = 0x0009;
+ public static final int GL_POLYGON_BIT = 0x00000008;
+ public static final int GL_POLYGON_MODE = 0x0B40;
+ public static final int GL_POLYGON_OFFSET_BIAS_EXT = 0x8039;
+ public static final int GL_POLYGON_OFFSET_EXT = 0x8037;
+ public static final int GL_POLYGON_OFFSET_FACTOR = 0x8038;
+ public static final int GL_POLYGON_OFFSET_FACTOR_EXT = 0x8038;
+ public static final int GL_POLYGON_OFFSET_FILL = 0x8037;
+ public static final int GL_POLYGON_OFFSET_LINE = 0x2A02;
+ public static final int GL_POLYGON_OFFSET_POINT = 0x2A01;
+ public static final int GL_POLYGON_OFFSET_UNITS = 0x2A00;
+ public static final int GL_POLYGON_SMOOTH = 0x0B41;
+ public static final int GL_POLYGON_SMOOTH_HINT = 0x0C53;
+ public static final int GL_POLYGON_STIPPLE = 0x0B42;
+ public static final int GL_POLYGON_STIPPLE_BIT = 0x00000010;
+ public static final int GL_POLYGON_TOKEN = 0x0703;
+ public static final int GL_POSITION = 0x1203;
+ public static final int GL_POST_COLOR_MATRIX_ALPHA_BIAS = 0x80BB;
+ public static final int GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI = 0x80BB;
+ public static final int GL_POST_COLOR_MATRIX_ALPHA_SCALE = 0x80B7;
+ public static final int GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI = 0x80B7;
+ public static final int GL_POST_COLOR_MATRIX_BLUE_BIAS = 0x80BA;
+ public static final int GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI = 0x80BA;
+ public static final int GL_POST_COLOR_MATRIX_BLUE_SCALE = 0x80B6;
+ public static final int GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI = 0x80B6;
+ public static final int GL_POST_COLOR_MATRIX_COLOR_TABLE = 0x80D2;
+ public static final int GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI = 0x80D2;
+ public static final int GL_POST_COLOR_MATRIX_GREEN_BIAS = 0x80B9;
+ public static final int GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI = 0x80B9;
+ public static final int GL_POST_COLOR_MATRIX_GREEN_SCALE = 0x80B5;
+ public static final int GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI = 0x80B5;
+ public static final int GL_POST_COLOR_MATRIX_RED_BIAS = 0x80B8;
+ public static final int GL_POST_COLOR_MATRIX_RED_BIAS_SGI = 0x80B8;
+ public static final int GL_POST_COLOR_MATRIX_RED_SCALE = 0x80B4;
+ public static final int GL_POST_COLOR_MATRIX_RED_SCALE_SGI = 0x80B4;
+ public static final int GL_POST_CONVOLUTION_ALPHA_BIAS = 0x8023;
+ public static final int GL_POST_CONVOLUTION_ALPHA_BIAS_EXT = 0x8023;
+ public static final int GL_POST_CONVOLUTION_ALPHA_SCALE = 0x801F;
+ public static final int GL_POST_CONVOLUTION_ALPHA_SCALE_EXT = 0x801F;
+ public static final int GL_POST_CONVOLUTION_BLUE_BIAS = 0x8022;
+ public static final int GL_POST_CONVOLUTION_BLUE_BIAS_EXT = 0x8022;
+ public static final int GL_POST_CONVOLUTION_BLUE_SCALE = 0x801E;
+ public static final int GL_POST_CONVOLUTION_BLUE_SCALE_EXT = 0x801E;
+ public static final int GL_POST_CONVOLUTION_COLOR_TABLE = 0x80D1;
+ public static final int GL_POST_CONVOLUTION_COLOR_TABLE_SGI = 0x80D1;
+ public static final int GL_POST_CONVOLUTION_GREEN_BIAS = 0x8021;
+ public static final int GL_POST_CONVOLUTION_GREEN_BIAS_EXT = 0x8021;
+ public static final int GL_POST_CONVOLUTION_GREEN_SCALE = 0x801D;
+ public static final int GL_POST_CONVOLUTION_GREEN_SCALE_EXT = 0x801D;
+ public static final int GL_POST_CONVOLUTION_RED_BIAS = 0x8020;
+ public static final int GL_POST_CONVOLUTION_RED_BIAS_EXT = 0x8020;
+ public static final int GL_POST_CONVOLUTION_RED_SCALE = 0x801C;
+ public static final int GL_POST_CONVOLUTION_RED_SCALE_EXT = 0x801C;
+ public static final int GL_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP = 0x8162;
+ public static final int GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX = 0x817B;
+ public static final int GL_POST_TEXTURE_FILTER_BIAS_SGIX = 0x8179;
+ public static final int GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX = 0x817C;
+ public static final int GL_POST_TEXTURE_FILTER_SCALE_SGIX = 0x817A;
+ public static final int GL_PREFER_DOUBLEBUFFER_HINT_PGI = 0x1A1F8;
+ public static final int GL_PRESERVE_ATI = 0x8762;
+ public static final int GL_PREVIOUS = 0x8578;
+ public static final int GL_PREVIOUS_ARB = 0x8578;
+ public static final int GL_PREVIOUS_EXT = 0x8578;
+ public static final int GL_PREVIOUS_TEXTURE_INPUT_NV = 0x86E4;
+ public static final int GL_PRIMARY_COLOR = 0x8577;
+ public static final int GL_PRIMARY_COLOR_ARB = 0x8577;
+ public static final int GL_PRIMARY_COLOR_EXT = 0x8577;
+ public static final int GL_PRIMARY_COLOR_NV = 0x852C;
+ public static final int GL_PROGRAM_ERROR_POSITION_NV = 0x864B;
+ public static final int GL_PROGRAM_LENGTH_NV = 0x8627;
+ public static final int GL_PROGRAM_PARAMETER_NV = 0x8644;
+ public static final int GL_PROGRAM_RESIDENT_NV = 0x8647;
+ public static final int GL_PROGRAM_STRING_NV = 0x8628;
+ public static final int GL_PROGRAM_TARGET_NV = 0x8646;
+ public static final int GL_PROJECTION = 0x1701;
+ public static final int GL_PROJECTION_MATRIX = 0x0BA7;
+ public static final int GL_PROJECTION_STACK_DEPTH = 0x0BA4;
+ public static final int GL_PROXY_COLOR_TABLE = 0x80D3;
+ public static final int GL_PROXY_COLOR_TABLE_SGI = 0x80D3;
+ public static final int GL_PROXY_HISTOGRAM = 0x8025;
+ public static final int GL_PROXY_HISTOGRAM_EXT = 0x8025;
+ public static final int GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE = 0x80D5;
+ public static final int GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI = 0x80D5;
+ public static final int GL_PROXY_POST_CONVOLUTION_COLOR_TABLE = 0x80D4;
+ public static final int GL_PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI = 0x80D4;
+ public static final int GL_PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP = 0x8163;
+ public static final int GL_PROXY_TEXTURE_1D = 0x8063;
+ public static final int GL_PROXY_TEXTURE_1D_EXT = 0x8063;
+ public static final int GL_PROXY_TEXTURE_2D = 0x8064;
+ public static final int GL_PROXY_TEXTURE_2D_EXT = 0x8064;
+ public static final int GL_PROXY_TEXTURE_3D = 0x8070;
+ public static final int GL_PROXY_TEXTURE_3D_EXT = 0x8070;
+ public static final int GL_PROXY_TEXTURE_4D_SGIS = 0x8135;
+ public static final int GL_PROXY_TEXTURE_COLOR_TABLE_SGI = 0x80BD;
+ public static final int GL_PROXY_TEXTURE_CUBE_MAP = 0x851B;
+ public static final int GL_PROXY_TEXTURE_CUBE_MAP_ARB = 0x851B;
+ public static final int GL_PROXY_TEXTURE_CUBE_MAP_EXT = 0x851B;
+ public static final int GL_PROXY_TEXTURE_RECTANGLE_NV = 0x84F7;
+ public static final int GL_Q = 0x2003;
+ public static final int GL_QUADRATIC_ATTENUATION = 0x1209;
+ public static final int GL_QUADS = 0x0007;
+ public static final int GL_QUAD_ALPHA4_SGIS = 0x811E;
+ public static final int GL_QUAD_ALPHA8_SGIS = 0x811F;
+ public static final int GL_QUAD_INTENSITY4_SGIS = 0x8122;
+ public static final int GL_QUAD_INTENSITY8_SGIS = 0x8123;
+ public static final int GL_QUAD_LUMINANCE4_SGIS = 0x8120;
+ public static final int GL_QUAD_LUMINANCE8_SGIS = 0x8121;
+ public static final int GL_QUAD_STRIP = 0x0008;
+ public static final int GL_QUAD_TEXTURE_SELECT_SGIS = 0x8125;
+ public static final int GL_QUARTER_BIT_ATI = 0x00000010;
+ public static final int GL_R = 0x2002;
+ public static final int GL_R1UI_C3F_V3F_SUN = 0x85C6;
+ public static final int GL_R1UI_C4F_N3F_V3F_SUN = 0x85C8;
+ public static final int GL_R1UI_C4UB_V3F_SUN = 0x85C5;
+ public static final int GL_R1UI_N3F_V3F_SUN = 0x85C7;
+ public static final int GL_R1UI_T2F_C4F_N3F_V3F_SUN = 0x85CB;
+ public static final int GL_R1UI_T2F_N3F_V3F_SUN = 0x85CA;
+ public static final int GL_R1UI_T2F_V3F_SUN = 0x85C9;
+ public static final int GL_R1UI_V3F_SUN = 0x85C4;
+ public static final int GL_R3_G3_B2 = 0x2A10;
+ public static final int GL_RASTER_POSITION_UNCLIPPED_IBM = 0x19262;
+ public static final int GL_READ_BUFFER = 0x0C02;
+ public static final int GL_RECLAIM_MEMORY_HINT_PGI = 0x1A1FE;
+ public static final int GL_RED = 0x1903;
+ public static final int GL_REDUCE = 0x8016;
+ public static final int GL_REDUCE_EXT = 0x8016;
+ public static final int GL_RED_BIAS = 0x0D15;
+ public static final int GL_RED_BITS = 0x0D52;
+ public static final int GL_RED_BIT_ATI = 0x00000001;
+ public static final int GL_RED_MAX_CLAMP_INGR = 0x8564;
+ public static final int GL_RED_MIN_CLAMP_INGR = 0x8560;
+ public static final int GL_RED_SCALE = 0x0D14;
+ public static final int GL_REFERENCE_PLANE_EQUATION_SGIX = 0x817E;
+ public static final int GL_REFERENCE_PLANE_SGIX = 0x817D;
+ public static final int GL_REFLECTION_MAP = 0x8512;
+ public static final int GL_REFLECTION_MAP_ARB = 0x8512;
+ public static final int GL_REFLECTION_MAP_EXT = 0x8512;
+ public static final int GL_REFLECTION_MAP_NV = 0x8512;
+ public static final int GL_REGISTER_COMBINERS_NV = 0x8522;
+ public static final int GL_REG_0_ATI = 0x8921;
+ public static final int GL_REG_10_ATI = 0x892B;
+ public static final int GL_REG_11_ATI = 0x892C;
+ public static final int GL_REG_12_ATI = 0x892D;
+ public static final int GL_REG_13_ATI = 0x892E;
+ public static final int GL_REG_14_ATI = 0x892F;
+ public static final int GL_REG_15_ATI = 0x8930;
+ public static final int GL_REG_16_ATI = 0x8931;
+ public static final int GL_REG_17_ATI = 0x8932;
+ public static final int GL_REG_18_ATI = 0x8933;
+ public static final int GL_REG_19_ATI = 0x8934;
+ public static final int GL_REG_1_ATI = 0x8922;
+ public static final int GL_REG_20_ATI = 0x8935;
+ public static final int GL_REG_21_ATI = 0x8936;
+ public static final int GL_REG_22_ATI = 0x8937;
+ public static final int GL_REG_23_ATI = 0x8938;
+ public static final int GL_REG_24_ATI = 0x8939;
+ public static final int GL_REG_25_ATI = 0x893A;
+ public static final int GL_REG_26_ATI = 0x893B;
+ public static final int GL_REG_27_ATI = 0x893C;
+ public static final int GL_REG_28_ATI = 0x893D;
+ public static final int GL_REG_29_ATI = 0x893E;
+ public static final int GL_REG_2_ATI = 0x8923;
+ public static final int GL_REG_30_ATI = 0x893F;
+ public static final int GL_REG_31_ATI = 0x8940;
+ public static final int GL_REG_3_ATI = 0x8924;
+ public static final int GL_REG_4_ATI = 0x8925;
+ public static final int GL_REG_5_ATI = 0x8926;
+ public static final int GL_REG_6_ATI = 0x8927;
+ public static final int GL_REG_7_ATI = 0x8928;
+ public static final int GL_REG_8_ATI = 0x8929;
+ public static final int GL_REG_9_ATI = 0x892A;
+ public static final int GL_RENDER = 0x1C00;
+ public static final int GL_RENDERER = 0x1F01;
+ public static final int GL_RENDER_MODE = 0x0C40;
+ public static final int GL_REND_screen_coordinates = 1;
+ public static final int GL_REPEAT = 0x2901;
+ public static final int GL_REPLACE = 0x1E01;
+ public static final int GL_REPLACEMENT_CODE_ARRAY_POINTER_SUN = 0x85C3;
+ public static final int GL_REPLACEMENT_CODE_ARRAY_STRIDE_SUN = 0x85C2;
+ public static final int GL_REPLACEMENT_CODE_ARRAY_SUN = 0x85C0;
+ public static final int GL_REPLACEMENT_CODE_ARRAY_TYPE_SUN = 0x85C1;
+ public static final int GL_REPLACEMENT_CODE_SUN = 0x81D8;
+ public static final int GL_REPLACE_EXT = 0x8062;
+ public static final int GL_REPLACE_MIDDLE_SUN = 0x0002;
+ public static final int GL_REPLACE_OLDEST_SUN = 0x0003;
+ public static final int GL_REPLICATE_BORDER = 0x8153;
+ public static final int GL_REPLICATE_BORDER_HP = 0x8153;
+ public static final int GL_RESAMPLE_AVERAGE_OML = 0x8988;
+ public static final int GL_RESAMPLE_DECIMATE_OML = 0x8989;
+ public static final int GL_RESAMPLE_DECIMATE_SGIX = 0x8430;
+ public static final int GL_RESAMPLE_REPLICATE_OML = 0x8986;
+ public static final int GL_RESAMPLE_REPLICATE_SGIX = 0x842E;
+ public static final int GL_RESAMPLE_ZERO_FILL_OML = 0x8987;
+ public static final int GL_RESAMPLE_ZERO_FILL_SGIX = 0x842F;
+ public static final int GL_RESCALE_NORMAL = 0x803A;
+ public static final int GL_RESCALE_NORMAL_EXT = 0x803A;
+ public static final int GL_RESTART_SUN = 0x0001;
+ public static final int GL_RETURN = 0x0102;
+ public static final int GL_RGB = 0x1907;
+ public static final int GL_RGB10 = 0x8052;
+ public static final int GL_RGB10_A2 = 0x8059;
+ public static final int GL_RGB10_A2_EXT = 0x8059;
+ public static final int GL_RGB10_EXT = 0x8052;
+ public static final int GL_RGB12 = 0x8053;
+ public static final int GL_RGB12_EXT = 0x8053;
+ public static final int GL_RGB16 = 0x8054;
+ public static final int GL_RGB16_EXT = 0x8054;
+ public static final int GL_RGB2_EXT = 0x804E;
+ public static final int GL_RGB4 = 0x804F;
+ public static final int GL_RGB4_EXT = 0x804F;
+ public static final int GL_RGB5 = 0x8050;
+ public static final int GL_RGB5_A1 = 0x8057;
+ public static final int GL_RGB5_A1_EXT = 0x8057;
+ public static final int GL_RGB5_EXT = 0x8050;
+ public static final int GL_RGB8 = 0x8051;
+ public static final int GL_RGB8_EXT = 0x8051;
+ public static final int GL_RGBA = 0x1908;
+ public static final int GL_RGBA12 = 0x805A;
+ public static final int GL_RGBA12_EXT = 0x805A;
+ public static final int GL_RGBA16 = 0x805B;
+ public static final int GL_RGBA16_EXT = 0x805B;
+ public static final int GL_RGBA2 = 0x8055;
+ public static final int GL_RGBA2_EXT = 0x8055;
+ public static final int GL_RGBA4 = 0x8056;
+ public static final int GL_RGBA4_EXT = 0x8056;
+ public static final int GL_RGBA8 = 0x8058;
+ public static final int GL_RGBA8_EXT = 0x8058;
+ public static final int GL_RGBA_MODE = 0x0C31;
+ public static final int GL_RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV = 0x86D9;
+ public static final int GL_RGB_SCALE = 0x8573;
+ public static final int GL_RGB_SCALE_ARB = 0x8573;
+ public static final int GL_RGB_SCALE_EXT = 0x8573;
+ public static final int GL_RIGHT = 0x0407;
+ public static final int GL_S = 0x2000;
+ public static final int GL_SAMPLES = 0x80A9;
+ public static final int GL_SAMPLES_3DFX = 0x86B4;
+ public static final int GL_SAMPLES_ARB = 0x80A9;
+ public static final int GL_SAMPLES_EXT = 0x80A9;
+ public static final int GL_SAMPLES_SGIS = 0x80A9;
+ public static final int GL_SAMPLE_ALPHA_TO_COVERAGE = 0x809E;
+ public static final int GL_SAMPLE_ALPHA_TO_COVERAGE_ARB = 0x809E;
+ public static final int GL_SAMPLE_ALPHA_TO_MASK_EXT = 0x809E;
+ public static final int GL_SAMPLE_ALPHA_TO_MASK_SGIS = 0x809E;
+ public static final int GL_SAMPLE_ALPHA_TO_ONE = 0x809F;
+ public static final int GL_SAMPLE_ALPHA_TO_ONE_ARB = 0x809F;
+ public static final int GL_SAMPLE_ALPHA_TO_ONE_EXT = 0x809F;
+ public static final int GL_SAMPLE_ALPHA_TO_ONE_SGIS = 0x809F;
+ public static final int GL_SAMPLE_BUFFERS = 0x80A8;
+ public static final int GL_SAMPLE_BUFFERS_3DFX = 0x86B3;
+ public static final int GL_SAMPLE_BUFFERS_ARB = 0x80A8;
+ public static final int GL_SAMPLE_BUFFERS_EXT = 0x80A8;
+ public static final int GL_SAMPLE_BUFFERS_SGIS = 0x80A8;
+ public static final int GL_SAMPLE_COVERAGE = 0x80A0;
+ public static final int GL_SAMPLE_COVERAGE_ARB = 0x80A0;
+ public static final int GL_SAMPLE_COVERAGE_INVERT = 0x80AB;
+ public static final int GL_SAMPLE_COVERAGE_INVERT_ARB = 0x80AB;
+ public static final int GL_SAMPLE_COVERAGE_VALUE = 0x80AA;
+ public static final int GL_SAMPLE_COVERAGE_VALUE_ARB = 0x80AA;
+ public static final int GL_SAMPLE_MASK_EXT = 0x80A0;
+ public static final int GL_SAMPLE_MASK_INVERT_EXT = 0x80AB;
+ public static final int GL_SAMPLE_MASK_INVERT_SGIS = 0x80AB;
+ public static final int GL_SAMPLE_MASK_SGIS = 0x80A0;
+ public static final int GL_SAMPLE_MASK_VALUE_EXT = 0x80AA;
+ public static final int GL_SAMPLE_MASK_VALUE_SGIS = 0x80AA;
+ public static final int GL_SAMPLE_PATTERN_EXT = 0x80AC;
+ public static final int GL_SAMPLE_PATTERN_SGIS = 0x80AC;
+ public static final int GL_SATURATE_BIT_ATI = 0x00000040;
+ public static final int GL_SCALAR_EXT = 0x87BE;
+ public static final int GL_SCALEBIAS_HINT_SGIX = 0x8322;
+ public static final int GL_SCALE_BY_FOUR_NV = 0x853F;
+ public static final int GL_SCALE_BY_ONE_HALF_NV = 0x8540;
+ public static final int GL_SCALE_BY_TWO_NV = 0x853E;
+ public static final int GL_SCISSOR_BIT = 0x00080000;
+ public static final int GL_SCISSOR_BOX = 0x0C10;
+ public static final int GL_SCISSOR_TEST = 0x0C11;
+ public static final int GL_SCREEN_COORDINATES_REND = 0x8490;
+ public static final int GL_SECONDARY_COLOR_ARRAY_EXT = 0x845E;
+ public static final int GL_SECONDARY_COLOR_ARRAY_LIST_IBM = 103077;
+ public static final int GL_SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM = 103087;
+ public static final int GL_SECONDARY_COLOR_ARRAY_POINTER_EXT = 0x845D;
+ public static final int GL_SECONDARY_COLOR_ARRAY_SIZE_EXT = 0x845A;
+ public static final int GL_SECONDARY_COLOR_ARRAY_STRIDE_EXT = 0x845C;
+ public static final int GL_SECONDARY_COLOR_ARRAY_TYPE_EXT = 0x845B;
+ public static final int GL_SECONDARY_COLOR_NV = 0x852D;
+ public static final int GL_SECONDARY_INTERPOLATOR_ATI = 0x896D;
+ public static final int GL_SELECT = 0x1C02;
+ public static final int GL_SELECTION_BUFFER_POINTER = 0x0DF3;
+ public static final int GL_SELECTION_BUFFER_SIZE = 0x0DF4;
+ public static final int GL_SEPARABLE_2D = 0x8012;
+ public static final int GL_SEPARABLE_2D_EXT = 0x8012;
+ public static final int GL_SEPARATE_SPECULAR_COLOR = 0x81FA;
+ public static final int GL_SEPARATE_SPECULAR_COLOR_EXT = 0x81FA;
+ public static final int GL_SET = 0x150F;
+ public static final int GL_SGIS_detail_texture = 1;
+ public static final int GL_SGIS_fog_function = 1;
+ public static final int GL_SGIS_generate_mipmap = 1;
+ public static final int GL_SGIS_multisample = 1;
+ public static final int GL_SGIS_pixel_texture = 1;
+ public static final int GL_SGIS_point_line_texgen = 1;
+ public static final int GL_SGIS_sharpen_texture = 1;
+ public static final int GL_SGIS_texture4D = 1;
+ public static final int GL_SGIS_texture_border_clamp = 1;
+ public static final int GL_SGIS_texture_color_mask = 1;
+ public static final int GL_SGIS_texture_edge_clamp = 1;
+ public static final int GL_SGIS_texture_filter4 = 1;
+ public static final int GL_SGIS_texture_lod = 1;
+ public static final int GL_SGIX_async = 1;
+ public static final int GL_SGIX_async_histogram = 1;
+ public static final int GL_SGIX_async_pixel = 1;
+ public static final int GL_SGIX_blend_alpha_minmax = 1;
+ public static final int GL_SGIX_calligraphic_fragment = 1;
+ public static final int GL_SGIX_clipmap = 1;
+ public static final int GL_SGIX_convolution_accuracy = 1;
+ public static final int GL_SGIX_depth_pass_instrument = 1;
+ public static final int GL_SGIX_depth_texture = 1;
+ public static final int GL_SGIX_flush_raster = 1;
+ public static final int GL_SGIX_fog_offset = 1;
+ public static final int GL_SGIX_fog_scale = 1;
+ public static final int GL_SGIX_fragment_lighting = 1;
+ public static final int GL_SGIX_framezoom = 1;
+ public static final int GL_SGIX_igloo_interface = 1;
+ public static final int GL_SGIX_instruments = 1;
+ public static final int GL_SGIX_interlace = 1;
+ public static final int GL_SGIX_ir_instrument1 = 1;
+ public static final int GL_SGIX_list_priority = 1;
+ public static final int GL_SGIX_pixel_texture = 1;
+ public static final int GL_SGIX_pixel_tiles = 1;
+ public static final int GL_SGIX_polynomial_ffd = 1;
+ public static final int GL_SGIX_reference_plane = 1;
+ public static final int GL_SGIX_resample = 1;
+ public static final int GL_SGIX_scalebias_hint = 1;
+ public static final int GL_SGIX_shadow = 1;
+ public static final int GL_SGIX_shadow_ambient = 1;
+ public static final int GL_SGIX_sprite = 1;
+ public static final int GL_SGIX_subsample = 1;
+ public static final int GL_SGIX_tag_sample_buffer = 1;
+ public static final int GL_SGIX_texture_add_env = 1;
+ public static final int GL_SGIX_texture_coordinate_clamp = 1;
+ public static final int GL_SGIX_texture_lod_bias = 1;
+ public static final int GL_SGIX_texture_multi_buffer = 1;
+ public static final int GL_SGIX_texture_scale_bias = 1;
+ public static final int GL_SGIX_texture_select = 1;
+ public static final int GL_SGIX_vertex_preclip = 1;
+ public static final int GL_SGIX_ycrcb = 1;
+ public static final int GL_SGIX_ycrcb_subsample = 1;
+ public static final int GL_SGIX_ycrcba = 1;
+ public static final int GL_SGI_color_table = 1;
+ public static final int GL_SGI_texture_color_table = 1;
+ public static final int GL_SHADER_CONSISTENT_NV = 0x86DD;
+ public static final int GL_SHADER_OPERATION_NV = 0x86DF;
+ public static final int GL_SHADE_MODEL = 0x0B54;
+ public static final int GL_SHADOW_AMBIENT_SGIX = 0x80BF;
+ public static final int GL_SHADOW_ATTENUATION_EXT = 0x834E;
+ public static final int GL_SHARED_TEXTURE_PALETTE_EXT = 0x81FB;
+ public static final int GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS = 0x80B0;
+ public static final int GL_SHININESS = 0x1601;
+ public static final int GL_SHORT = 0x1402;
+ public static final int GL_SIGNED_ALPHA8_NV = 0x8706;
+ public static final int GL_SIGNED_ALPHA_NV = 0x8705;
+ public static final int GL_SIGNED_HILO16_NV = 0x86FA;
+ public static final int GL_SIGNED_HILO_NV = 0x86F9;
+ public static final int GL_SIGNED_IDENTITY_NV = 0x853C;
+ public static final int GL_SIGNED_INTENSITY8_NV = 0x8708;
+ public static final int GL_SIGNED_INTENSITY_NV = 0x8707;
+ public static final int GL_SIGNED_LUMINANCE8_ALPHA8_NV = 0x8704;
+ public static final int GL_SIGNED_LUMINANCE8_NV = 0x8702;
+ public static final int GL_SIGNED_LUMINANCE_ALPHA_NV = 0x8703;
+ public static final int GL_SIGNED_LUMINANCE_NV = 0x8701;
+ public static final int GL_SIGNED_NEGATE_NV = 0x853D;
+ public static final int GL_SIGNED_RGB8_NV = 0x86FF;
+ public static final int GL_SIGNED_RGB8_UNSIGNED_ALPHA8_NV = 0x870D;
+ public static final int GL_SIGNED_RGBA8_NV = 0x86FC;
+ public static final int GL_SIGNED_RGBA_NV = 0x86FB;
+ public static final int GL_SIGNED_RGB_NV = 0x86FE;
+ public static final int GL_SIGNED_RGB_UNSIGNED_ALPHA_NV = 0x870C;
+ public static final int GL_SINGLE_COLOR = 0x81F9;
+ public static final int GL_SINGLE_COLOR_EXT = 0x81F9;
+ public static final int GL_SMOOTH = 0x1D01;
+ public static final int GL_SMOOTH_LINE_WIDTH_GRANULARITY = 0x0B23;
+ public static final int GL_SMOOTH_LINE_WIDTH_RANGE = 0x0B22;
+ public static final int GL_SMOOTH_POINT_SIZE_GRANULARITY = 0x0B13;
+ public static final int GL_SMOOTH_POINT_SIZE_RANGE = 0x0B12;
+ public static final int GL_SOURCE0_ALPHA = 0x8588;
+ public static final int GL_SOURCE0_ALPHA_ARB = 0x8588;
+ public static final int GL_SOURCE0_ALPHA_EXT = 0x8588;
+ public static final int GL_SOURCE0_RGB = 0x8580;
+ public static final int GL_SOURCE0_RGB_ARB = 0x8580;
+ public static final int GL_SOURCE0_RGB_EXT = 0x8580;
+ public static final int GL_SOURCE1_ALPHA = 0x8589;
+ public static final int GL_SOURCE1_ALPHA_ARB = 0x8589;
+ public static final int GL_SOURCE1_ALPHA_EXT = 0x8589;
+ public static final int GL_SOURCE1_RGB = 0x8581;
+ public static final int GL_SOURCE1_RGB_ARB = 0x8581;
+ public static final int GL_SOURCE1_RGB_EXT = 0x8581;
+ public static final int GL_SOURCE2_ALPHA = 0x858A;
+ public static final int GL_SOURCE2_ALPHA_ARB = 0x858A;
+ public static final int GL_SOURCE2_ALPHA_EXT = 0x858A;
+ public static final int GL_SOURCE2_RGB = 0x8582;
+ public static final int GL_SOURCE2_RGB_ARB = 0x8582;
+ public static final int GL_SOURCE2_RGB_EXT = 0x8582;
+ public static final int GL_SOURCE3_ALPHA_NV = 0x858B;
+ public static final int GL_SOURCE3_RGB_NV = 0x8583;
+ public static final int GL_SPARE0_NV = 0x852E;
+ public static final int GL_SPARE0_PLUS_SECONDARY_COLOR_NV = 0x8532;
+ public static final int GL_SPARE1_NV = 0x852F;
+ public static final int GL_SPECULAR = 0x1202;
+ public static final int GL_SPHERE_MAP = 0x2402;
+ public static final int GL_SPOT_CUTOFF = 0x1206;
+ public static final int GL_SPOT_DIRECTION = 0x1204;
+ public static final int GL_SPOT_EXPONENT = 0x1205;
+ public static final int GL_SPRITE_AXIAL_SGIX = 0x814C;
+ public static final int GL_SPRITE_AXIS_SGIX = 0x814A;
+ public static final int GL_SPRITE_EYE_ALIGNED_SGIX = 0x814E;
+ public static final int GL_SPRITE_MODE_SGIX = 0x8149;
+ public static final int GL_SPRITE_OBJECT_ALIGNED_SGIX = 0x814D;
+ public static final int GL_SPRITE_POINT_MESA = 0x8757;
+ public static final int GL_SPRITE_SGIX = 0x8148;
+ public static final int GL_SPRITE_TRANSLATION_SGIX = 0x814B;
+ public static final int GL_SRC_ALPHA = 0x0302;
+ public static final int GL_SRC_ALPHA_SATURATE = 0x0308;
+ public static final int GL_SRC_COLOR = 0x0300;
+ public static final int GL_STACK_OVERFLOW = 0x0503;
+ public static final int GL_STACK_UNDERFLOW = 0x0504;
+ public static final int GL_STATIC_ATI = 0x8760;
+ public static final int GL_STENCIL = 0x1802;
+ public static final int GL_STENCIL_BITS = 0x0D57;
+ public static final int GL_STENCIL_BUFFER_BIT = 0x00000400;
+ public static final int GL_STENCIL_CLEAR_VALUE = 0x0B91;
+ public static final int GL_STENCIL_FAIL = 0x0B94;
+ public static final int GL_STENCIL_FUNC = 0x0B92;
+ public static final int GL_STENCIL_INDEX = 0x1901;
+ public static final int GL_STENCIL_PASS_DEPTH_FAIL = 0x0B95;
+ public static final int GL_STENCIL_PASS_DEPTH_PASS = 0x0B96;
+ public static final int GL_STENCIL_REF = 0x0B97;
+ public static final int GL_STENCIL_TEST = 0x0B90;
+ public static final int GL_STENCIL_VALUE_MASK = 0x0B93;
+ public static final int GL_STENCIL_WRITEMASK = 0x0B98;
+ public static final int GL_STEREO = 0x0C33;
+ public static final int GL_STRICT_DEPTHFUNC_HINT_PGI = 0x1A216;
+ public static final int GL_STRICT_LIGHTING_HINT_PGI = 0x1A217;
+ public static final int GL_STRICT_SCISSOR_HINT_PGI = 0x1A218;
+ public static final int GL_SUBPIXEL_BITS = 0x0D50;
+ public static final int GL_SUBTRACT = 0x84E7;
+ public static final int GL_SUBTRACT_ARB = 0x84E7;
+ public static final int GL_SUB_ATI = 0x8965;
+ public static final int GL_SUNX_constant_data = 1;
+ public static final int GL_SUN_convolution_border_modes = 1;
+ public static final int GL_SUN_global_alpha = 1;
+ public static final int GL_SUN_triangle_list = 1;
+ public static final int GL_SUN_vertex = 1;
+ public static final int GL_SWIZZLE_STQ_ATI = 0x8977;
+ public static final int GL_SWIZZLE_STQ_DQ_ATI = 0x8979;
+ public static final int GL_SWIZZLE_STRQ_ATI = 0x897A;
+ public static final int GL_SWIZZLE_STRQ_DQ_ATI = 0x897B;
+ public static final int GL_SWIZZLE_STR_ATI = 0x8976;
+ public static final int GL_SWIZZLE_STR_DR_ATI = 0x8978;
+ public static final int GL_T = 0x2001;
+ public static final int GL_T2F_C3F_V3F = 0x2A2A;
+ public static final int GL_T2F_C4F_N3F_V3F = 0x2A2C;
+ public static final int GL_T2F_C4UB_V3F = 0x2A29;
+ public static final int GL_T2F_IUI_N3F_V2F_EXT = 0x81B3;
+ public static final int GL_T2F_IUI_N3F_V3F_EXT = 0x81B4;
+ public static final int GL_T2F_IUI_V2F_EXT = 0x81B1;
+ public static final int GL_T2F_IUI_V3F_EXT = 0x81B2;
+ public static final int GL_T2F_N3F_V3F = 0x2A2B;
+ public static final int GL_T2F_V3F = 0x2A27;
+ public static final int GL_T4F_C4F_N3F_V4F = 0x2A2D;
+ public static final int GL_T4F_V4F = 0x2A28;
+ public static final int GL_TABLE_TOO_LARGE = 0x8031;
+ public static final int GL_TABLE_TOO_LARGE_EXT = 0x8031;
+ public static final int GL_TANGENT_ARRAY_EXT = 0x8439;
+ public static final int GL_TANGENT_ARRAY_POINTER_EXT = 0x8442;
+ public static final int GL_TANGENT_ARRAY_STRIDE_EXT = 0x843F;
+ public static final int GL_TANGENT_ARRAY_TYPE_EXT = 0x843E;
+ public static final int GL_TEXCOORD1_BIT_PGI = 0x10000000;
+ public static final int GL_TEXCOORD2_BIT_PGI = 0x20000000;
+ public static final int GL_TEXCOORD3_BIT_PGI = 0x40000000;
+ public static final int GL_TEXCOORD4_BIT_PGI = 0x80000000;
+ public static final int GL_TEXTURE = 0x1702;
+ public static final int GL_TEXTURE0 = 0x84C0;
+ public static final int GL_TEXTURE0_ARB = 0x84C0;
+ public static final int GL_TEXTURE1 = 0x84C1;
+ public static final int GL_TEXTURE10 = 0x84CA;
+ public static final int GL_TEXTURE10_ARB = 0x84CA;
+ public static final int GL_TEXTURE11 = 0x84CB;
+ public static final int GL_TEXTURE11_ARB = 0x84CB;
+ public static final int GL_TEXTURE12 = 0x84CC;
+ public static final int GL_TEXTURE12_ARB = 0x84CC;
+ public static final int GL_TEXTURE13 = 0x84CD;
+ public static final int GL_TEXTURE13_ARB = 0x84CD;
+ public static final int GL_TEXTURE14 = 0x84CE;
+ public static final int GL_TEXTURE14_ARB = 0x84CE;
+ public static final int GL_TEXTURE15 = 0x84CF;
+ public static final int GL_TEXTURE15_ARB = 0x84CF;
+ public static final int GL_TEXTURE16 = 0x84D0;
+ public static final int GL_TEXTURE16_ARB = 0x84D0;
+ public static final int GL_TEXTURE17 = 0x84D1;
+ public static final int GL_TEXTURE17_ARB = 0x84D1;
+ public static final int GL_TEXTURE18 = 0x84D2;
+ public static final int GL_TEXTURE18_ARB = 0x84D2;
+ public static final int GL_TEXTURE19 = 0x84D3;
+ public static final int GL_TEXTURE19_ARB = 0x84D3;
+ public static final int GL_TEXTURE1_ARB = 0x84C1;
+ public static final int GL_TEXTURE2 = 0x84C2;
+ public static final int GL_TEXTURE20 = 0x84D4;
+ public static final int GL_TEXTURE20_ARB = 0x84D4;
+ public static final int GL_TEXTURE21 = 0x84D5;
+ public static final int GL_TEXTURE21_ARB = 0x84D5;
+ public static final int GL_TEXTURE22 = 0x84D6;
+ public static final int GL_TEXTURE22_ARB = 0x84D6;
+ public static final int GL_TEXTURE23 = 0x84D7;
+ public static final int GL_TEXTURE23_ARB = 0x84D7;
+ public static final int GL_TEXTURE24 = 0x84D8;
+ public static final int GL_TEXTURE24_ARB = 0x84D8;
+ public static final int GL_TEXTURE25 = 0x84D9;
+ public static final int GL_TEXTURE25_ARB = 0x84D9;
+ public static final int GL_TEXTURE26 = 0x84DA;
+ public static final int GL_TEXTURE26_ARB = 0x84DA;
+ public static final int GL_TEXTURE27 = 0x84DB;
+ public static final int GL_TEXTURE27_ARB = 0x84DB;
+ public static final int GL_TEXTURE28 = 0x84DC;
+ public static final int GL_TEXTURE28_ARB = 0x84DC;
+ public static final int GL_TEXTURE29 = 0x84DD;
+ public static final int GL_TEXTURE29_ARB = 0x84DD;
+ public static final int GL_TEXTURE2_ARB = 0x84C2;
+ public static final int GL_TEXTURE3 = 0x84C3;
+ public static final int GL_TEXTURE30 = 0x84DE;
+ public static final int GL_TEXTURE30_ARB = 0x84DE;
+ public static final int GL_TEXTURE31 = 0x84DF;
+ public static final int GL_TEXTURE31_ARB = 0x84DF;
+ public static final int GL_TEXTURE3_ARB = 0x84C3;
+ public static final int GL_TEXTURE4 = 0x84C4;
+ public static final int GL_TEXTURE4_ARB = 0x84C4;
+ public static final int GL_TEXTURE5 = 0x84C5;
+ public static final int GL_TEXTURE5_ARB = 0x84C5;
+ public static final int GL_TEXTURE6 = 0x84C6;
+ public static final int GL_TEXTURE6_ARB = 0x84C6;
+ public static final int GL_TEXTURE7 = 0x84C7;
+ public static final int GL_TEXTURE7_ARB = 0x84C7;
+ public static final int GL_TEXTURE8 = 0x84C8;
+ public static final int GL_TEXTURE8_ARB = 0x84C8;
+ public static final int GL_TEXTURE9 = 0x84C9;
+ public static final int GL_TEXTURE9_ARB = 0x84C9;
+ public static final int GL_TEXTURE_1D = 0x0DE0;
+ public static final int GL_TEXTURE_1D_BINDING_EXT = 0x8068;
+ public static final int GL_TEXTURE_2D = 0x0DE1;
+ public static final int GL_TEXTURE_2D_BINDING_EXT = 0x8069;
+ public static final int GL_TEXTURE_3D = 0x806F;
+ public static final int GL_TEXTURE_3D_BINDING_EXT = 0x806A;
+ public static final int GL_TEXTURE_3D_EXT = 0x806F;
+ public static final int GL_TEXTURE_4DSIZE_SGIS = 0x8136;
+ public static final int GL_TEXTURE_4D_BINDING_SGIS = 0x814F;
+ public static final int GL_TEXTURE_4D_SGIS = 0x8134;
+ public static final int GL_TEXTURE_ALPHA_SIZE = 0x805F;
+ public static final int GL_TEXTURE_ALPHA_SIZE_EXT = 0x805F;
+ public static final int GL_TEXTURE_APPLICATION_MODE_EXT = 0x834F;
+ public static final int GL_TEXTURE_BASE_LEVEL = 0x813C;
+ public static final int GL_TEXTURE_BASE_LEVEL_SGIS = 0x813C;
+ public static final int GL_TEXTURE_BINDING_1D = 0x8068;
+ public static final int GL_TEXTURE_BINDING_2D = 0x8069;
+ public static final int GL_TEXTURE_BINDING_3D = 0x806A;
+ public static final int GL_TEXTURE_BINDING_CUBE_MAP = 0x8514;
+ public static final int GL_TEXTURE_BINDING_CUBE_MAP_ARB = 0x8514;
+ public static final int GL_TEXTURE_BINDING_CUBE_MAP_EXT = 0x8514;
+ public static final int GL_TEXTURE_BINDING_RECTANGLE_NV = 0x84F6;
+ public static final int GL_TEXTURE_BIT = 0x00040000;
+ public static final int GL_TEXTURE_BLUE_SIZE = 0x805E;
+ public static final int GL_TEXTURE_BLUE_SIZE_EXT = 0x805E;
+ public static final int GL_TEXTURE_BORDER = 0x1005;
+ public static final int GL_TEXTURE_BORDER_COLOR = 0x1004;
+ public static final int GL_TEXTURE_BORDER_VALUES_NV = 0x871A;
+ public static final int GL_TEXTURE_CLIPMAP_CENTER_SGIX = 0x8171;
+ public static final int GL_TEXTURE_CLIPMAP_DEPTH_SGIX = 0x8176;
+ public static final int GL_TEXTURE_CLIPMAP_FRAME_SGIX = 0x8172;
+ public static final int GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX = 0x8175;
+ public static final int GL_TEXTURE_CLIPMAP_OFFSET_SGIX = 0x8173;
+ public static final int GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX = 0x8174;
+ public static final int GL_TEXTURE_COLOR_TABLE_SGI = 0x80BC;
+ public static final int GL_TEXTURE_COLOR_WRITEMASK_SGIS = 0x81EF;
+ public static final int GL_TEXTURE_COMPARE_OPERATOR_SGIX = 0x819B;
+ public static final int GL_TEXTURE_COMPARE_SGIX = 0x819A;
+ public static final int GL_TEXTURE_COMPONENTS = 0x1003;
+ public static final int GL_TEXTURE_COMPRESSED = 0x86A1;
+ public static final int GL_TEXTURE_COMPRESSED_ARB = 0x86A1;
+ public static final int GL_TEXTURE_COMPRESSED_IMAGE_SIZE = 0x86A0;
+ public static final int GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB = 0x86A0;
+ public static final int GL_TEXTURE_COMPRESSION_HINT = 0x84EF;
+ public static final int GL_TEXTURE_COMPRESSION_HINT_ARB = 0x84EF;
+ public static final int GL_TEXTURE_CONSTANT_DATA_SUNX = 0x81D6;
+ public static final int GL_TEXTURE_COORD_ARRAY = 0x8078;
+ public static final int GL_TEXTURE_COORD_ARRAY_COUNT_EXT = 0x808B;
+ public static final int GL_TEXTURE_COORD_ARRAY_EXT = 0x8078;
+ public static final int GL_TEXTURE_COORD_ARRAY_LIST_IBM = 103074;
+ public static final int GL_TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM = 103084;
+ public static final int GL_TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL = 0x83F8;
+ public static final int GL_TEXTURE_COORD_ARRAY_POINTER = 0x8092;
+ public static final int GL_TEXTURE_COORD_ARRAY_POINTER_EXT = 0x8092;
+ public static final int GL_TEXTURE_COORD_ARRAY_SIZE = 0x8088;
+ public static final int GL_TEXTURE_COORD_ARRAY_SIZE_EXT = 0x8088;
+ public static final int GL_TEXTURE_COORD_ARRAY_STRIDE = 0x808A;
+ public static final int GL_TEXTURE_COORD_ARRAY_STRIDE_EXT = 0x808A;
+ public static final int GL_TEXTURE_COORD_ARRAY_TYPE = 0x8089;
+ public static final int GL_TEXTURE_COORD_ARRAY_TYPE_EXT = 0x8089;
+ public static final int GL_TEXTURE_CUBE_MAP = 0x8513;
+ public static final int GL_TEXTURE_CUBE_MAP_ARB = 0x8513;
+ public static final int GL_TEXTURE_CUBE_MAP_EXT = 0x8513;
+ public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_X = 0x8516;
+ public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB = 0x8516;
+ public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_X_EXT = 0x8516;
+ public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_Y = 0x8518;
+ public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB = 0x8518;
+ public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT = 0x8518;
+ public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_Z = 0x851A;
+ public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB = 0x851A;
+ public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT = 0x851A;
+ public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_X = 0x8515;
+ public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB = 0x8515;
+ public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_X_EXT = 0x8515;
+ public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_Y = 0x8517;
+ public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB = 0x8517;
+ public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_Y_EXT = 0x8517;
+ public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_Z = 0x8519;
+ public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB = 0x8519;
+ public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_Z_EXT = 0x8519;
+ public static final int GL_TEXTURE_DEFORMATION_BIT_SGIX = 0x00000001;
+ public static final int GL_TEXTURE_DEFORMATION_SGIX = 0x8195;
+ public static final int GL_TEXTURE_DEPTH = 0x8071;
+ public static final int GL_TEXTURE_DEPTH_EXT = 0x8071;
+ public static final int GL_TEXTURE_DS_SIZE_NV = 0x871D;
+ public static final int GL_TEXTURE_DT_SIZE_NV = 0x871E;
+ public static final int GL_TEXTURE_ENV = 0x2300;
+ public static final int GL_TEXTURE_ENV_BIAS_SGIX = 0x80BE;
+ public static final int GL_TEXTURE_ENV_COLOR = 0x2201;
+ public static final int GL_TEXTURE_ENV_MODE = 0x2200;
+ public static final int GL_TEXTURE_FILTER4_SIZE_SGIS = 0x8147;
+ public static final int GL_TEXTURE_FILTER_CONTROL_EXT = 0x8500;
+ public static final int GL_TEXTURE_GEN_MODE = 0x2500;
+ public static final int GL_TEXTURE_GEN_Q = 0x0C63;
+ public static final int GL_TEXTURE_GEN_R = 0x0C62;
+ public static final int GL_TEXTURE_GEN_S = 0x0C60;
+ public static final int GL_TEXTURE_GEN_T = 0x0C61;
+ public static final int GL_TEXTURE_GEQUAL_R_SGIX = 0x819D;
+ public static final int GL_TEXTURE_GREEN_SIZE = 0x805D;
+ public static final int GL_TEXTURE_GREEN_SIZE_EXT = 0x805D;
+ public static final int GL_TEXTURE_HEIGHT = 0x1001;
+ public static final int GL_TEXTURE_HI_SIZE_NV = 0x871B;
+ public static final int GL_TEXTURE_INDEX_SIZE_EXT = 0x80ED;
+ public static final int GL_TEXTURE_INTENSITY_SIZE = 0x8061;
+ public static final int GL_TEXTURE_INTENSITY_SIZE_EXT = 0x8061;
+ public static final int GL_TEXTURE_INTERNAL_FORMAT = 0x1003;
+ public static final int GL_TEXTURE_LEQUAL_R_SGIX = 0x819C;
+ public static final int GL_TEXTURE_LIGHTING_MODE_HP = 0x8167;
+ public static final int GL_TEXTURE_LIGHT_EXT = 0x8350;
+ public static final int GL_TEXTURE_LOD_BIAS_EXT = 0x8501;
+ public static final int GL_TEXTURE_LOD_BIAS_R_SGIX = 0x8190;
+ public static final int GL_TEXTURE_LOD_BIAS_S_SGIX = 0x818E;
+ public static final int GL_TEXTURE_LOD_BIAS_T_SGIX = 0x818F;
+ public static final int GL_TEXTURE_LO_SIZE_NV = 0x871C;
+ public static final int GL_TEXTURE_LUMINANCE_SIZE = 0x8060;
+ public static final int GL_TEXTURE_LUMINANCE_SIZE_EXT = 0x8060;
+ public static final int GL_TEXTURE_MAG_FILTER = 0x2800;
+ public static final int GL_TEXTURE_MAG_SIZE_NV = 0x871F;
+ public static final int GL_TEXTURE_MATERIAL_FACE_EXT = 0x8351;
+ public static final int GL_TEXTURE_MATERIAL_PARAMETER_EXT = 0x8352;
+ public static final int GL_TEXTURE_MATRIX = 0x0BA8;
+ public static final int GL_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE;
+ public static final int GL_TEXTURE_MAX_CLAMP_R_SGIX = 0x836B;
+ public static final int GL_TEXTURE_MAX_CLAMP_S_SGIX = 0x8369;
+ public static final int GL_TEXTURE_MAX_CLAMP_T_SGIX = 0x836A;
+ public static final int GL_TEXTURE_MAX_LEVEL = 0x813D;
+ public static final int GL_TEXTURE_MAX_LEVEL_SGIS = 0x813D;
+ public static final int GL_TEXTURE_MAX_LOD = 0x813B;
+ public static final int GL_TEXTURE_MAX_LOD_SGIS = 0x813B;
+ public static final int GL_TEXTURE_MIN_FILTER = 0x2801;
+ public static final int GL_TEXTURE_MIN_LOD = 0x813A;
+ public static final int GL_TEXTURE_MIN_LOD_SGIS = 0x813A;
+ public static final int GL_TEXTURE_MULTI_BUFFER_HINT_SGIX = 0x812E;
+ public static final int GL_TEXTURE_NORMAL_EXT = 0x85AF;
+ public static final int GL_TEXTURE_POST_SPECULAR_HP = 0x8168;
+ public static final int GL_TEXTURE_PRE_SPECULAR_HP = 0x8169;
+ public static final int GL_TEXTURE_PRIORITY = 0x8066;
+ public static final int GL_TEXTURE_PRIORITY_EXT = 0x8066;
+ public static final int GL_TEXTURE_RECTANGLE_NV = 0x84F5;
+ public static final int GL_TEXTURE_RED_SIZE = 0x805C;
+ public static final int GL_TEXTURE_RED_SIZE_EXT = 0x805C;
+ public static final int GL_TEXTURE_RESIDENT = 0x8067;
+ public static final int GL_TEXTURE_RESIDENT_EXT = 0x8067;
+ public static final int GL_TEXTURE_SHADER_NV = 0x86DE;
+ public static final int GL_TEXTURE_STACK_DEPTH = 0x0BA5;
+ public static final int GL_TEXTURE_TOO_LARGE_EXT = 0x8065;
+ public static final int GL_TEXTURE_WIDTH = 0x1000;
+ public static final int GL_TEXTURE_WRAP_Q_SGIS = 0x8137;
+ public static final int GL_TEXTURE_WRAP_R = 0x8072;
+ public static final int GL_TEXTURE_WRAP_R_EXT = 0x8072;
+ public static final int GL_TEXTURE_WRAP_S = 0x2802;
+ public static final int GL_TEXTURE_WRAP_T = 0x2803;
+ public static final int GL_TRACE_ALL_BITS_MESA = 0xFFFF;
+ public static final int GL_TRACE_ARRAYS_BIT_MESA = 0x0004;
+ public static final int GL_TRACE_ERRORS_BIT_MESA = 0x0020;
+ public static final int GL_TRACE_MASK_MESA = 0x8755;
+ public static final int GL_TRACE_NAME_MESA = 0x8756;
+ public static final int GL_TRACE_OPERATIONS_BIT_MESA = 0x0001;
+ public static final int GL_TRACE_PIXELS_BIT_MESA = 0x0010;
+ public static final int GL_TRACE_PRIMITIVES_BIT_MESA = 0x0002;
+ public static final int GL_TRACE_TEXTURES_BIT_MESA = 0x0008;
+ public static final int GL_TRACK_MATRIX_NV = 0x8648;
+ public static final int GL_TRACK_MATRIX_TRANSFORM_NV = 0x8649;
+ public static final int GL_TRANSFORM_BIT = 0x00001000;
+ public static final int GL_TRANSFORM_HINT_APPLE = 0x85B1;
+ public static final int GL_TRANSPOSE_COLOR_MATRIX = 0x84E6;
+ public static final int GL_TRANSPOSE_COLOR_MATRIX_ARB = 0x84E6;
+ public static final int GL_TRANSPOSE_MODELVIEW_MATRIX = 0x84E3;
+ public static final int GL_TRANSPOSE_MODELVIEW_MATRIX_ARB = 0x84E3;
+ public static final int GL_TRANSPOSE_NV = 0x862C;
+ public static final int GL_TRANSPOSE_PROJECTION_MATRIX = 0x84E4;
+ public static final int GL_TRANSPOSE_PROJECTION_MATRIX_ARB = 0x84E4;
+ public static final int GL_TRANSPOSE_TEXTURE_MATRIX = 0x84E5;
+ public static final int GL_TRANSPOSE_TEXTURE_MATRIX_ARB = 0x84E5;
+ public static final int GL_TRIANGLES = 0x0004;
+ public static final int GL_TRIANGLE_FAN = 0x0006;
+ public static final int GL_TRIANGLE_LIST_SUN = 0x81D7;
+ public static final int GL_TRIANGLE_STRIP = 0x0005;
+ public static final int GL_UNPACK_ALIGNMENT = 0x0CF5;
+ public static final int GL_UNPACK_CMYK_HINT_EXT = 0x800F;
+ public static final int GL_UNPACK_CONSTANT_DATA_SUNX = 0x81D5;
+ public static final int GL_UNPACK_IMAGE_DEPTH_SGIS = 0x8133;
+ public static final int GL_UNPACK_IMAGE_HEIGHT = 0x806E;
+ public static final int GL_UNPACK_IMAGE_HEIGHT_EXT = 0x806E;
+ public static final int GL_UNPACK_LSB_FIRST = 0x0CF1;
+ public static final int GL_UNPACK_RESAMPLE_OML = 0x8985;
+ public static final int GL_UNPACK_RESAMPLE_SGIX = 0x842D;
+ public static final int GL_UNPACK_ROW_LENGTH = 0x0CF2;
+ public static final int GL_UNPACK_SKIP_IMAGES = 0x806D;
+ public static final int GL_UNPACK_SKIP_IMAGES_EXT = 0x806D;
+ public static final int GL_UNPACK_SKIP_PIXELS = 0x0CF4;
+ public static final int GL_UNPACK_SKIP_ROWS = 0x0CF3;
+ public static final int GL_UNPACK_SKIP_VOLUMES_SGIS = 0x8132;
+ public static final int GL_UNPACK_SUBSAMPLE_RATE_SGIX = 0x85A1;
+ public static final int GL_UNPACK_SWAP_BYTES = 0x0CF0;
+ public static final int GL_UNSIGNED_BYTE = 0x1401;
+ public static final int GL_UNSIGNED_BYTE_2_3_3_REV = 0x8362;
+ public static final int GL_UNSIGNED_BYTE_3_3_2 = 0x8032;
+ public static final int GL_UNSIGNED_BYTE_3_3_2_EXT = 0x8032;
+ public static final int GL_UNSIGNED_IDENTITY_NV = 0x8536;
+ public static final int GL_UNSIGNED_INT = 0x1405;
+ public static final int GL_UNSIGNED_INT_10_10_10_2 = 0x8036;
+ public static final int GL_UNSIGNED_INT_10_10_10_2_EXT = 0x8036;
+ public static final int GL_UNSIGNED_INT_24_8_MESA = 0x8751;
+ public static final int GL_UNSIGNED_INT_24_8_NV = 0x84FA;
+ public static final int GL_UNSIGNED_INT_2_10_10_10_REV = 0x8368;
+ public static final int GL_UNSIGNED_INT_8_24_REV_MESA = 0x8752;
+ public static final int GL_UNSIGNED_INT_8_8_8_8 = 0x8035;
+ public static final int GL_UNSIGNED_INT_8_8_8_8_EXT = 0x8035;
+ public static final int GL_UNSIGNED_INT_8_8_8_8_REV = 0x8367;
+ public static final int GL_UNSIGNED_INT_8_8_S8_S8_REV_NV = 0x86DB;
+ public static final int GL_UNSIGNED_INT_S8_S8_8_8_NV = 0x86DA;
+ public static final int GL_UNSIGNED_INVERT_NV = 0x8537;
+ public static final int GL_UNSIGNED_SHORT = 0x1403;
+ public static final int GL_UNSIGNED_SHORT_15_1_MESA = 0x8753;
+ public static final int GL_UNSIGNED_SHORT_1_15_REV_MESA = 0x8754;
+ public static final int GL_UNSIGNED_SHORT_1_5_5_5_REV = 0x8366;
+ public static final int GL_UNSIGNED_SHORT_4_4_4_4 = 0x8033;
+ public static final int GL_UNSIGNED_SHORT_4_4_4_4_EXT = 0x8033;
+ public static final int GL_UNSIGNED_SHORT_4_4_4_4_REV = 0x8365;
+ public static final int GL_UNSIGNED_SHORT_5_5_5_1 = 0x8034;
+ public static final int GL_UNSIGNED_SHORT_5_5_5_1_EXT = 0x8034;
+ public static final int GL_UNSIGNED_SHORT_5_6_5 = 0x8363;
+ public static final int GL_UNSIGNED_SHORT_5_6_5_REV = 0x8364;
+ public static final int GL_V2F = 0x2A20;
+ public static final int GL_V3F = 0x2A21;
+ public static final int GL_VARIABLE_A_NV = 0x8523;
+ public static final int GL_VARIABLE_B_NV = 0x8524;
+ public static final int GL_VARIABLE_C_NV = 0x8525;
+ public static final int GL_VARIABLE_D_NV = 0x8526;
+ public static final int GL_VARIABLE_E_NV = 0x8527;
+ public static final int GL_VARIABLE_F_NV = 0x8528;
+ public static final int GL_VARIABLE_G_NV = 0x8529;
+ public static final int GL_VARIANT_ARRAY_EXT = 0x87E8;
+ public static final int GL_VARIANT_ARRAY_POINTER_EXT = 0x87E9;
+ public static final int GL_VARIANT_ARRAY_STRIDE_EXT = 0x87E6;
+ public static final int GL_VARIANT_ARRAY_TYPE_EXT = 0x87E7;
+ public static final int GL_VARIANT_DATATYPE_EXT = 0x87E5;
+ public static final int GL_VARIANT_EXT = 0x87C1;
+ public static final int GL_VARIANT_VALUE_EXT = 0x87E4;
+ public static final int GL_VECTOR_EXT = 0x87BF;
+ public static final int GL_VENDOR = 0x1F00;
+ public static final int GL_VERSION = 0x1F02;
+ public static final int GL_VERSION_1_1 = 1;
+ public static final int GL_VERSION_1_2 = 1;
+ public static final int GL_VERSION_1_3 = 1;
+ public static final int GL_VERTEX23_BIT_PGI = 0x00000004;
+ public static final int GL_VERTEX4_BIT_PGI = 0x00000008;
+ public static final int GL_VERTEX_ARRAY = 0x8074;
+ public static final int GL_VERTEX_ARRAY_COUNT_EXT = 0x807D;
+ public static final int GL_VERTEX_ARRAY_EXT = 0x8074;
+ public static final int GL_VERTEX_ARRAY_LIST_IBM = 103070;
+ public static final int GL_VERTEX_ARRAY_LIST_STRIDE_IBM = 103080;
+ public static final int GL_VERTEX_ARRAY_PARALLEL_POINTERS_INTEL = 0x83F5;
+ public static final int GL_VERTEX_ARRAY_POINTER = 0x808E;
+ public static final int GL_VERTEX_ARRAY_POINTER_EXT = 0x808E;
+ public static final int GL_VERTEX_ARRAY_RANGE_LENGTH_NV = 0x851E;
+ public static final int GL_VERTEX_ARRAY_RANGE_NV = 0x851D;
+ public static final int GL_VERTEX_ARRAY_RANGE_POINTER_NV = 0x8521;
+ public static final int GL_VERTEX_ARRAY_RANGE_VALID_NV = 0x851F;
+ public static final int GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV = 0x8533;
+ public static final int GL_VERTEX_ARRAY_SIZE = 0x807A;
+ public static final int GL_VERTEX_ARRAY_SIZE_EXT = 0x807A;
+ public static final int GL_VERTEX_ARRAY_STRIDE = 0x807C;
+ public static final int GL_VERTEX_ARRAY_STRIDE_EXT = 0x807C;
+ public static final int GL_VERTEX_ARRAY_TYPE = 0x807B;
+ public static final int GL_VERTEX_ARRAY_TYPE_EXT = 0x807B;
+ public static final int GL_VERTEX_ATTRIB_ARRAY0_NV = 0x8650;
+ public static final int GL_VERTEX_ATTRIB_ARRAY10_NV = 0x865A;
+ public static final int GL_VERTEX_ATTRIB_ARRAY11_NV = 0x865B;
+ public static final int GL_VERTEX_ATTRIB_ARRAY12_NV = 0x865C;
+ public static final int GL_VERTEX_ATTRIB_ARRAY13_NV = 0x865D;
+ public static final int GL_VERTEX_ATTRIB_ARRAY14_NV = 0x865E;
+ public static final int GL_VERTEX_ATTRIB_ARRAY15_NV = 0x865F;
+ public static final int GL_VERTEX_ATTRIB_ARRAY1_NV = 0x8651;
+ public static final int GL_VERTEX_ATTRIB_ARRAY2_NV = 0x8652;
+ public static final int GL_VERTEX_ATTRIB_ARRAY3_NV = 0x8653;
+ public static final int GL_VERTEX_ATTRIB_ARRAY4_NV = 0x8654;
+ public static final int GL_VERTEX_ATTRIB_ARRAY5_NV = 0x8655;
+ public static final int GL_VERTEX_ATTRIB_ARRAY6_NV = 0x8656;
+ public static final int GL_VERTEX_ATTRIB_ARRAY7_NV = 0x8657;
+ public static final int GL_VERTEX_ATTRIB_ARRAY8_NV = 0x8658;
+ public static final int GL_VERTEX_ATTRIB_ARRAY9_NV = 0x8659;
+ public static final int GL_VERTEX_BLEND_ARB = 0x86A7;
+ public static final int GL_VERTEX_CONSISTENT_HINT_PGI = 0x1A22B;
+ public static final int GL_VERTEX_DATA_HINT_PGI = 0x1A22A;
+ public static final int GL_VERTEX_PRECLIP_HINT_SGIX = 0x83EF;
+ public static final int GL_VERTEX_PRECLIP_SGIX = 0x83EE;
+ public static final int GL_VERTEX_PROGRAM_BINDING_NV = 0x864A;
+ public static final int GL_VERTEX_PROGRAM_NV = 0x8620;
+ public static final int GL_VERTEX_PROGRAM_POINT_SIZE_NV = 0x8642;
+ public static final int GL_VERTEX_PROGRAM_TWO_SIDE_NV = 0x8643;
+ public static final int GL_VERTEX_SHADER_BINDING_EXT = 0x8781;
+ public static final int GL_VERTEX_SHADER_EXT = 0x8780;
+ public static final int GL_VERTEX_SHADER_INSTRUCTIONS_EXT = 0x87CF;
+ public static final int GL_VERTEX_SHADER_INVARIANTS_EXT = 0x87D1;
+ public static final int GL_VERTEX_SHADER_LOCALS_EXT = 0x87D3;
+ public static final int GL_VERTEX_SHADER_LOCAL_CONSTANTS_EXT = 0x87D2;
+ public static final int GL_VERTEX_SHADER_OPTIMIZED_EXT = 0x87D4;
+ public static final int GL_VERTEX_SHADER_VARIANTS_EXT = 0x87D0;
+ public static final int GL_VERTEX_SOURCE_ATI = 0x8774;
+ public static final int GL_VERTEX_STATE_PROGRAM_NV = 0x8621;
+ public static final int GL_VERTEX_STREAM0_ATI = 0x876C;
+ public static final int GL_VERTEX_STREAM1_ATI = 0x876D;
+ public static final int GL_VERTEX_STREAM2_ATI = 0x876E;
+ public static final int GL_VERTEX_STREAM3_ATI = 0x876F;
+ public static final int GL_VERTEX_STREAM4_ATI = 0x8770;
+ public static final int GL_VERTEX_STREAM5_ATI = 0x8771;
+ public static final int GL_VERTEX_STREAM6_ATI = 0x8772;
+ public static final int GL_VERTEX_STREAM7_ATI = 0x8773;
+ public static final int GL_VERTEX_WEIGHTING_EXT = 0x8509;
+ public static final int GL_VERTEX_WEIGHT_ARRAY_EXT = 0x850C;
+ public static final int GL_VERTEX_WEIGHT_ARRAY_POINTER_EXT = 0x8510;
+ public static final int GL_VERTEX_WEIGHT_ARRAY_SIZE_EXT = 0x850D;
+ public static final int GL_VERTEX_WEIGHT_ARRAY_STRIDE_EXT = 0x850F;
+ public static final int GL_VERTEX_WEIGHT_ARRAY_TYPE_EXT = 0x850E;
+ public static final int GL_VIBRANCE_BIAS_NV = 0x8719;
+ public static final int GL_VIBRANCE_SCALE_NV = 0x8713;
+ public static final int GL_VIEWPORT = 0x0BA2;
+ public static final int GL_VIEWPORT_BIT = 0x00000800;
+ public static final int GL_WEIGHT_ARRAY_ARB = 0x86AD;
+ public static final int GL_WEIGHT_ARRAY_POINTER_ARB = 0x86AC;
+ public static final int GL_WEIGHT_ARRAY_SIZE_ARB = 0x86AB;
+ public static final int GL_WEIGHT_ARRAY_STRIDE_ARB = 0x86AA;
+ public static final int GL_WEIGHT_ARRAY_TYPE_ARB = 0x86A9;
+ public static final int GL_WEIGHT_SUM_UNITY_ARB = 0x86A6;
+ public static final int GL_WIDE_LINE_HINT_PGI = 0x1A222;
+ public static final int GL_WIN_phong_shading = 1;
+ public static final int GL_WIN_specular_fog = 1;
+ public static final int GL_WRAP_BORDER = 0x8152;
+ public static final int GL_WRAP_BORDER_SUN = 0x81D4;
+ public static final int GL_W_EXT = 0x87D8;
+ public static final int GL_XOR = 0x1506;
+ public static final int GL_X_EXT = 0x87D5;
+ public static final int GL_YCRCBA_SGIX = 0x8319;
+ public static final int GL_YCRCB_422_SGIX = 0x81BB;
+ public static final int GL_YCRCB_444_SGIX = 0x81BC;
+ public static final int GL_YCRCB_SGIX = 0x8318;
+ public static final int GL_Y_EXT = 0x87D6;
+ public static final int GL_ZERO = 0x0;
+ public static final int GL_ZOOM_X = 0x0D16;
+ public static final int GL_ZOOM_Y = 0x0D17;
+ public static final int GL_Z_EXT = 0x87D7;
+/* C2J Parser Version 3.0: Java program parsed successfully. */
} diff --git a/gl4java/GLFunc.java b/gl4java/GLFunc.java index 396c615..957da37 100644 --- a/gl4java/GLFunc.java +++ b/gl4java/GLFunc.java @@ -31,995 +31,996 @@ public String getClassVendor ( ) ; public String getClassVersion ( ) ;
public static final String[] GL_PROC_NAMES = {
+ "glAllocateMemoryNV",
/** * C2J Parser Version 3.0 * Jausoft - Sven Goethel Software Development * Reading from file: gl-proto-auto.orig.h . . . * Destination-Class: gl4java_GLFuncJauJNI ! */ - - "glClearIndex", - "glClearColor", - "glClear", - "glIndexMask", - "glColorMask", - "glAlphaFunc", - "glBlendFunc", - "glLogicOp", - "glCullFace", - "glFrontFace", - "glPointSize", - "glLineWidth", - "glLineStipple", - "glPolygonMode", - "glPolygonOffset", - "glPolygonStipple", - "glGetPolygonStipple", - "glEdgeFlag", - "glEdgeFlagv", - "glScissor", - "glClipPlane", - "glGetClipPlane", - "glDrawBuffer", - "glReadBuffer", - "glEnable", - "glDisable", - "glIsEnabled", - "glEnableClientState", - "glDisableClientState", - "glGetBooleanv", - "glGetDoublev", - "glGetFloatv", - "glGetIntegerv", - "glPushAttrib", - "glPopAttrib", - "glPushClientAttrib", - "glPopClientAttrib", - "glRenderMode", - "glGetError", - "glFinish", - "glFlush", - "glHint", - "glClearDepth", - "glDepthFunc", - "glDepthMask", - "glDepthRange", - "glClearAccum", - "glAccum", - "glMatrixMode", - "glOrtho", - "glFrustum", - "glViewport", - "glPushMatrix", - "glPopMatrix", - "glLoadIdentity", - "glLoadMatrixd", - "glLoadMatrixf", - "glMultMatrixd", - "glMultMatrixf", - "glRotated", - "glRotatef", - "glScaled", - "glScalef", - "glTranslated", - "glTranslatef", - "glIsList", - "glDeleteLists", - "glGenLists", - "glNewList", - "glEndList", - "glCallList", - "glCallLists", - "glListBase", - "glBegin", - "glEnd", - "glVertex2d", - "glVertex2f", - "glVertex2i", - "glVertex2s", - "glVertex3d", - "glVertex3f", - "glVertex3i", - "glVertex3s", - "glVertex4d", - "glVertex4f", - "glVertex4i", - "glVertex4s", - "glVertex2dv", - "glVertex2fv", - "glVertex2iv", - "glVertex2sv", - "glVertex3dv", - "glVertex3fv", - "glVertex3iv", - "glVertex3sv", - "glVertex4dv", - "glVertex4fv", - "glVertex4iv", - "glVertex4sv", - "glNormal3b", - "glNormal3d", - "glNormal3f", - "glNormal3i", - "glNormal3s", - "glNormal3bv", - "glNormal3dv", - "glNormal3fv", - "glNormal3iv", - "glNormal3sv", - "glIndexd", - "glIndexf", - "glIndexi", - "glIndexs", - "glIndexub", - "glIndexdv", - "glIndexfv", - "glIndexiv", - "glIndexsv", - "glIndexubv", - "glColor3b", - "glColor3d", - "glColor3f", - "glColor3i", - "glColor3s", - "glColor3ub", - "glColor3ui", - "glColor3us", - "glColor4b", - "glColor4d", - "glColor4f", - "glColor4i", - "glColor4s", - "glColor4ub", - "glColor4ui", - "glColor4us", - "glColor3bv", - "glColor3dv", - "glColor3fv", - "glColor3iv", - "glColor3sv", - "glColor3ubv", - "glColor3uiv", - "glColor3usv", - "glColor4bv", - "glColor4dv", - "glColor4fv", - "glColor4iv", - "glColor4sv", - "glColor4ubv", - "glColor4uiv", - "glColor4usv", - "glTexCoord1d", - "glTexCoord1f", - "glTexCoord1i", - "glTexCoord1s", - "glTexCoord2d", - "glTexCoord2f", - "glTexCoord2i", - "glTexCoord2s", - "glTexCoord3d", - "glTexCoord3f", - "glTexCoord3i", - "glTexCoord3s", - "glTexCoord4d", - "glTexCoord4f", - "glTexCoord4i", - "glTexCoord4s", - "glTexCoord1dv", - "glTexCoord1fv", - "glTexCoord1iv", - "glTexCoord1sv", - "glTexCoord2dv", - "glTexCoord2fv", - "glTexCoord2iv", - "glTexCoord2sv", - "glTexCoord3dv", - "glTexCoord3fv", - "glTexCoord3iv", - "glTexCoord3sv", - "glTexCoord4dv", - "glTexCoord4fv", - "glTexCoord4iv", - "glTexCoord4sv", - "glRasterPos2d", - "glRasterPos2f", - "glRasterPos2i", - "glRasterPos2s", - "glRasterPos3d", - "glRasterPos3f", - "glRasterPos3i", - "glRasterPos3s", - "glRasterPos4d", - "glRasterPos4f", - "glRasterPos4i", - "glRasterPos4s", - "glRasterPos2dv", - "glRasterPos2fv", - "glRasterPos2iv", - "glRasterPos2sv", - "glRasterPos3dv", - "glRasterPos3fv", - "glRasterPos3iv", - "glRasterPos3sv", - "glRasterPos4dv", - "glRasterPos4fv", - "glRasterPos4iv", - "glRasterPos4sv", - "glRectd", - "glRectf", - "glRecti", - "glRects", - "glRectdv", - "glRectfv", - "glRectiv", - "glRectsv", - "glVertexPointer", - "glNormalPointer", - "glColorPointer", - "glIndexPointer", - "glTexCoordPointer", - "glEdgeFlagPointer", - "glGetPointerv", - "glArrayElement", - "glDrawArrays", - "glDrawElements", - "glInterleavedArrays", - "glShadeModel", - "glLightf", - "glLighti", - "glLightfv", - "glLightiv", - "glGetLightfv", - "glGetLightiv", - "glLightModelf", - "glLightModeli", - "glLightModelfv", - "glLightModeliv", - "glMaterialf", - "glMateriali", - "glMaterialfv", - "glMaterialiv", - "glGetMaterialfv", - "glGetMaterialiv", - "glColorMaterial", - "glPixelZoom", - "glPixelStoref", - "glPixelStorei", - "glPixelTransferf", - "glPixelTransferi", - "glPixelMapfv", - "glPixelMapuiv", - "glPixelMapusv", - "glGetPixelMapfv", - "glGetPixelMapuiv", - "glGetPixelMapusv", - "glBitmap", - "glReadPixels", - "glDrawPixels", - "glCopyPixels", - "glStencilFunc", - "glStencilMask", - "glStencilOp", - "glClearStencil", - "glTexGend", - "glTexGenf", - "glTexGeni", - "glTexGendv", - "glTexGenfv", - "glTexGeniv", - "glGetTexGendv", - "glGetTexGenfv", - "glGetTexGeniv", - "glTexEnvf", - "glTexEnvi", - "glTexEnvfv", - "glTexEnviv", - "glGetTexEnvfv", - "glGetTexEnviv", - "glTexParameterf", - "glTexParameteri", - "glTexParameterfv", - "glTexParameteriv", - "glGetTexParameterfv", - "glGetTexParameteriv", - "glGetTexLevelParameterfv", - "glGetTexLevelParameteriv", - "glTexImage1D", - "glTexImage2D", - "glGetTexImage", - "glGenTextures", - "glDeleteTextures", - "glBindTexture", - "glPrioritizeTextures", - "glAreTexturesResident", - "glIsTexture", - "glTexSubImage1D", - "glTexSubImage2D", - "glCopyTexImage1D", - "glCopyTexImage2D", - "glCopyTexSubImage1D", - "glCopyTexSubImage2D", - "glMap1d", - "glMap1f", - "glMap2d", - "glMap2f", - "glGetMapdv", - "glGetMapfv", - "glGetMapiv", - "glEvalCoord1d", - "glEvalCoord1f", - "glEvalCoord1dv", - "glEvalCoord1fv", - "glEvalCoord2d", - "glEvalCoord2f", - "glEvalCoord2dv", - "glEvalCoord2fv", - "glMapGrid1d", - "glMapGrid1f", - "glMapGrid2d", - "glMapGrid2f", - "glEvalPoint1", - "glEvalPoint2", - "glEvalMesh1", - "glEvalMesh2", - "glFogf", - "glFogi", - "glFogfv", - "glFogiv", - "glFeedbackBuffer", - "glPassThrough", - "glSelectBuffer", - "glInitNames", - "glLoadName", - "glPushName", - "glPopName", - "glDrawRangeElements", - "glTexImage3D", - "glTexSubImage3D", - "glCopyTexSubImage3D", - "glColorTable", - "glColorSubTable", - "glColorTableParameteriv", - "glColorTableParameterfv", - "glCopyColorSubTable", - "glCopyColorTable", - "glGetColorTable", - "glGetColorTableParameterfv", - "glGetColorTableParameteriv", - "glBlendEquation", - "glBlendColor", - "glHistogram", - "glResetHistogram", - "glGetHistogram", - "glGetHistogramParameterfv", - "glGetHistogramParameteriv", - "glMinmax", - "glResetMinmax", - "glGetMinmax", - "glGetMinmaxParameterfv", - "glGetMinmaxParameteriv", - "glConvolutionFilter1D", - "glConvolutionFilter2D", - "glConvolutionParameterf", - "glConvolutionParameterfv", - "glConvolutionParameteri", - "glConvolutionParameteriv", - "glCopyConvolutionFilter1D", - "glCopyConvolutionFilter2D", - "glGetConvolutionFilter", - "glGetConvolutionParameterfv", - "glGetConvolutionParameteriv", - "glSeparableFilter2D", - "glGetSeparableFilter", - "glActiveTexture", - "glClientActiveTexture", - "glCompressedTexImage1D", - "glCompressedTexImage2D", - "glCompressedTexImage3D", - "glCompressedTexSubImage1D", - "glCompressedTexSubImage2D", - "glCompressedTexSubImage3D", - "glGetCompressedTexImage", - "glMultiTexCoord1d", - "glMultiTexCoord1dv", - "glMultiTexCoord1f", - "glMultiTexCoord1fv", - "glMultiTexCoord1i", - "glMultiTexCoord1iv", - "glMultiTexCoord1s", - "glMultiTexCoord1sv", - "glMultiTexCoord2d", - "glMultiTexCoord2dv", - "glMultiTexCoord2f", - "glMultiTexCoord2fv", - "glMultiTexCoord2i", - "glMultiTexCoord2iv", - "glMultiTexCoord2s", - "glMultiTexCoord2sv", - "glMultiTexCoord3d", - "glMultiTexCoord3dv", - "glMultiTexCoord3f", - "glMultiTexCoord3fv", - "glMultiTexCoord3i", - "glMultiTexCoord3iv", - "glMultiTexCoord3s", - "glMultiTexCoord3sv", - "glMultiTexCoord4d", - "glMultiTexCoord4dv", - "glMultiTexCoord4f", - "glMultiTexCoord4fv", - "glMultiTexCoord4i", - "glMultiTexCoord4iv", - "glMultiTexCoord4s", - "glMultiTexCoord4sv", - "glLoadTransposeMatrixd", - "glLoadTransposeMatrixf", - "glMultTransposeMatrixd", - "glMultTransposeMatrixf", - "glSampleCoverage", - "glSamplePass", - "glActiveTextureARB", - "glClientActiveTextureARB", - "glMultiTexCoord1dARB", - "glMultiTexCoord1dvARB", - "glMultiTexCoord1fARB", - "glMultiTexCoord1fvARB", - "glMultiTexCoord1iARB", - "glMultiTexCoord1ivARB", - "glMultiTexCoord1sARB", - "glMultiTexCoord1svARB", - "glMultiTexCoord2dARB", - "glMultiTexCoord2dvARB", - "glMultiTexCoord2fARB", - "glMultiTexCoord2fvARB", - "glMultiTexCoord2iARB", - "glMultiTexCoord2ivARB", - "glMultiTexCoord2sARB", - "glMultiTexCoord2svARB", - "glMultiTexCoord3dARB", - "glMultiTexCoord3dvARB", - "glMultiTexCoord3fARB", - "glMultiTexCoord3fvARB", - "glMultiTexCoord3iARB", - "glMultiTexCoord3ivARB", - "glMultiTexCoord3sARB", - "glMultiTexCoord3svARB", - "glMultiTexCoord4dARB", - "glMultiTexCoord4dvARB", - "glMultiTexCoord4fARB", - "glMultiTexCoord4fvARB", - "glMultiTexCoord4iARB", - "glMultiTexCoord4ivARB", - "glMultiTexCoord4sARB", - "glMultiTexCoord4svARB", - "glBlendColorEXT", - "glPolygonOffsetEXT", - "glTexImage3DEXT", - "glTexSubImage3DEXT", - "glCopyTexSubImage3DEXT", - "glGenTexturesEXT", - "glDeleteTexturesEXT", - "glBindTextureEXT", - "glPrioritizeTexturesEXT", - "glAreTexturesResidentEXT", - "glIsTextureEXT", - "glVertexPointerEXT", - "glNormalPointerEXT", - "glColorPointerEXT", - "glIndexPointerEXT", - "glTexCoordPointerEXT", - "glEdgeFlagPointerEXT", - "glGetPointervEXT", - "glArrayElementEXT", - "glDrawArraysEXT", - "glBlendEquationEXT", - "glPointParameterfEXT", - "glPointParameterfvEXT", - "glPointParameterfSGIS", - "glPointParameterfvSGIS", - "glColorTableEXT", - "glColorSubTableEXT", - "glGetColorTableEXT", - "glGetColorTableParameterfvEXT", - "glGetColorTableParameterivEXT", - "glLockArraysEXT", - "glUnlockArraysEXT", - "glLoadTransposeMatrixfARB", - "glLoadTransposeMatrixdARB", - "glMultTransposeMatrixfARB", - "glMultTransposeMatrixdARB", - "glSampleCoverageARB", - "glCompressedTexImage3DARB", - "glCompressedTexImage2DARB", - "glCompressedTexImage1DARB", - "glCompressedTexSubImage3DARB", - "glCompressedTexSubImage2DARB", - "glCompressedTexSubImage1DARB", - "glGetCompressedTexImageARB", - "glWeightbvARB", - "glWeightsvARB", - "glWeightivARB", - "glWeightfvARB", - "glWeightdvARB", - "glWeightubvARB", - "glWeightusvARB", - "glWeightuivARB", - "glWeightPointerARB", - "glVertexBlendARB", - "glCurrentPaletteMatrixARB", - "glMatrixIndexubvARB", - "glMatrixIndexusvARB", - "glMatrixIndexuivARB", - "glMatrixIndexPointerARB", - "glGetTexFilterFuncSGIS", - "glTexFilterFuncSGIS", - "glTexSubImage1DEXT", - "glTexSubImage2DEXT", - "glCopyTexImage1DEXT", - "glCopyTexImage2DEXT", - "glCopyTexSubImage1DEXT", - "glCopyTexSubImage2DEXT", - "glGetHistogramEXT", - "glGetHistogramParameterfvEXT", - "glGetHistogramParameterivEXT", - "glGetMinmaxEXT", - "glGetMinmaxParameterfvEXT", - "glGetMinmaxParameterivEXT", - "glHistogramEXT", - "glMinmaxEXT", - "glResetHistogramEXT", - "glResetMinmaxEXT", - "glConvolutionFilter1DEXT", - "glConvolutionFilter2DEXT", - "glConvolutionParameterfEXT", - "glConvolutionParameterfvEXT", - "glConvolutionParameteriEXT", - "glConvolutionParameterivEXT", - "glCopyConvolutionFilter1DEXT", - "glCopyConvolutionFilter2DEXT", - "glGetConvolutionFilterEXT", - "glGetConvolutionParameterfvEXT", - "glGetConvolutionParameterivEXT", - "glGetSeparableFilterEXT", - "glSeparableFilter2DEXT", - "glColorTableSGI", - "glColorTableParameterfvSGI", - "glColorTableParameterivSGI", - "glCopyColorTableSGI", - "glGetColorTableSGI", - "glGetColorTableParameterfvSGI", - "glGetColorTableParameterivSGI", - "glPixelTexGenSGIX", - "glPixelTexGenParameteriSGIS", - "glPixelTexGenParameterivSGIS", - "glPixelTexGenParameterfSGIS", - "glPixelTexGenParameterfvSGIS", - "glGetPixelTexGenParameterivSGIS", - "glGetPixelTexGenParameterfvSGIS", - "glTexImage4DSGIS", - "glTexSubImage4DSGIS", - "glDetailTexFuncSGIS", - "glGetDetailTexFuncSGIS", - "glSharpenTexFuncSGIS", - "glGetSharpenTexFuncSGIS", - "glSampleMaskSGIS", - "glSamplePatternSGIS", - "glSpriteParameterfSGIX", - "glSpriteParameterfvSGIX", - "glSpriteParameteriSGIX", - "glSpriteParameterivSGIX", - "glPointParameterfARB", - "glPointParameterfvARB", - "glGetInstrumentsSGIX", - "glInstrumentsBufferSGIX", - "glPollInstrumentsSGIX", - "glReadInstrumentsSGIX", - "glStartInstrumentsSGIX", - "glStopInstrumentsSGIX", - "glFrameZoomSGIX", - "glTagSampleBufferSGIX", - "glDeformationMap3dSGIX", - "glDeformationMap3fSGIX", - "glDeformSGIX", - "glLoadIdentityDeformationMapSGIX", - "glReferencePlaneSGIX", - "glFlushRasterSGIX", - "glFogFuncSGIS", - "glGetFogFuncSGIS", - "glImageTransformParameteriHP", - "glImageTransformParameterfHP", - "glImageTransformParameterivHP", - "glImageTransformParameterfvHP", - "glGetImageTransformParameterivHP", - "glGetImageTransformParameterfvHP", - "glCopyColorSubTableEXT", - "glHintPGI", - "glGetListParameterfvSGIX", - "glGetListParameterivSGIX", - "glListParameterfSGIX", - "glListParameterfvSGIX", - "glListParameteriSGIX", - "glListParameterivSGIX", - "glIndexMaterialEXT", - "glIndexFuncEXT", - "glCullParameterdvEXT", - "glCullParameterfvEXT", - "glFragmentColorMaterialSGIX", - "glFragmentLightfSGIX", - "glFragmentLightfvSGIX", - "glFragmentLightiSGIX", - "glFragmentLightivSGIX", - "glFragmentLightModelfSGIX", - "glFragmentLightModelfvSGIX", - "glFragmentLightModeliSGIX", - "glFragmentLightModelivSGIX", - "glFragmentMaterialfSGIX", - "glFragmentMaterialfvSGIX", - "glFragmentMaterialiSGIX", - "glFragmentMaterialivSGIX", - "glGetFragmentLightfvSGIX", - "glGetFragmentLightivSGIX", - "glGetFragmentMaterialfvSGIX", - "glGetFragmentMaterialivSGIX", - "glLightEnviSGIX", - "glDrawRangeElementsEXT", - "glApplyTextureEXT", - "glTextureLightEXT", - "glTextureMaterialEXT", - "glAsyncMarkerSGIX", - "glFinishAsyncSGIX", - "glPollAsyncSGIX", - "glGenAsyncMarkersSGIX", - "glDeleteAsyncMarkersSGIX", - "glIsAsyncMarkerSGIX", - "glVertexPointervINTEL", - "glNormalPointervINTEL", - "glColorPointervINTEL", - "glTexCoordPointervINTEL", - "glPixelTransformParameteriEXT", - "glPixelTransformParameterfEXT", - "glPixelTransformParameterivEXT", - "glPixelTransformParameterfvEXT", - "glSecondaryColor3bEXT", - "glSecondaryColor3bvEXT", - "glSecondaryColor3dEXT", - "glSecondaryColor3dvEXT", - "glSecondaryColor3fEXT", - "glSecondaryColor3fvEXT", - "glSecondaryColor3iEXT", - "glSecondaryColor3ivEXT", - "glSecondaryColor3sEXT", - "glSecondaryColor3svEXT", - "glSecondaryColor3ubEXT", - "glSecondaryColor3ubvEXT", - "glSecondaryColor3uiEXT", - "glSecondaryColor3uivEXT", - "glSecondaryColor3usEXT", - "glSecondaryColor3usvEXT", - "glSecondaryColorPointerEXT", - "glTextureNormalEXT", - "glMultiDrawArraysEXT", - "glMultiDrawElementsEXT", - "glFogCoordfEXT", - "glFogCoordfvEXT", - "glFogCoorddEXT", - "glFogCoorddvEXT", - "glFogCoordPointerEXT", - "glTangent3bEXT", - "glTangent3bvEXT", - "glTangent3dEXT", - "glTangent3dvEXT", - "glTangent3fEXT", - "glTangent3fvEXT", - "glTangent3iEXT", - "glTangent3ivEXT", - "glTangent3sEXT", - "glTangent3svEXT", - "glBinormal3bEXT", - "glBinormal3bvEXT", - "glBinormal3dEXT", - "glBinormal3dvEXT", - "glBinormal3fEXT", - "glBinormal3fvEXT", - "glBinormal3iEXT", - "glBinormal3ivEXT", - "glBinormal3sEXT", - "glBinormal3svEXT", - "glTangentPointerEXT", - "glBinormalPointerEXT", - "glFinishTextureSUNX", - "glGlobalAlphaFactorbSUN", - "glGlobalAlphaFactorsSUN", - "glGlobalAlphaFactoriSUN", - "glGlobalAlphaFactorfSUN", - "glGlobalAlphaFactordSUN", - "glGlobalAlphaFactorubSUN", - "glGlobalAlphaFactorusSUN", - "glGlobalAlphaFactoruiSUN", - "glReplacementCodeuiSUN", - "glReplacementCodeusSUN", - "glReplacementCodeubSUN", - "glReplacementCodeuivSUN", - "glReplacementCodeusvSUN", - "glReplacementCodeubvSUN", - "glReplacementCodePointerSUN", - "glColor4ubVertex2fSUN", - "glColor4ubVertex2fvSUN", - "glColor4ubVertex3fSUN", - "glColor4ubVertex3fvSUN", - "glColor3fVertex3fSUN", - "glColor3fVertex3fvSUN", - "glNormal3fVertex3fSUN", - "glNormal3fVertex3fvSUN", - "glColor4fNormal3fVertex3fSUN", - "glColor4fNormal3fVertex3fvSUN", - "glTexCoord2fVertex3fSUN", - "glTexCoord2fVertex3fvSUN", - "glTexCoord4fVertex4fSUN", - "glTexCoord4fVertex4fvSUN", - "glTexCoord2fColor4ubVertex3fSUN", - "glTexCoord2fColor4ubVertex3fvSUN", - "glTexCoord2fColor3fVertex3fSUN", - "glTexCoord2fColor3fVertex3fvSUN", - "glTexCoord2fNormal3fVertex3fSUN", - "glTexCoord2fNormal3fVertex3fvSUN", - "glTexCoord2fColor4fNormal3fVertex3fSUN", - "glTexCoord2fColor4fNormal3fVertex3fvSUN", - "glTexCoord4fColor4fNormal3fVertex4fSUN", - "glTexCoord4fColor4fNormal3fVertex4fvSUN", - "glReplacementCodeuiVertex3fSUN", - "glReplacementCodeuiVertex3fvSUN", - "glReplacementCodeuiColor4ubVertex3fSUN", - "glReplacementCodeuiColor4ubVertex3fvSUN", - "glReplacementCodeuiColor3fVertex3fSUN", - "glReplacementCodeuiColor3fVertex3fvSUN", - "glReplacementCodeuiNormal3fVertex3fSUN", - "glReplacementCodeuiNormal3fVertex3fvSUN", - "glReplacementCodeuiColor4fNormal3fVertex3fSUN", - "glReplacementCodeuiColor4fNormal3fVertex3fvSUN", - "glReplacementCodeuiTexCoord2fVertex3fSUN", - "glReplacementCodeuiTexCoord2fVertex3fvSUN", - "glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN", - "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN", - "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN", - "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN", - "glBlendFuncSeparateEXT", - "glBlendFuncSeparateINGR", - "glVertexWeightfEXT", - "glVertexWeightfvEXT", - "glVertexWeightPointerEXT", - "glFlushVertexArrayRangeNV", - "glVertexArrayRangeNV", - "glCombinerParameterfvNV", - "glCombinerParameterfNV", - "glCombinerParameterivNV", - "glCombinerParameteriNV", - "glCombinerInputNV", - "glCombinerOutputNV", - "glFinalCombinerInputNV", - "glGetCombinerInputParameterfvNV", - "glGetCombinerInputParameterivNV", - "glGetCombinerOutputParameterfvNV", - "glGetCombinerOutputParameterivNV", - "glGetFinalCombinerInputParameterfvNV", - "glGetFinalCombinerInputParameterivNV", - "glMultiModeDrawArraysIBM", - "glMultiModeDrawElementsIBM", - "glColorPointerListIBM", - "glSecondaryColorPointerListIBM", - "glEdgeFlagPointerListIBM", - "glFogCoordPointerListIBM", - "glIndexPointerListIBM", - "glNormalPointerListIBM", - "glTexCoordPointerListIBM", - "glVertexPointerListIBM", - "glTbufferMask3DFX", - "glSampleMaskEXT", - "glSamplePatternEXT", - "glTextureColorMaskSGIS", - "glIglooInterfaceSGIX", - "glGenFencesNV", - "glDeleteFencesNV", - "glSetFenceNV", - "glTestFenceNV", - "glFinishFenceNV", - "glIsFenceNV", - "glGetFenceivNV", - "glMapControlPointsNV", - "glMapParameterivNV", - "glMapParameterfvNV", - "glGetMapControlPointsNV", - "glGetMapParameterivNV", - "glGetMapParameterfvNV", - "glGetMapAttribParameterivNV", - "glGetMapAttribParameterfvNV", - "glEvalMapsNV", - "glCombinerStageParameterfvNV", - "glGetCombinerStageParameterfvNV", - "glBindProgramNV", - "glDeleteProgramsNV", - "glExecuteProgramNV", - "glGenProgramsNV", - "glAreProgramsResidentNV", - "glRequestResidentProgramsNV", - "glGetProgramParameterfvNV", - "glGetProgramParameterdvNV", - "glGetProgramivNV", - "glGetProgramStringNV", - "glGetTrackMatrixivNV", - "glGetVertexAttribdvNV", - "glGetVertexAttribfvNV", - "glGetVertexAttribivNV", - "glGetVertexAttribPointervNV", - "glIsProgramNV", - "glLoadProgramNV", - "glProgramParameter4fNV", - "glProgramParameter4dNV", - "glProgramParameter4dvNV", - "glProgramParameter4fvNV", - "glProgramParameters4dvNV", - "glProgramParameters4fvNV", - "glTrackMatrixNV", - "glVertexAttribPointerNV", - "glVertexAttrib1sNV", - "glVertexAttrib1fNV", - "glVertexAttrib1dNV", - "glVertexAttrib2sNV", - "glVertexAttrib2fNV", - "glVertexAttrib2dNV", - "glVertexAttrib3sNV", - "glVertexAttrib3fNV", - "glVertexAttrib3dNV", - "glVertexAttrib4sNV", - "glVertexAttrib4fNV", - "glVertexAttrib4dNV", - "glVertexAttrib4ubNV", - "glVertexAttrib1svNV", - "glVertexAttrib1fvNV", - "glVertexAttrib1dvNV", - "glVertexAttrib2svNV", - "glVertexAttrib2fvNV", - "glVertexAttrib2dvNV", - "glVertexAttrib3svNV", - "glVertexAttrib3fvNV", - "glVertexAttrib3dvNV", - "glVertexAttrib4svNV", - "glVertexAttrib4fvNV", - "glVertexAttrib4dvNV", - "glVertexAttrib4ubvNV", - "glVertexAttribs1svNV", - "glVertexAttribs1fvNV", - "glVertexAttribs1dvNV", - "glVertexAttribs2svNV", - "glVertexAttribs2fvNV", - "glVertexAttribs2dvNV", - "glVertexAttribs3svNV", - "glVertexAttribs3fvNV", - "glVertexAttribs3dvNV", - "glVertexAttribs4svNV", - "glVertexAttribs4fvNV", - "glVertexAttribs4dvNV", - "glVertexAttribs4ubvNV", - "glTexBumpParameterivATI", - "glTexBumpParameterfvATI", - "glGetTexBumpParameterivATI", - "glGetTexBumpParameterfvATI", - "glGenFragmentShadersATI", - "glBindFragmentShaderATI", - "glDeleteFragmentShaderATI", - "glBeginFragmentShaderATI", - "glEndFragmentShaderATI", - "glPassTexCoordATI", - "glSampleMapATI", - "glColorFragmentOp1ATI", - "glColorFragmentOp2ATI", - "glColorFragmentOp3ATI", - "glAlphaFragmentOp1ATI", - "glAlphaFragmentOp2ATI", - "glAlphaFragmentOp3ATI", - "glSetFragmentShaderConstantATI", - "glPNTrianglesiATI", - "glPNTrianglesfATI", - "glNewObjectBufferATI", - "glIsObjectBufferATI", - "glUpdateObjectBufferATI", - "glGetObjectBufferfvATI", - "glGetObjectBufferivATI", - "glDeleteObjectBufferATI", - "glArrayObjectATI", - "glGetArrayObjectfvATI", - "glGetArrayObjectivATI", - "glVariantArrayObjectATI", - "glGetVariantArrayObjectfvATI", - "glGetVariantArrayObjectivATI", - "glBeginVertexShaderEXT", - "glEndVertexShaderEXT", - "glBindVertexShaderEXT", - "glGenVertexShadersEXT", - "glDeleteVertexShaderEXT", - "glShaderOp1EXT", - "glShaderOp2EXT", - "glShaderOp3EXT", - "glSwizzleEXT", - "glWriteMaskEXT", - "glInsertComponentEXT", - "glExtractComponentEXT", - "glGenSymbolsEXT", - "glSetInvariantEXT", - "glSetLocalConstantEXT", - "glVariantbvEXT", - "glVariantsvEXT", - "glVariantivEXT", - "glVariantfvEXT", - "glVariantdvEXT", - "glVariantubvEXT", - "glVariantusvEXT", - "glVariantuivEXT", - "glVariantPointerEXT", - "glEnableVariantClientStateEXT", - "glDisableVariantClientStateEXT", - "glBindLightParameterEXT", - "glBindMaterialParameterEXT", - "glBindTexGenParameterEXT", - "glBindTextureUnitParameterEXT", - "glBindParameterEXT", - "glIsVariantEnabledEXT", - "glGetVariantBooleanvEXT", - "glGetVariantIntegervEXT", - "glGetVariantFloatvEXT", - "glGetVariantPointervEXT", - "glGetInvariantBooleanvEXT", - "glGetInvariantIntegervEXT", - "glGetInvariantFloatvEXT", - "glGetLocalConstantBooleanvEXT", - "glGetLocalConstantIntegervEXT", - "glGetLocalConstantFloatvEXT", - "glVertexStream1s", - "glVertexStream1sv", - "glVertexStream1i", - "glVertexStream1iv", - "glVertexStream1f", - "glVertexStream1fv", - "glVertexStream1d", - "glVertexStream1dv", - "glVertexStream2s", - "glVertexStream2sv", - "glVertexStream2i", - "glVertexStream2iv", - "glVertexStream2f", - "glVertexStream2fv", - "glVertexStream2d", - "glVertexStream2dv", - "glVertexStream3s", - "glVertexStream3sv", - "glVertexStream3i", - "glVertexStream3iv", - "glVertexStream3f", - "glVertexStream3fv", - "glVertexStream3d", - "glVertexStream3dv", - "glVertexStream4s", - "glVertexStream4sv", - "glVertexStream4i", - "glVertexStream4iv", - "glVertexStream4f", - "glVertexStream4fv", - "glVertexStream4d", - "glVertexStream4dv", - "glNormalStream3b", - "glNormalStream3bv", - "glNormalStream3s", - "glNormalStream3sv", - "glNormalStream3i", - "glNormalStream3iv", - "glNormalStream3f", - "glNormalStream3fv", - "glNormalStream3d", - "glNormalStream3dv", - "glClientActiveVertexStream", - "glVertexBlendEnvi", - "glVertexBlendEnvf", -/* C2J Parser Version 3.0: Java program parsed successfully. */ +
+ "glClearIndex",
+ "glClearColor",
+ "glClear",
+ "glIndexMask",
+ "glColorMask",
+ "glAlphaFunc",
+ "glBlendFunc",
+ "glLogicOp",
+ "glCullFace",
+ "glFrontFace",
+ "glPointSize",
+ "glLineWidth",
+ "glLineStipple",
+ "glPolygonMode",
+ "glPolygonOffset",
+ "glPolygonStipple",
+ "glGetPolygonStipple",
+ "glEdgeFlag",
+ "glEdgeFlagv",
+ "glScissor",
+ "glClipPlane",
+ "glGetClipPlane",
+ "glDrawBuffer",
+ "glReadBuffer",
+ "glEnable",
+ "glDisable",
+ "glIsEnabled",
+ "glEnableClientState",
+ "glDisableClientState",
+ "glGetBooleanv",
+ "glGetDoublev",
+ "glGetFloatv",
+ "glGetIntegerv",
+ "glPushAttrib",
+ "glPopAttrib",
+ "glPushClientAttrib",
+ "glPopClientAttrib",
+ "glRenderMode",
+ "glGetError",
+ "glFinish",
+ "glFlush",
+ "glHint",
+ "glClearDepth",
+ "glDepthFunc",
+ "glDepthMask",
+ "glDepthRange",
+ "glClearAccum",
+ "glAccum",
+ "glMatrixMode",
+ "glOrtho",
+ "glFrustum",
+ "glViewport",
+ "glPushMatrix",
+ "glPopMatrix",
+ "glLoadIdentity",
+ "glLoadMatrixd",
+ "glLoadMatrixf",
+ "glMultMatrixd",
+ "glMultMatrixf",
+ "glRotated",
+ "glRotatef",
+ "glScaled",
+ "glScalef",
+ "glTranslated",
+ "glTranslatef",
+ "glIsList",
+ "glDeleteLists",
+ "glGenLists",
+ "glNewList",
+ "glEndList",
+ "glCallList",
+ "glCallLists",
+ "glListBase",
+ "glBegin",
+ "glEnd",
+ "glVertex2d",
+ "glVertex2f",
+ "glVertex2i",
+ "glVertex2s",
+ "glVertex3d",
+ "glVertex3f",
+ "glVertex3i",
+ "glVertex3s",
+ "glVertex4d",
+ "glVertex4f",
+ "glVertex4i",
+ "glVertex4s",
+ "glVertex2dv",
+ "glVertex2fv",
+ "glVertex2iv",
+ "glVertex2sv",
+ "glVertex3dv",
+ "glVertex3fv",
+ "glVertex3iv",
+ "glVertex3sv",
+ "glVertex4dv",
+ "glVertex4fv",
+ "glVertex4iv",
+ "glVertex4sv",
+ "glNormal3b",
+ "glNormal3d",
+ "glNormal3f",
+ "glNormal3i",
+ "glNormal3s",
+ "glNormal3bv",
+ "glNormal3dv",
+ "glNormal3fv",
+ "glNormal3iv",
+ "glNormal3sv",
+ "glIndexd",
+ "glIndexf",
+ "glIndexi",
+ "glIndexs",
+ "glIndexub",
+ "glIndexdv",
+ "glIndexfv",
+ "glIndexiv",
+ "glIndexsv",
+ "glIndexubv",
+ "glColor3b",
+ "glColor3d",
+ "glColor3f",
+ "glColor3i",
+ "glColor3s",
+ "glColor3ub",
+ "glColor3ui",
+ "glColor3us",
+ "glColor4b",
+ "glColor4d",
+ "glColor4f",
+ "glColor4i",
+ "glColor4s",
+ "glColor4ub",
+ "glColor4ui",
+ "glColor4us",
+ "glColor3bv",
+ "glColor3dv",
+ "glColor3fv",
+ "glColor3iv",
+ "glColor3sv",
+ "glColor3ubv",
+ "glColor3uiv",
+ "glColor3usv",
+ "glColor4bv",
+ "glColor4dv",
+ "glColor4fv",
+ "glColor4iv",
+ "glColor4sv",
+ "glColor4ubv",
+ "glColor4uiv",
+ "glColor4usv",
+ "glTexCoord1d",
+ "glTexCoord1f",
+ "glTexCoord1i",
+ "glTexCoord1s",
+ "glTexCoord2d",
+ "glTexCoord2f",
+ "glTexCoord2i",
+ "glTexCoord2s",
+ "glTexCoord3d",
+ "glTexCoord3f",
+ "glTexCoord3i",
+ "glTexCoord3s",
+ "glTexCoord4d",
+ "glTexCoord4f",
+ "glTexCoord4i",
+ "glTexCoord4s",
+ "glTexCoord1dv",
+ "glTexCoord1fv",
+ "glTexCoord1iv",
+ "glTexCoord1sv",
+ "glTexCoord2dv",
+ "glTexCoord2fv",
+ "glTexCoord2iv",
+ "glTexCoord2sv",
+ "glTexCoord3dv",
+ "glTexCoord3fv",
+ "glTexCoord3iv",
+ "glTexCoord3sv",
+ "glTexCoord4dv",
+ "glTexCoord4fv",
+ "glTexCoord4iv",
+ "glTexCoord4sv",
+ "glRasterPos2d",
+ "glRasterPos2f",
+ "glRasterPos2i",
+ "glRasterPos2s",
+ "glRasterPos3d",
+ "glRasterPos3f",
+ "glRasterPos3i",
+ "glRasterPos3s",
+ "glRasterPos4d",
+ "glRasterPos4f",
+ "glRasterPos4i",
+ "glRasterPos4s",
+ "glRasterPos2dv",
+ "glRasterPos2fv",
+ "glRasterPos2iv",
+ "glRasterPos2sv",
+ "glRasterPos3dv",
+ "glRasterPos3fv",
+ "glRasterPos3iv",
+ "glRasterPos3sv",
+ "glRasterPos4dv",
+ "glRasterPos4fv",
+ "glRasterPos4iv",
+ "glRasterPos4sv",
+ "glRectd",
+ "glRectf",
+ "glRecti",
+ "glRects",
+ "glRectdv",
+ "glRectfv",
+ "glRectiv",
+ "glRectsv",
+ "glVertexPointer",
+ "glNormalPointer",
+ "glColorPointer",
+ "glIndexPointer",
+ "glTexCoordPointer",
+ "glEdgeFlagPointer",
+ "glGetPointerv",
+ "glArrayElement",
+ "glDrawArrays",
+ "glDrawElements",
+ "glInterleavedArrays",
+ "glShadeModel",
+ "glLightf",
+ "glLighti",
+ "glLightfv",
+ "glLightiv",
+ "glGetLightfv",
+ "glGetLightiv",
+ "glLightModelf",
+ "glLightModeli",
+ "glLightModelfv",
+ "glLightModeliv",
+ "glMaterialf",
+ "glMateriali",
+ "glMaterialfv",
+ "glMaterialiv",
+ "glGetMaterialfv",
+ "glGetMaterialiv",
+ "glColorMaterial",
+ "glPixelZoom",
+ "glPixelStoref",
+ "glPixelStorei",
+ "glPixelTransferf",
+ "glPixelTransferi",
+ "glPixelMapfv",
+ "glPixelMapuiv",
+ "glPixelMapusv",
+ "glGetPixelMapfv",
+ "glGetPixelMapuiv",
+ "glGetPixelMapusv",
+ "glBitmap",
+ "glReadPixels",
+ "glDrawPixels",
+ "glCopyPixels",
+ "glStencilFunc",
+ "glStencilMask",
+ "glStencilOp",
+ "glClearStencil",
+ "glTexGend",
+ "glTexGenf",
+ "glTexGeni",
+ "glTexGendv",
+ "glTexGenfv",
+ "glTexGeniv",
+ "glGetTexGendv",
+ "glGetTexGenfv",
+ "glGetTexGeniv",
+ "glTexEnvf",
+ "glTexEnvi",
+ "glTexEnvfv",
+ "glTexEnviv",
+ "glGetTexEnvfv",
+ "glGetTexEnviv",
+ "glTexParameterf",
+ "glTexParameteri",
+ "glTexParameterfv",
+ "glTexParameteriv",
+ "glGetTexParameterfv",
+ "glGetTexParameteriv",
+ "glGetTexLevelParameterfv",
+ "glGetTexLevelParameteriv",
+ "glTexImage1D",
+ "glTexImage2D",
+ "glGetTexImage",
+ "glGenTextures",
+ "glDeleteTextures",
+ "glBindTexture",
+ "glPrioritizeTextures",
+ "glAreTexturesResident",
+ "glIsTexture",
+ "glTexSubImage1D",
+ "glTexSubImage2D",
+ "glCopyTexImage1D",
+ "glCopyTexImage2D",
+ "glCopyTexSubImage1D",
+ "glCopyTexSubImage2D",
+ "glMap1d",
+ "glMap1f",
+ "glMap2d",
+ "glMap2f",
+ "glGetMapdv",
+ "glGetMapfv",
+ "glGetMapiv",
+ "glEvalCoord1d",
+ "glEvalCoord1f",
+ "glEvalCoord1dv",
+ "glEvalCoord1fv",
+ "glEvalCoord2d",
+ "glEvalCoord2f",
+ "glEvalCoord2dv",
+ "glEvalCoord2fv",
+ "glMapGrid1d",
+ "glMapGrid1f",
+ "glMapGrid2d",
+ "glMapGrid2f",
+ "glEvalPoint1",
+ "glEvalPoint2",
+ "glEvalMesh1",
+ "glEvalMesh2",
+ "glFogf",
+ "glFogi",
+ "glFogfv",
+ "glFogiv",
+ "glFeedbackBuffer",
+ "glPassThrough",
+ "glSelectBuffer",
+ "glInitNames",
+ "glLoadName",
+ "glPushName",
+ "glPopName",
+ "glDrawRangeElements",
+ "glTexImage3D",
+ "glTexSubImage3D",
+ "glCopyTexSubImage3D",
+ "glColorTable",
+ "glColorSubTable",
+ "glColorTableParameteriv",
+ "glColorTableParameterfv",
+ "glCopyColorSubTable",
+ "glCopyColorTable",
+ "glGetColorTable",
+ "glGetColorTableParameterfv",
+ "glGetColorTableParameteriv",
+ "glBlendEquation",
+ "glBlendColor",
+ "glHistogram",
+ "glResetHistogram",
+ "glGetHistogram",
+ "glGetHistogramParameterfv",
+ "glGetHistogramParameteriv",
+ "glMinmax",
+ "glResetMinmax",
+ "glGetMinmax",
+ "glGetMinmaxParameterfv",
+ "glGetMinmaxParameteriv",
+ "glConvolutionFilter1D",
+ "glConvolutionFilter2D",
+ "glConvolutionParameterf",
+ "glConvolutionParameterfv",
+ "glConvolutionParameteri",
+ "glConvolutionParameteriv",
+ "glCopyConvolutionFilter1D",
+ "glCopyConvolutionFilter2D",
+ "glGetConvolutionFilter",
+ "glGetConvolutionParameterfv",
+ "glGetConvolutionParameteriv",
+ "glSeparableFilter2D",
+ "glGetSeparableFilter",
+ "glActiveTexture",
+ "glClientActiveTexture",
+ "glCompressedTexImage1D",
+ "glCompressedTexImage2D",
+ "glCompressedTexImage3D",
+ "glCompressedTexSubImage1D",
+ "glCompressedTexSubImage2D",
+ "glCompressedTexSubImage3D",
+ "glGetCompressedTexImage",
+ "glMultiTexCoord1d",
+ "glMultiTexCoord1dv",
+ "glMultiTexCoord1f",
+ "glMultiTexCoord1fv",
+ "glMultiTexCoord1i",
+ "glMultiTexCoord1iv",
+ "glMultiTexCoord1s",
+ "glMultiTexCoord1sv",
+ "glMultiTexCoord2d",
+ "glMultiTexCoord2dv",
+ "glMultiTexCoord2f",
+ "glMultiTexCoord2fv",
+ "glMultiTexCoord2i",
+ "glMultiTexCoord2iv",
+ "glMultiTexCoord2s",
+ "glMultiTexCoord2sv",
+ "glMultiTexCoord3d",
+ "glMultiTexCoord3dv",
+ "glMultiTexCoord3f",
+ "glMultiTexCoord3fv",
+ "glMultiTexCoord3i",
+ "glMultiTexCoord3iv",
+ "glMultiTexCoord3s",
+ "glMultiTexCoord3sv",
+ "glMultiTexCoord4d",
+ "glMultiTexCoord4dv",
+ "glMultiTexCoord4f",
+ "glMultiTexCoord4fv",
+ "glMultiTexCoord4i",
+ "glMultiTexCoord4iv",
+ "glMultiTexCoord4s",
+ "glMultiTexCoord4sv",
+ "glLoadTransposeMatrixd",
+ "glLoadTransposeMatrixf",
+ "glMultTransposeMatrixd",
+ "glMultTransposeMatrixf",
+ "glSampleCoverage",
+ "glSamplePass",
+ "glActiveTextureARB",
+ "glClientActiveTextureARB",
+ "glMultiTexCoord1dARB",
+ "glMultiTexCoord1dvARB",
+ "glMultiTexCoord1fARB",
+ "glMultiTexCoord1fvARB",
+ "glMultiTexCoord1iARB",
+ "glMultiTexCoord1ivARB",
+ "glMultiTexCoord1sARB",
+ "glMultiTexCoord1svARB",
+ "glMultiTexCoord2dARB",
+ "glMultiTexCoord2dvARB",
+ "glMultiTexCoord2fARB",
+ "glMultiTexCoord2fvARB",
+ "glMultiTexCoord2iARB",
+ "glMultiTexCoord2ivARB",
+ "glMultiTexCoord2sARB",
+ "glMultiTexCoord2svARB",
+ "glMultiTexCoord3dARB",
+ "glMultiTexCoord3dvARB",
+ "glMultiTexCoord3fARB",
+ "glMultiTexCoord3fvARB",
+ "glMultiTexCoord3iARB",
+ "glMultiTexCoord3ivARB",
+ "glMultiTexCoord3sARB",
+ "glMultiTexCoord3svARB",
+ "glMultiTexCoord4dARB",
+ "glMultiTexCoord4dvARB",
+ "glMultiTexCoord4fARB",
+ "glMultiTexCoord4fvARB",
+ "glMultiTexCoord4iARB",
+ "glMultiTexCoord4ivARB",
+ "glMultiTexCoord4sARB",
+ "glMultiTexCoord4svARB",
+ "glBlendColorEXT",
+ "glPolygonOffsetEXT",
+ "glTexImage3DEXT",
+ "glTexSubImage3DEXT",
+ "glCopyTexSubImage3DEXT",
+ "glGenTexturesEXT",
+ "glDeleteTexturesEXT",
+ "glBindTextureEXT",
+ "glPrioritizeTexturesEXT",
+ "glAreTexturesResidentEXT",
+ "glIsTextureEXT",
+ "glVertexPointerEXT",
+ "glNormalPointerEXT",
+ "glColorPointerEXT",
+ "glIndexPointerEXT",
+ "glTexCoordPointerEXT",
+ "glEdgeFlagPointerEXT",
+ "glGetPointervEXT",
+ "glArrayElementEXT",
+ "glDrawArraysEXT",
+ "glBlendEquationEXT",
+ "glPointParameterfEXT",
+ "glPointParameterfvEXT",
+ "glPointParameterfSGIS",
+ "glPointParameterfvSGIS",
+ "glColorTableEXT",
+ "glColorSubTableEXT",
+ "glGetColorTableEXT",
+ "glGetColorTableParameterfvEXT",
+ "glGetColorTableParameterivEXT",
+ "glLockArraysEXT",
+ "glUnlockArraysEXT",
+ "glLoadTransposeMatrixfARB",
+ "glLoadTransposeMatrixdARB",
+ "glMultTransposeMatrixfARB",
+ "glMultTransposeMatrixdARB",
+ "glSampleCoverageARB",
+ "glCompressedTexImage3DARB",
+ "glCompressedTexImage2DARB",
+ "glCompressedTexImage1DARB",
+ "glCompressedTexSubImage3DARB",
+ "glCompressedTexSubImage2DARB",
+ "glCompressedTexSubImage1DARB",
+ "glGetCompressedTexImageARB",
+ "glWeightbvARB",
+ "glWeightsvARB",
+ "glWeightivARB",
+ "glWeightfvARB",
+ "glWeightdvARB",
+ "glWeightubvARB",
+ "glWeightusvARB",
+ "glWeightuivARB",
+ "glWeightPointerARB",
+ "glVertexBlendARB",
+ "glCurrentPaletteMatrixARB",
+ "glMatrixIndexubvARB",
+ "glMatrixIndexusvARB",
+ "glMatrixIndexuivARB",
+ "glMatrixIndexPointerARB",
+ "glGetTexFilterFuncSGIS",
+ "glTexFilterFuncSGIS",
+ "glTexSubImage1DEXT",
+ "glTexSubImage2DEXT",
+ "glCopyTexImage1DEXT",
+ "glCopyTexImage2DEXT",
+ "glCopyTexSubImage1DEXT",
+ "glCopyTexSubImage2DEXT",
+ "glGetHistogramEXT",
+ "glGetHistogramParameterfvEXT",
+ "glGetHistogramParameterivEXT",
+ "glGetMinmaxEXT",
+ "glGetMinmaxParameterfvEXT",
+ "glGetMinmaxParameterivEXT",
+ "glHistogramEXT",
+ "glMinmaxEXT",
+ "glResetHistogramEXT",
+ "glResetMinmaxEXT",
+ "glConvolutionFilter1DEXT",
+ "glConvolutionFilter2DEXT",
+ "glConvolutionParameterfEXT",
+ "glConvolutionParameterfvEXT",
+ "glConvolutionParameteriEXT",
+ "glConvolutionParameterivEXT",
+ "glCopyConvolutionFilter1DEXT",
+ "glCopyConvolutionFilter2DEXT",
+ "glGetConvolutionFilterEXT",
+ "glGetConvolutionParameterfvEXT",
+ "glGetConvolutionParameterivEXT",
+ "glGetSeparableFilterEXT",
+ "glSeparableFilter2DEXT",
+ "glColorTableSGI",
+ "glColorTableParameterfvSGI",
+ "glColorTableParameterivSGI",
+ "glCopyColorTableSGI",
+ "glGetColorTableSGI",
+ "glGetColorTableParameterfvSGI",
+ "glGetColorTableParameterivSGI",
+ "glPixelTexGenSGIX",
+ "glPixelTexGenParameteriSGIS",
+ "glPixelTexGenParameterivSGIS",
+ "glPixelTexGenParameterfSGIS",
+ "glPixelTexGenParameterfvSGIS",
+ "glGetPixelTexGenParameterivSGIS",
+ "glGetPixelTexGenParameterfvSGIS",
+ "glTexImage4DSGIS",
+ "glTexSubImage4DSGIS",
+ "glDetailTexFuncSGIS",
+ "glGetDetailTexFuncSGIS",
+ "glSharpenTexFuncSGIS",
+ "glGetSharpenTexFuncSGIS",
+ "glSampleMaskSGIS",
+ "glSamplePatternSGIS",
+ "glSpriteParameterfSGIX",
+ "glSpriteParameterfvSGIX",
+ "glSpriteParameteriSGIX",
+ "glSpriteParameterivSGIX",
+ "glPointParameterfARB",
+ "glPointParameterfvARB",
+ "glGetInstrumentsSGIX",
+ "glInstrumentsBufferSGIX",
+ "glPollInstrumentsSGIX",
+ "glReadInstrumentsSGIX",
+ "glStartInstrumentsSGIX",
+ "glStopInstrumentsSGIX",
+ "glFrameZoomSGIX",
+ "glTagSampleBufferSGIX",
+ "glDeformationMap3dSGIX",
+ "glDeformationMap3fSGIX",
+ "glDeformSGIX",
+ "glLoadIdentityDeformationMapSGIX",
+ "glReferencePlaneSGIX",
+ "glFlushRasterSGIX",
+ "glFogFuncSGIS",
+ "glGetFogFuncSGIS",
+ "glImageTransformParameteriHP",
+ "glImageTransformParameterfHP",
+ "glImageTransformParameterivHP",
+ "glImageTransformParameterfvHP",
+ "glGetImageTransformParameterivHP",
+ "glGetImageTransformParameterfvHP",
+ "glCopyColorSubTableEXT",
+ "glHintPGI",
+ "glGetListParameterfvSGIX",
+ "glGetListParameterivSGIX",
+ "glListParameterfSGIX",
+ "glListParameterfvSGIX",
+ "glListParameteriSGIX",
+ "glListParameterivSGIX",
+ "glIndexMaterialEXT",
+ "glIndexFuncEXT",
+ "glCullParameterdvEXT",
+ "glCullParameterfvEXT",
+ "glFragmentColorMaterialSGIX",
+ "glFragmentLightfSGIX",
+ "glFragmentLightfvSGIX",
+ "glFragmentLightiSGIX",
+ "glFragmentLightivSGIX",
+ "glFragmentLightModelfSGIX",
+ "glFragmentLightModelfvSGIX",
+ "glFragmentLightModeliSGIX",
+ "glFragmentLightModelivSGIX",
+ "glFragmentMaterialfSGIX",
+ "glFragmentMaterialfvSGIX",
+ "glFragmentMaterialiSGIX",
+ "glFragmentMaterialivSGIX",
+ "glGetFragmentLightfvSGIX",
+ "glGetFragmentLightivSGIX",
+ "glGetFragmentMaterialfvSGIX",
+ "glGetFragmentMaterialivSGIX",
+ "glLightEnviSGIX",
+ "glDrawRangeElementsEXT",
+ "glApplyTextureEXT",
+ "glTextureLightEXT",
+ "glTextureMaterialEXT",
+ "glAsyncMarkerSGIX",
+ "glFinishAsyncSGIX",
+ "glPollAsyncSGIX",
+ "glGenAsyncMarkersSGIX",
+ "glDeleteAsyncMarkersSGIX",
+ "glIsAsyncMarkerSGIX",
+ "glVertexPointervINTEL",
+ "glNormalPointervINTEL",
+ "glColorPointervINTEL",
+ "glTexCoordPointervINTEL",
+ "glPixelTransformParameteriEXT",
+ "glPixelTransformParameterfEXT",
+ "glPixelTransformParameterivEXT",
+ "glPixelTransformParameterfvEXT",
+ "glSecondaryColor3bEXT",
+ "glSecondaryColor3bvEXT",
+ "glSecondaryColor3dEXT",
+ "glSecondaryColor3dvEXT",
+ "glSecondaryColor3fEXT",
+ "glSecondaryColor3fvEXT",
+ "glSecondaryColor3iEXT",
+ "glSecondaryColor3ivEXT",
+ "glSecondaryColor3sEXT",
+ "glSecondaryColor3svEXT",
+ "glSecondaryColor3ubEXT",
+ "glSecondaryColor3ubvEXT",
+ "glSecondaryColor3uiEXT",
+ "glSecondaryColor3uivEXT",
+ "glSecondaryColor3usEXT",
+ "glSecondaryColor3usvEXT",
+ "glSecondaryColorPointerEXT",
+ "glTextureNormalEXT",
+ "glMultiDrawArraysEXT",
+ "glMultiDrawElementsEXT",
+ "glFogCoordfEXT",
+ "glFogCoordfvEXT",
+ "glFogCoorddEXT",
+ "glFogCoorddvEXT",
+ "glFogCoordPointerEXT",
+ "glTangent3bEXT",
+ "glTangent3bvEXT",
+ "glTangent3dEXT",
+ "glTangent3dvEXT",
+ "glTangent3fEXT",
+ "glTangent3fvEXT",
+ "glTangent3iEXT",
+ "glTangent3ivEXT",
+ "glTangent3sEXT",
+ "glTangent3svEXT",
+ "glBinormal3bEXT",
+ "glBinormal3bvEXT",
+ "glBinormal3dEXT",
+ "glBinormal3dvEXT",
+ "glBinormal3fEXT",
+ "glBinormal3fvEXT",
+ "glBinormal3iEXT",
+ "glBinormal3ivEXT",
+ "glBinormal3sEXT",
+ "glBinormal3svEXT",
+ "glTangentPointerEXT",
+ "glBinormalPointerEXT",
+ "glFinishTextureSUNX",
+ "glGlobalAlphaFactorbSUN",
+ "glGlobalAlphaFactorsSUN",
+ "glGlobalAlphaFactoriSUN",
+ "glGlobalAlphaFactorfSUN",
+ "glGlobalAlphaFactordSUN",
+ "glGlobalAlphaFactorubSUN",
+ "glGlobalAlphaFactorusSUN",
+ "glGlobalAlphaFactoruiSUN",
+ "glReplacementCodeuiSUN",
+ "glReplacementCodeusSUN",
+ "glReplacementCodeubSUN",
+ "glReplacementCodeuivSUN",
+ "glReplacementCodeusvSUN",
+ "glReplacementCodeubvSUN",
+ "glReplacementCodePointerSUN",
+ "glColor4ubVertex2fSUN",
+ "glColor4ubVertex2fvSUN",
+ "glColor4ubVertex3fSUN",
+ "glColor4ubVertex3fvSUN",
+ "glColor3fVertex3fSUN",
+ "glColor3fVertex3fvSUN",
+ "glNormal3fVertex3fSUN",
+ "glNormal3fVertex3fvSUN",
+ "glColor4fNormal3fVertex3fSUN",
+ "glColor4fNormal3fVertex3fvSUN",
+ "glTexCoord2fVertex3fSUN",
+ "glTexCoord2fVertex3fvSUN",
+ "glTexCoord4fVertex4fSUN",
+ "glTexCoord4fVertex4fvSUN",
+ "glTexCoord2fColor4ubVertex3fSUN",
+ "glTexCoord2fColor4ubVertex3fvSUN",
+ "glTexCoord2fColor3fVertex3fSUN",
+ "glTexCoord2fColor3fVertex3fvSUN",
+ "glTexCoord2fNormal3fVertex3fSUN",
+ "glTexCoord2fNormal3fVertex3fvSUN",
+ "glTexCoord2fColor4fNormal3fVertex3fSUN",
+ "glTexCoord2fColor4fNormal3fVertex3fvSUN",
+ "glTexCoord4fColor4fNormal3fVertex4fSUN",
+ "glTexCoord4fColor4fNormal3fVertex4fvSUN",
+ "glReplacementCodeuiVertex3fSUN",
+ "glReplacementCodeuiVertex3fvSUN",
+ "glReplacementCodeuiColor4ubVertex3fSUN",
+ "glReplacementCodeuiColor4ubVertex3fvSUN",
+ "glReplacementCodeuiColor3fVertex3fSUN",
+ "glReplacementCodeuiColor3fVertex3fvSUN",
+ "glReplacementCodeuiNormal3fVertex3fSUN",
+ "glReplacementCodeuiNormal3fVertex3fvSUN",
+ "glReplacementCodeuiColor4fNormal3fVertex3fSUN",
+ "glReplacementCodeuiColor4fNormal3fVertex3fvSUN",
+ "glReplacementCodeuiTexCoord2fVertex3fSUN",
+ "glReplacementCodeuiTexCoord2fVertex3fvSUN",
+ "glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN",
+ "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN",
+ "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN",
+ "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN",
+ "glBlendFuncSeparateEXT",
+ "glBlendFuncSeparateINGR",
+ "glVertexWeightfEXT",
+ "glVertexWeightfvEXT",
+ "glVertexWeightPointerEXT",
+ "glFlushVertexArrayRangeNV",
+ "glVertexArrayRangeNV",
+ "glCombinerParameterfvNV",
+ "glCombinerParameterfNV",
+ "glCombinerParameterivNV",
+ "glCombinerParameteriNV",
+ "glCombinerInputNV",
+ "glCombinerOutputNV",
+ "glFinalCombinerInputNV",
+ "glGetCombinerInputParameterfvNV",
+ "glGetCombinerInputParameterivNV",
+ "glGetCombinerOutputParameterfvNV",
+ "glGetCombinerOutputParameterivNV",
+ "glGetFinalCombinerInputParameterfvNV",
+ "glGetFinalCombinerInputParameterivNV",
+ "glMultiModeDrawArraysIBM",
+ "glMultiModeDrawElementsIBM",
+ "glColorPointerListIBM",
+ "glSecondaryColorPointerListIBM",
+ "glEdgeFlagPointerListIBM",
+ "glFogCoordPointerListIBM",
+ "glIndexPointerListIBM",
+ "glNormalPointerListIBM",
+ "glTexCoordPointerListIBM",
+ "glVertexPointerListIBM",
+ "glTbufferMask3DFX",
+ "glSampleMaskEXT",
+ "glSamplePatternEXT",
+ "glTextureColorMaskSGIS",
+ "glIglooInterfaceSGIX",
+ "glGenFencesNV",
+ "glDeleteFencesNV",
+ "glSetFenceNV",
+ "glTestFenceNV",
+ "glFinishFenceNV",
+ "glIsFenceNV",
+ "glGetFenceivNV",
+ "glMapControlPointsNV",
+ "glMapParameterivNV",
+ "glMapParameterfvNV",
+ "glGetMapControlPointsNV",
+ "glGetMapParameterivNV",
+ "glGetMapParameterfvNV",
+ "glGetMapAttribParameterivNV",
+ "glGetMapAttribParameterfvNV",
+ "glEvalMapsNV",
+ "glCombinerStageParameterfvNV",
+ "glGetCombinerStageParameterfvNV",
+ "glBindProgramNV",
+ "glDeleteProgramsNV",
+ "glExecuteProgramNV",
+ "glGenProgramsNV",
+ "glAreProgramsResidentNV",
+ "glRequestResidentProgramsNV",
+ "glGetProgramParameterfvNV",
+ "glGetProgramParameterdvNV",
+ "glGetProgramivNV",
+ "glGetProgramStringNV",
+ "glGetTrackMatrixivNV",
+ "glGetVertexAttribdvNV",
+ "glGetVertexAttribfvNV",
+ "glGetVertexAttribivNV",
+ "glGetVertexAttribPointervNV",
+ "glIsProgramNV",
+ "glLoadProgramNV",
+ "glProgramParameter4fNV",
+ "glProgramParameter4dNV",
+ "glProgramParameter4dvNV",
+ "glProgramParameter4fvNV",
+ "glProgramParameters4dvNV",
+ "glProgramParameters4fvNV",
+ "glTrackMatrixNV",
+ "glVertexAttribPointerNV",
+ "glVertexAttrib1sNV",
+ "glVertexAttrib1fNV",
+ "glVertexAttrib1dNV",
+ "glVertexAttrib2sNV",
+ "glVertexAttrib2fNV",
+ "glVertexAttrib2dNV",
+ "glVertexAttrib3sNV",
+ "glVertexAttrib3fNV",
+ "glVertexAttrib3dNV",
+ "glVertexAttrib4sNV",
+ "glVertexAttrib4fNV",
+ "glVertexAttrib4dNV",
+ "glVertexAttrib4ubNV",
+ "glVertexAttrib1svNV",
+ "glVertexAttrib1fvNV",
+ "glVertexAttrib1dvNV",
+ "glVertexAttrib2svNV",
+ "glVertexAttrib2fvNV",
+ "glVertexAttrib2dvNV",
+ "glVertexAttrib3svNV",
+ "glVertexAttrib3fvNV",
+ "glVertexAttrib3dvNV",
+ "glVertexAttrib4svNV",
+ "glVertexAttrib4fvNV",
+ "glVertexAttrib4dvNV",
+ "glVertexAttrib4ubvNV",
+ "glVertexAttribs1svNV",
+ "glVertexAttribs1fvNV",
+ "glVertexAttribs1dvNV",
+ "glVertexAttribs2svNV",
+ "glVertexAttribs2fvNV",
+ "glVertexAttribs2dvNV",
+ "glVertexAttribs3svNV",
+ "glVertexAttribs3fvNV",
+ "glVertexAttribs3dvNV",
+ "glVertexAttribs4svNV",
+ "glVertexAttribs4fvNV",
+ "glVertexAttribs4dvNV",
+ "glVertexAttribs4ubvNV",
+ "glTexBumpParameterivATI",
+ "glTexBumpParameterfvATI",
+ "glGetTexBumpParameterivATI",
+ "glGetTexBumpParameterfvATI",
+ "glGenFragmentShadersATI",
+ "glBindFragmentShaderATI",
+ "glDeleteFragmentShaderATI",
+ "glBeginFragmentShaderATI",
+ "glEndFragmentShaderATI",
+ "glPassTexCoordATI",
+ "glSampleMapATI",
+ "glColorFragmentOp1ATI",
+ "glColorFragmentOp2ATI",
+ "glColorFragmentOp3ATI",
+ "glAlphaFragmentOp1ATI",
+ "glAlphaFragmentOp2ATI",
+ "glAlphaFragmentOp3ATI",
+ "glSetFragmentShaderConstantATI",
+ "glPNTrianglesiATI",
+ "glPNTrianglesfATI",
+ "glNewObjectBufferATI",
+ "glIsObjectBufferATI",
+ "glUpdateObjectBufferATI",
+ "glGetObjectBufferfvATI",
+ "glGetObjectBufferivATI",
+ "glDeleteObjectBufferATI",
+ "glArrayObjectATI",
+ "glGetArrayObjectfvATI",
+ "glGetArrayObjectivATI",
+ "glVariantArrayObjectATI",
+ "glGetVariantArrayObjectfvATI",
+ "glGetVariantArrayObjectivATI",
+ "glBeginVertexShaderEXT",
+ "glEndVertexShaderEXT",
+ "glBindVertexShaderEXT",
+ "glGenVertexShadersEXT",
+ "glDeleteVertexShaderEXT",
+ "glShaderOp1EXT",
+ "glShaderOp2EXT",
+ "glShaderOp3EXT",
+ "glSwizzleEXT",
+ "glWriteMaskEXT",
+ "glInsertComponentEXT",
+ "glExtractComponentEXT",
+ "glGenSymbolsEXT",
+ "glSetInvariantEXT",
+ "glSetLocalConstantEXT",
+ "glVariantbvEXT",
+ "glVariantsvEXT",
+ "glVariantivEXT",
+ "glVariantfvEXT",
+ "glVariantdvEXT",
+ "glVariantubvEXT",
+ "glVariantusvEXT",
+ "glVariantuivEXT",
+ "glVariantPointerEXT",
+ "glEnableVariantClientStateEXT",
+ "glDisableVariantClientStateEXT",
+ "glBindLightParameterEXT",
+ "glBindMaterialParameterEXT",
+ "glBindTexGenParameterEXT",
+ "glBindTextureUnitParameterEXT",
+ "glBindParameterEXT",
+ "glIsVariantEnabledEXT",
+ "glGetVariantBooleanvEXT",
+ "glGetVariantIntegervEXT",
+ "glGetVariantFloatvEXT",
+ "glGetVariantPointervEXT",
+ "glGetInvariantBooleanvEXT",
+ "glGetInvariantIntegervEXT",
+ "glGetInvariantFloatvEXT",
+ "glGetLocalConstantBooleanvEXT",
+ "glGetLocalConstantIntegervEXT",
+ "glGetLocalConstantFloatvEXT",
+ "glVertexStream1s",
+ "glVertexStream1sv",
+ "glVertexStream1i",
+ "glVertexStream1iv",
+ "glVertexStream1f",
+ "glVertexStream1fv",
+ "glVertexStream1d",
+ "glVertexStream1dv",
+ "glVertexStream2s",
+ "glVertexStream2sv",
+ "glVertexStream2i",
+ "glVertexStream2iv",
+ "glVertexStream2f",
+ "glVertexStream2fv",
+ "glVertexStream2d",
+ "glVertexStream2dv",
+ "glVertexStream3s",
+ "glVertexStream3sv",
+ "glVertexStream3i",
+ "glVertexStream3iv",
+ "glVertexStream3f",
+ "glVertexStream3fv",
+ "glVertexStream3d",
+ "glVertexStream3dv",
+ "glVertexStream4s",
+ "glVertexStream4sv",
+ "glVertexStream4i",
+ "glVertexStream4iv",
+ "glVertexStream4f",
+ "glVertexStream4fv",
+ "glVertexStream4d",
+ "glVertexStream4dv",
+ "glNormalStream3b",
+ "glNormalStream3bv",
+ "glNormalStream3s",
+ "glNormalStream3sv",
+ "glNormalStream3i",
+ "glNormalStream3iv",
+ "glNormalStream3f",
+ "glNormalStream3fv",
+ "glNormalStream3d",
+ "glNormalStream3dv",
+ "glClientActiveVertexStream",
+ "glVertexBlendEnvi",
+ "glVertexBlendEnvf",
+/* C2J Parser Version 3.0: Java program parsed successfully. */
null }; /** diff --git a/gl4java/GLFunc14.java b/gl4java/GLFunc14.java index 0cf527d..85d9599 100644 --- a/gl4java/GLFunc14.java +++ b/gl4java/GLFunc14.java @@ -40,1005 +40,1006 @@ public interface GLFunc14 // All other routines below are autogenerated // - -public String glGetString ( int name ) ; - -public String getNativeVendor ( ) ; -public String getNativeVersion ( ) ; - -public String getClassVendor ( ) ; -public String getClassVersion ( ) ; - -public static final String[] GL_PROC_NAMES = { +
+public String glGetString ( int name ) ;
+
+public String getNativeVendor ( ) ;
+public String getNativeVersion ( ) ;
+
+public String getClassVendor ( ) ;
+public String getClassVersion ( ) ;
+
+public static final String[] GL_PROC_NAMES = {
+ "glAllocateMemoryNV",
/** * C2J Parser Version 3.0 * Jausoft - Sven Goethel Software Development * Reading from file: gl-proto-auto.orig.h . . . * Destination-Class: gl4java_GLFuncJauJNI ! */ - - "glClearIndex", - "glClearColor", - "glClear", - "glIndexMask", - "glColorMask", - "glAlphaFunc", - "glBlendFunc", - "glLogicOp", - "glCullFace", - "glFrontFace", - "glPointSize", - "glLineWidth", - "glLineStipple", - "glPolygonMode", - "glPolygonOffset", - "glPolygonStipple", - "glGetPolygonStipple", - "glEdgeFlag", - "glEdgeFlagv", - "glScissor", - "glClipPlane", - "glGetClipPlane", - "glDrawBuffer", - "glReadBuffer", - "glEnable", - "glDisable", - "glIsEnabled", - "glEnableClientState", - "glDisableClientState", - "glGetBooleanv", - "glGetDoublev", - "glGetFloatv", - "glGetIntegerv", - "glPushAttrib", - "glPopAttrib", - "glPushClientAttrib", - "glPopClientAttrib", - "glRenderMode", - "glGetError", - "glFinish", - "glFlush", - "glHint", - "glClearDepth", - "glDepthFunc", - "glDepthMask", - "glDepthRange", - "glClearAccum", - "glAccum", - "glMatrixMode", - "glOrtho", - "glFrustum", - "glViewport", - "glPushMatrix", - "glPopMatrix", - "glLoadIdentity", - "glLoadMatrixd", - "glLoadMatrixf", - "glMultMatrixd", - "glMultMatrixf", - "glRotated", - "glRotatef", - "glScaled", - "glScalef", - "glTranslated", - "glTranslatef", - "glIsList", - "glDeleteLists", - "glGenLists", - "glNewList", - "glEndList", - "glCallList", - "glCallLists", - "glListBase", - "glBegin", - "glEnd", - "glVertex2d", - "glVertex2f", - "glVertex2i", - "glVertex2s", - "glVertex3d", - "glVertex3f", - "glVertex3i", - "glVertex3s", - "glVertex4d", - "glVertex4f", - "glVertex4i", - "glVertex4s", - "glVertex2dv", - "glVertex2fv", - "glVertex2iv", - "glVertex2sv", - "glVertex3dv", - "glVertex3fv", - "glVertex3iv", - "glVertex3sv", - "glVertex4dv", - "glVertex4fv", - "glVertex4iv", - "glVertex4sv", - "glNormal3b", - "glNormal3d", - "glNormal3f", - "glNormal3i", - "glNormal3s", - "glNormal3bv", - "glNormal3dv", - "glNormal3fv", - "glNormal3iv", - "glNormal3sv", - "glIndexd", - "glIndexf", - "glIndexi", - "glIndexs", - "glIndexub", - "glIndexdv", - "glIndexfv", - "glIndexiv", - "glIndexsv", - "glIndexubv", - "glColor3b", - "glColor3d", - "glColor3f", - "glColor3i", - "glColor3s", - "glColor3ub", - "glColor3ui", - "glColor3us", - "glColor4b", - "glColor4d", - "glColor4f", - "glColor4i", - "glColor4s", - "glColor4ub", - "glColor4ui", - "glColor4us", - "glColor3bv", - "glColor3dv", - "glColor3fv", - "glColor3iv", - "glColor3sv", - "glColor3ubv", - "glColor3uiv", - "glColor3usv", - "glColor4bv", - "glColor4dv", - "glColor4fv", - "glColor4iv", - "glColor4sv", - "glColor4ubv", - "glColor4uiv", - "glColor4usv", - "glTexCoord1d", - "glTexCoord1f", - "glTexCoord1i", - "glTexCoord1s", - "glTexCoord2d", - "glTexCoord2f", - "glTexCoord2i", - "glTexCoord2s", - "glTexCoord3d", - "glTexCoord3f", - "glTexCoord3i", - "glTexCoord3s", - "glTexCoord4d", - "glTexCoord4f", - "glTexCoord4i", - "glTexCoord4s", - "glTexCoord1dv", - "glTexCoord1fv", - "glTexCoord1iv", - "glTexCoord1sv", - "glTexCoord2dv", - "glTexCoord2fv", - "glTexCoord2iv", - "glTexCoord2sv", - "glTexCoord3dv", - "glTexCoord3fv", - "glTexCoord3iv", - "glTexCoord3sv", - "glTexCoord4dv", - "glTexCoord4fv", - "glTexCoord4iv", - "glTexCoord4sv", - "glRasterPos2d", - "glRasterPos2f", - "glRasterPos2i", - "glRasterPos2s", - "glRasterPos3d", - "glRasterPos3f", - "glRasterPos3i", - "glRasterPos3s", - "glRasterPos4d", - "glRasterPos4f", - "glRasterPos4i", - "glRasterPos4s", - "glRasterPos2dv", - "glRasterPos2fv", - "glRasterPos2iv", - "glRasterPos2sv", - "glRasterPos3dv", - "glRasterPos3fv", - "glRasterPos3iv", - "glRasterPos3sv", - "glRasterPos4dv", - "glRasterPos4fv", - "glRasterPos4iv", - "glRasterPos4sv", - "glRectd", - "glRectf", - "glRecti", - "glRects", - "glRectdv", - "glRectfv", - "glRectiv", - "glRectsv", - "glVertexPointer", - "glNormalPointer", - "glColorPointer", - "glIndexPointer", - "glTexCoordPointer", - "glEdgeFlagPointer", - "glGetPointerv", - "glArrayElement", - "glDrawArrays", - "glDrawElements", - "glInterleavedArrays", - "glShadeModel", - "glLightf", - "glLighti", - "glLightfv", - "glLightiv", - "glGetLightfv", - "glGetLightiv", - "glLightModelf", - "glLightModeli", - "glLightModelfv", - "glLightModeliv", - "glMaterialf", - "glMateriali", - "glMaterialfv", - "glMaterialiv", - "glGetMaterialfv", - "glGetMaterialiv", - "glColorMaterial", - "glPixelZoom", - "glPixelStoref", - "glPixelStorei", - "glPixelTransferf", - "glPixelTransferi", - "glPixelMapfv", - "glPixelMapuiv", - "glPixelMapusv", - "glGetPixelMapfv", - "glGetPixelMapuiv", - "glGetPixelMapusv", - "glBitmap", - "glReadPixels", - "glDrawPixels", - "glCopyPixels", - "glStencilFunc", - "glStencilMask", - "glStencilOp", - "glClearStencil", - "glTexGend", - "glTexGenf", - "glTexGeni", - "glTexGendv", - "glTexGenfv", - "glTexGeniv", - "glGetTexGendv", - "glGetTexGenfv", - "glGetTexGeniv", - "glTexEnvf", - "glTexEnvi", - "glTexEnvfv", - "glTexEnviv", - "glGetTexEnvfv", - "glGetTexEnviv", - "glTexParameterf", - "glTexParameteri", - "glTexParameterfv", - "glTexParameteriv", - "glGetTexParameterfv", - "glGetTexParameteriv", - "glGetTexLevelParameterfv", - "glGetTexLevelParameteriv", - "glTexImage1D", - "glTexImage2D", - "glGetTexImage", - "glGenTextures", - "glDeleteTextures", - "glBindTexture", - "glPrioritizeTextures", - "glAreTexturesResident", - "glIsTexture", - "glTexSubImage1D", - "glTexSubImage2D", - "glCopyTexImage1D", - "glCopyTexImage2D", - "glCopyTexSubImage1D", - "glCopyTexSubImage2D", - "glMap1d", - "glMap1f", - "glMap2d", - "glMap2f", - "glGetMapdv", - "glGetMapfv", - "glGetMapiv", - "glEvalCoord1d", - "glEvalCoord1f", - "glEvalCoord1dv", - "glEvalCoord1fv", - "glEvalCoord2d", - "glEvalCoord2f", - "glEvalCoord2dv", - "glEvalCoord2fv", - "glMapGrid1d", - "glMapGrid1f", - "glMapGrid2d", - "glMapGrid2f", - "glEvalPoint1", - "glEvalPoint2", - "glEvalMesh1", - "glEvalMesh2", - "glFogf", - "glFogi", - "glFogfv", - "glFogiv", - "glFeedbackBuffer", - "glPassThrough", - "glSelectBuffer", - "glInitNames", - "glLoadName", - "glPushName", - "glPopName", - "glDrawRangeElements", - "glTexImage3D", - "glTexSubImage3D", - "glCopyTexSubImage3D", - "glColorTable", - "glColorSubTable", - "glColorTableParameteriv", - "glColorTableParameterfv", - "glCopyColorSubTable", - "glCopyColorTable", - "glGetColorTable", - "glGetColorTableParameterfv", - "glGetColorTableParameteriv", - "glBlendEquation", - "glBlendColor", - "glHistogram", - "glResetHistogram", - "glGetHistogram", - "glGetHistogramParameterfv", - "glGetHistogramParameteriv", - "glMinmax", - "glResetMinmax", - "glGetMinmax", - "glGetMinmaxParameterfv", - "glGetMinmaxParameteriv", - "glConvolutionFilter1D", - "glConvolutionFilter2D", - "glConvolutionParameterf", - "glConvolutionParameterfv", - "glConvolutionParameteri", - "glConvolutionParameteriv", - "glCopyConvolutionFilter1D", - "glCopyConvolutionFilter2D", - "glGetConvolutionFilter", - "glGetConvolutionParameterfv", - "glGetConvolutionParameteriv", - "glSeparableFilter2D", - "glGetSeparableFilter", - "glActiveTexture", - "glClientActiveTexture", - "glCompressedTexImage1D", - "glCompressedTexImage2D", - "glCompressedTexImage3D", - "glCompressedTexSubImage1D", - "glCompressedTexSubImage2D", - "glCompressedTexSubImage3D", - "glGetCompressedTexImage", - "glMultiTexCoord1d", - "glMultiTexCoord1dv", - "glMultiTexCoord1f", - "glMultiTexCoord1fv", - "glMultiTexCoord1i", - "glMultiTexCoord1iv", - "glMultiTexCoord1s", - "glMultiTexCoord1sv", - "glMultiTexCoord2d", - "glMultiTexCoord2dv", - "glMultiTexCoord2f", - "glMultiTexCoord2fv", - "glMultiTexCoord2i", - "glMultiTexCoord2iv", - "glMultiTexCoord2s", - "glMultiTexCoord2sv", - "glMultiTexCoord3d", - "glMultiTexCoord3dv", - "glMultiTexCoord3f", - "glMultiTexCoord3fv", - "glMultiTexCoord3i", - "glMultiTexCoord3iv", - "glMultiTexCoord3s", - "glMultiTexCoord3sv", - "glMultiTexCoord4d", - "glMultiTexCoord4dv", - "glMultiTexCoord4f", - "glMultiTexCoord4fv", - "glMultiTexCoord4i", - "glMultiTexCoord4iv", - "glMultiTexCoord4s", - "glMultiTexCoord4sv", - "glLoadTransposeMatrixd", - "glLoadTransposeMatrixf", - "glMultTransposeMatrixd", - "glMultTransposeMatrixf", - "glSampleCoverage", - "glSamplePass", - "glActiveTextureARB", - "glClientActiveTextureARB", - "glMultiTexCoord1dARB", - "glMultiTexCoord1dvARB", - "glMultiTexCoord1fARB", - "glMultiTexCoord1fvARB", - "glMultiTexCoord1iARB", - "glMultiTexCoord1ivARB", - "glMultiTexCoord1sARB", - "glMultiTexCoord1svARB", - "glMultiTexCoord2dARB", - "glMultiTexCoord2dvARB", - "glMultiTexCoord2fARB", - "glMultiTexCoord2fvARB", - "glMultiTexCoord2iARB", - "glMultiTexCoord2ivARB", - "glMultiTexCoord2sARB", - "glMultiTexCoord2svARB", - "glMultiTexCoord3dARB", - "glMultiTexCoord3dvARB", - "glMultiTexCoord3fARB", - "glMultiTexCoord3fvARB", - "glMultiTexCoord3iARB", - "glMultiTexCoord3ivARB", - "glMultiTexCoord3sARB", - "glMultiTexCoord3svARB", - "glMultiTexCoord4dARB", - "glMultiTexCoord4dvARB", - "glMultiTexCoord4fARB", - "glMultiTexCoord4fvARB", - "glMultiTexCoord4iARB", - "glMultiTexCoord4ivARB", - "glMultiTexCoord4sARB", - "glMultiTexCoord4svARB", - "glBlendColorEXT", - "glPolygonOffsetEXT", - "glTexImage3DEXT", - "glTexSubImage3DEXT", - "glCopyTexSubImage3DEXT", - "glGenTexturesEXT", - "glDeleteTexturesEXT", - "glBindTextureEXT", - "glPrioritizeTexturesEXT", - "glAreTexturesResidentEXT", - "glIsTextureEXT", - "glVertexPointerEXT", - "glNormalPointerEXT", - "glColorPointerEXT", - "glIndexPointerEXT", - "glTexCoordPointerEXT", - "glEdgeFlagPointerEXT", - "glGetPointervEXT", - "glArrayElementEXT", - "glDrawArraysEXT", - "glBlendEquationEXT", - "glPointParameterfEXT", - "glPointParameterfvEXT", - "glPointParameterfSGIS", - "glPointParameterfvSGIS", - "glColorTableEXT", - "glColorSubTableEXT", - "glGetColorTableEXT", - "glGetColorTableParameterfvEXT", - "glGetColorTableParameterivEXT", - "glLockArraysEXT", - "glUnlockArraysEXT", - "glLoadTransposeMatrixfARB", - "glLoadTransposeMatrixdARB", - "glMultTransposeMatrixfARB", - "glMultTransposeMatrixdARB", - "glSampleCoverageARB", - "glCompressedTexImage3DARB", - "glCompressedTexImage2DARB", - "glCompressedTexImage1DARB", - "glCompressedTexSubImage3DARB", - "glCompressedTexSubImage2DARB", - "glCompressedTexSubImage1DARB", - "glGetCompressedTexImageARB", - "glWeightbvARB", - "glWeightsvARB", - "glWeightivARB", - "glWeightfvARB", - "glWeightdvARB", - "glWeightubvARB", - "glWeightusvARB", - "glWeightuivARB", - "glWeightPointerARB", - "glVertexBlendARB", - "glCurrentPaletteMatrixARB", - "glMatrixIndexubvARB", - "glMatrixIndexusvARB", - "glMatrixIndexuivARB", - "glMatrixIndexPointerARB", - "glGetTexFilterFuncSGIS", - "glTexFilterFuncSGIS", - "glTexSubImage1DEXT", - "glTexSubImage2DEXT", - "glCopyTexImage1DEXT", - "glCopyTexImage2DEXT", - "glCopyTexSubImage1DEXT", - "glCopyTexSubImage2DEXT", - "glGetHistogramEXT", - "glGetHistogramParameterfvEXT", - "glGetHistogramParameterivEXT", - "glGetMinmaxEXT", - "glGetMinmaxParameterfvEXT", - "glGetMinmaxParameterivEXT", - "glHistogramEXT", - "glMinmaxEXT", - "glResetHistogramEXT", - "glResetMinmaxEXT", - "glConvolutionFilter1DEXT", - "glConvolutionFilter2DEXT", - "glConvolutionParameterfEXT", - "glConvolutionParameterfvEXT", - "glConvolutionParameteriEXT", - "glConvolutionParameterivEXT", - "glCopyConvolutionFilter1DEXT", - "glCopyConvolutionFilter2DEXT", - "glGetConvolutionFilterEXT", - "glGetConvolutionParameterfvEXT", - "glGetConvolutionParameterivEXT", - "glGetSeparableFilterEXT", - "glSeparableFilter2DEXT", - "glColorTableSGI", - "glColorTableParameterfvSGI", - "glColorTableParameterivSGI", - "glCopyColorTableSGI", - "glGetColorTableSGI", - "glGetColorTableParameterfvSGI", - "glGetColorTableParameterivSGI", - "glPixelTexGenSGIX", - "glPixelTexGenParameteriSGIS", - "glPixelTexGenParameterivSGIS", - "glPixelTexGenParameterfSGIS", - "glPixelTexGenParameterfvSGIS", - "glGetPixelTexGenParameterivSGIS", - "glGetPixelTexGenParameterfvSGIS", - "glTexImage4DSGIS", - "glTexSubImage4DSGIS", - "glDetailTexFuncSGIS", - "glGetDetailTexFuncSGIS", - "glSharpenTexFuncSGIS", - "glGetSharpenTexFuncSGIS", - "glSampleMaskSGIS", - "glSamplePatternSGIS", - "glSpriteParameterfSGIX", - "glSpriteParameterfvSGIX", - "glSpriteParameteriSGIX", - "glSpriteParameterivSGIX", - "glPointParameterfARB", - "glPointParameterfvARB", - "glGetInstrumentsSGIX", - "glInstrumentsBufferSGIX", - "glPollInstrumentsSGIX", - "glReadInstrumentsSGIX", - "glStartInstrumentsSGIX", - "glStopInstrumentsSGIX", - "glFrameZoomSGIX", - "glTagSampleBufferSGIX", - "glDeformationMap3dSGIX", - "glDeformationMap3fSGIX", - "glDeformSGIX", - "glLoadIdentityDeformationMapSGIX", - "glReferencePlaneSGIX", - "glFlushRasterSGIX", - "glFogFuncSGIS", - "glGetFogFuncSGIS", - "glImageTransformParameteriHP", - "glImageTransformParameterfHP", - "glImageTransformParameterivHP", - "glImageTransformParameterfvHP", - "glGetImageTransformParameterivHP", - "glGetImageTransformParameterfvHP", - "glCopyColorSubTableEXT", - "glHintPGI", - "glGetListParameterfvSGIX", - "glGetListParameterivSGIX", - "glListParameterfSGIX", - "glListParameterfvSGIX", - "glListParameteriSGIX", - "glListParameterivSGIX", - "glIndexMaterialEXT", - "glIndexFuncEXT", - "glCullParameterdvEXT", - "glCullParameterfvEXT", - "glFragmentColorMaterialSGIX", - "glFragmentLightfSGIX", - "glFragmentLightfvSGIX", - "glFragmentLightiSGIX", - "glFragmentLightivSGIX", - "glFragmentLightModelfSGIX", - "glFragmentLightModelfvSGIX", - "glFragmentLightModeliSGIX", - "glFragmentLightModelivSGIX", - "glFragmentMaterialfSGIX", - "glFragmentMaterialfvSGIX", - "glFragmentMaterialiSGIX", - "glFragmentMaterialivSGIX", - "glGetFragmentLightfvSGIX", - "glGetFragmentLightivSGIX", - "glGetFragmentMaterialfvSGIX", - "glGetFragmentMaterialivSGIX", - "glLightEnviSGIX", - "glDrawRangeElementsEXT", - "glApplyTextureEXT", - "glTextureLightEXT", - "glTextureMaterialEXT", - "glAsyncMarkerSGIX", - "glFinishAsyncSGIX", - "glPollAsyncSGIX", - "glGenAsyncMarkersSGIX", - "glDeleteAsyncMarkersSGIX", - "glIsAsyncMarkerSGIX", - "glVertexPointervINTEL", - "glNormalPointervINTEL", - "glColorPointervINTEL", - "glTexCoordPointervINTEL", - "glPixelTransformParameteriEXT", - "glPixelTransformParameterfEXT", - "glPixelTransformParameterivEXT", - "glPixelTransformParameterfvEXT", - "glSecondaryColor3bEXT", - "glSecondaryColor3bvEXT", - "glSecondaryColor3dEXT", - "glSecondaryColor3dvEXT", - "glSecondaryColor3fEXT", - "glSecondaryColor3fvEXT", - "glSecondaryColor3iEXT", - "glSecondaryColor3ivEXT", - "glSecondaryColor3sEXT", - "glSecondaryColor3svEXT", - "glSecondaryColor3ubEXT", - "glSecondaryColor3ubvEXT", - "glSecondaryColor3uiEXT", - "glSecondaryColor3uivEXT", - "glSecondaryColor3usEXT", - "glSecondaryColor3usvEXT", - "glSecondaryColorPointerEXT", - "glTextureNormalEXT", - "glMultiDrawArraysEXT", - "glMultiDrawElementsEXT", - "glFogCoordfEXT", - "glFogCoordfvEXT", - "glFogCoorddEXT", - "glFogCoorddvEXT", - "glFogCoordPointerEXT", - "glTangent3bEXT", - "glTangent3bvEXT", - "glTangent3dEXT", - "glTangent3dvEXT", - "glTangent3fEXT", - "glTangent3fvEXT", - "glTangent3iEXT", - "glTangent3ivEXT", - "glTangent3sEXT", - "glTangent3svEXT", - "glBinormal3bEXT", - "glBinormal3bvEXT", - "glBinormal3dEXT", - "glBinormal3dvEXT", - "glBinormal3fEXT", - "glBinormal3fvEXT", - "glBinormal3iEXT", - "glBinormal3ivEXT", - "glBinormal3sEXT", - "glBinormal3svEXT", - "glTangentPointerEXT", - "glBinormalPointerEXT", - "glFinishTextureSUNX", - "glGlobalAlphaFactorbSUN", - "glGlobalAlphaFactorsSUN", - "glGlobalAlphaFactoriSUN", - "glGlobalAlphaFactorfSUN", - "glGlobalAlphaFactordSUN", - "glGlobalAlphaFactorubSUN", - "glGlobalAlphaFactorusSUN", - "glGlobalAlphaFactoruiSUN", - "glReplacementCodeuiSUN", - "glReplacementCodeusSUN", - "glReplacementCodeubSUN", - "glReplacementCodeuivSUN", - "glReplacementCodeusvSUN", - "glReplacementCodeubvSUN", - "glReplacementCodePointerSUN", - "glColor4ubVertex2fSUN", - "glColor4ubVertex2fvSUN", - "glColor4ubVertex3fSUN", - "glColor4ubVertex3fvSUN", - "glColor3fVertex3fSUN", - "glColor3fVertex3fvSUN", - "glNormal3fVertex3fSUN", - "glNormal3fVertex3fvSUN", - "glColor4fNormal3fVertex3fSUN", - "glColor4fNormal3fVertex3fvSUN", - "glTexCoord2fVertex3fSUN", - "glTexCoord2fVertex3fvSUN", - "glTexCoord4fVertex4fSUN", - "glTexCoord4fVertex4fvSUN", - "glTexCoord2fColor4ubVertex3fSUN", - "glTexCoord2fColor4ubVertex3fvSUN", - "glTexCoord2fColor3fVertex3fSUN", - "glTexCoord2fColor3fVertex3fvSUN", - "glTexCoord2fNormal3fVertex3fSUN", - "glTexCoord2fNormal3fVertex3fvSUN", - "glTexCoord2fColor4fNormal3fVertex3fSUN", - "glTexCoord2fColor4fNormal3fVertex3fvSUN", - "glTexCoord4fColor4fNormal3fVertex4fSUN", - "glTexCoord4fColor4fNormal3fVertex4fvSUN", - "glReplacementCodeuiVertex3fSUN", - "glReplacementCodeuiVertex3fvSUN", - "glReplacementCodeuiColor4ubVertex3fSUN", - "glReplacementCodeuiColor4ubVertex3fvSUN", - "glReplacementCodeuiColor3fVertex3fSUN", - "glReplacementCodeuiColor3fVertex3fvSUN", - "glReplacementCodeuiNormal3fVertex3fSUN", - "glReplacementCodeuiNormal3fVertex3fvSUN", - "glReplacementCodeuiColor4fNormal3fVertex3fSUN", - "glReplacementCodeuiColor4fNormal3fVertex3fvSUN", - "glReplacementCodeuiTexCoord2fVertex3fSUN", - "glReplacementCodeuiTexCoord2fVertex3fvSUN", - "glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN", - "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN", - "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN", - "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN", - "glBlendFuncSeparateEXT", - "glBlendFuncSeparateINGR", - "glVertexWeightfEXT", - "glVertexWeightfvEXT", - "glVertexWeightPointerEXT", - "glFlushVertexArrayRangeNV", - "glVertexArrayRangeNV", - "glCombinerParameterfvNV", - "glCombinerParameterfNV", - "glCombinerParameterivNV", - "glCombinerParameteriNV", - "glCombinerInputNV", - "glCombinerOutputNV", - "glFinalCombinerInputNV", - "glGetCombinerInputParameterfvNV", - "glGetCombinerInputParameterivNV", - "glGetCombinerOutputParameterfvNV", - "glGetCombinerOutputParameterivNV", - "glGetFinalCombinerInputParameterfvNV", - "glGetFinalCombinerInputParameterivNV", - "glMultiModeDrawArraysIBM", - "glMultiModeDrawElementsIBM", - "glColorPointerListIBM", - "glSecondaryColorPointerListIBM", - "glEdgeFlagPointerListIBM", - "glFogCoordPointerListIBM", - "glIndexPointerListIBM", - "glNormalPointerListIBM", - "glTexCoordPointerListIBM", - "glVertexPointerListIBM", - "glTbufferMask3DFX", - "glSampleMaskEXT", - "glSamplePatternEXT", - "glTextureColorMaskSGIS", - "glIglooInterfaceSGIX", - "glGenFencesNV", - "glDeleteFencesNV", - "glSetFenceNV", - "glTestFenceNV", - "glFinishFenceNV", - "glIsFenceNV", - "glGetFenceivNV", - "glMapControlPointsNV", - "glMapParameterivNV", - "glMapParameterfvNV", - "glGetMapControlPointsNV", - "glGetMapParameterivNV", - "glGetMapParameterfvNV", - "glGetMapAttribParameterivNV", - "glGetMapAttribParameterfvNV", - "glEvalMapsNV", - "glCombinerStageParameterfvNV", - "glGetCombinerStageParameterfvNV", - "glBindProgramNV", - "glDeleteProgramsNV", - "glExecuteProgramNV", - "glGenProgramsNV", - "glAreProgramsResidentNV", - "glRequestResidentProgramsNV", - "glGetProgramParameterfvNV", - "glGetProgramParameterdvNV", - "glGetProgramivNV", - "glGetProgramStringNV", - "glGetTrackMatrixivNV", - "glGetVertexAttribdvNV", - "glGetVertexAttribfvNV", - "glGetVertexAttribivNV", - "glGetVertexAttribPointervNV", - "glIsProgramNV", - "glLoadProgramNV", - "glProgramParameter4fNV", - "glProgramParameter4dNV", - "glProgramParameter4dvNV", - "glProgramParameter4fvNV", - "glProgramParameters4dvNV", - "glProgramParameters4fvNV", - "glTrackMatrixNV", - "glVertexAttribPointerNV", - "glVertexAttrib1sNV", - "glVertexAttrib1fNV", - "glVertexAttrib1dNV", - "glVertexAttrib2sNV", - "glVertexAttrib2fNV", - "glVertexAttrib2dNV", - "glVertexAttrib3sNV", - "glVertexAttrib3fNV", - "glVertexAttrib3dNV", - "glVertexAttrib4sNV", - "glVertexAttrib4fNV", - "glVertexAttrib4dNV", - "glVertexAttrib4ubNV", - "glVertexAttrib1svNV", - "glVertexAttrib1fvNV", - "glVertexAttrib1dvNV", - "glVertexAttrib2svNV", - "glVertexAttrib2fvNV", - "glVertexAttrib2dvNV", - "glVertexAttrib3svNV", - "glVertexAttrib3fvNV", - "glVertexAttrib3dvNV", - "glVertexAttrib4svNV", - "glVertexAttrib4fvNV", - "glVertexAttrib4dvNV", - "glVertexAttrib4ubvNV", - "glVertexAttribs1svNV", - "glVertexAttribs1fvNV", - "glVertexAttribs1dvNV", - "glVertexAttribs2svNV", - "glVertexAttribs2fvNV", - "glVertexAttribs2dvNV", - "glVertexAttribs3svNV", - "glVertexAttribs3fvNV", - "glVertexAttribs3dvNV", - "glVertexAttribs4svNV", - "glVertexAttribs4fvNV", - "glVertexAttribs4dvNV", - "glVertexAttribs4ubvNV", - "glTexBumpParameterivATI", - "glTexBumpParameterfvATI", - "glGetTexBumpParameterivATI", - "glGetTexBumpParameterfvATI", - "glGenFragmentShadersATI", - "glBindFragmentShaderATI", - "glDeleteFragmentShaderATI", - "glBeginFragmentShaderATI", - "glEndFragmentShaderATI", - "glPassTexCoordATI", - "glSampleMapATI", - "glColorFragmentOp1ATI", - "glColorFragmentOp2ATI", - "glColorFragmentOp3ATI", - "glAlphaFragmentOp1ATI", - "glAlphaFragmentOp2ATI", - "glAlphaFragmentOp3ATI", - "glSetFragmentShaderConstantATI", - "glPNTrianglesiATI", - "glPNTrianglesfATI", - "glNewObjectBufferATI", - "glIsObjectBufferATI", - "glUpdateObjectBufferATI", - "glGetObjectBufferfvATI", - "glGetObjectBufferivATI", - "glDeleteObjectBufferATI", - "glArrayObjectATI", - "glGetArrayObjectfvATI", - "glGetArrayObjectivATI", - "glVariantArrayObjectATI", - "glGetVariantArrayObjectfvATI", - "glGetVariantArrayObjectivATI", - "glBeginVertexShaderEXT", - "glEndVertexShaderEXT", - "glBindVertexShaderEXT", - "glGenVertexShadersEXT", - "glDeleteVertexShaderEXT", - "glShaderOp1EXT", - "glShaderOp2EXT", - "glShaderOp3EXT", - "glSwizzleEXT", - "glWriteMaskEXT", - "glInsertComponentEXT", - "glExtractComponentEXT", - "glGenSymbolsEXT", - "glSetInvariantEXT", - "glSetLocalConstantEXT", - "glVariantbvEXT", - "glVariantsvEXT", - "glVariantivEXT", - "glVariantfvEXT", - "glVariantdvEXT", - "glVariantubvEXT", - "glVariantusvEXT", - "glVariantuivEXT", - "glVariantPointerEXT", - "glEnableVariantClientStateEXT", - "glDisableVariantClientStateEXT", - "glBindLightParameterEXT", - "glBindMaterialParameterEXT", - "glBindTexGenParameterEXT", - "glBindTextureUnitParameterEXT", - "glBindParameterEXT", - "glIsVariantEnabledEXT", - "glGetVariantBooleanvEXT", - "glGetVariantIntegervEXT", - "glGetVariantFloatvEXT", - "glGetVariantPointervEXT", - "glGetInvariantBooleanvEXT", - "glGetInvariantIntegervEXT", - "glGetInvariantFloatvEXT", - "glGetLocalConstantBooleanvEXT", - "glGetLocalConstantIntegervEXT", - "glGetLocalConstantFloatvEXT", - "glVertexStream1s", - "glVertexStream1sv", - "glVertexStream1i", - "glVertexStream1iv", - "glVertexStream1f", - "glVertexStream1fv", - "glVertexStream1d", - "glVertexStream1dv", - "glVertexStream2s", - "glVertexStream2sv", - "glVertexStream2i", - "glVertexStream2iv", - "glVertexStream2f", - "glVertexStream2fv", - "glVertexStream2d", - "glVertexStream2dv", - "glVertexStream3s", - "glVertexStream3sv", - "glVertexStream3i", - "glVertexStream3iv", - "glVertexStream3f", - "glVertexStream3fv", - "glVertexStream3d", - "glVertexStream3dv", - "glVertexStream4s", - "glVertexStream4sv", - "glVertexStream4i", - "glVertexStream4iv", - "glVertexStream4f", - "glVertexStream4fv", - "glVertexStream4d", - "glVertexStream4dv", - "glNormalStream3b", - "glNormalStream3bv", - "glNormalStream3s", - "glNormalStream3sv", - "glNormalStream3i", - "glNormalStream3iv", - "glNormalStream3f", - "glNormalStream3fv", - "glNormalStream3d", - "glNormalStream3dv", - "glClientActiveVertexStream", - "glVertexBlendEnvi", - "glVertexBlendEnvf", -/* C2J Parser Version 3.0: Java program parsed successfully. */ +
+ "glClearIndex",
+ "glClearColor",
+ "glClear",
+ "glIndexMask",
+ "glColorMask",
+ "glAlphaFunc",
+ "glBlendFunc",
+ "glLogicOp",
+ "glCullFace",
+ "glFrontFace",
+ "glPointSize",
+ "glLineWidth",
+ "glLineStipple",
+ "glPolygonMode",
+ "glPolygonOffset",
+ "glPolygonStipple",
+ "glGetPolygonStipple",
+ "glEdgeFlag",
+ "glEdgeFlagv",
+ "glScissor",
+ "glClipPlane",
+ "glGetClipPlane",
+ "glDrawBuffer",
+ "glReadBuffer",
+ "glEnable",
+ "glDisable",
+ "glIsEnabled",
+ "glEnableClientState",
+ "glDisableClientState",
+ "glGetBooleanv",
+ "glGetDoublev",
+ "glGetFloatv",
+ "glGetIntegerv",
+ "glPushAttrib",
+ "glPopAttrib",
+ "glPushClientAttrib",
+ "glPopClientAttrib",
+ "glRenderMode",
+ "glGetError",
+ "glFinish",
+ "glFlush",
+ "glHint",
+ "glClearDepth",
+ "glDepthFunc",
+ "glDepthMask",
+ "glDepthRange",
+ "glClearAccum",
+ "glAccum",
+ "glMatrixMode",
+ "glOrtho",
+ "glFrustum",
+ "glViewport",
+ "glPushMatrix",
+ "glPopMatrix",
+ "glLoadIdentity",
+ "glLoadMatrixd",
+ "glLoadMatrixf",
+ "glMultMatrixd",
+ "glMultMatrixf",
+ "glRotated",
+ "glRotatef",
+ "glScaled",
+ "glScalef",
+ "glTranslated",
+ "glTranslatef",
+ "glIsList",
+ "glDeleteLists",
+ "glGenLists",
+ "glNewList",
+ "glEndList",
+ "glCallList",
+ "glCallLists",
+ "glListBase",
+ "glBegin",
+ "glEnd",
+ "glVertex2d",
+ "glVertex2f",
+ "glVertex2i",
+ "glVertex2s",
+ "glVertex3d",
+ "glVertex3f",
+ "glVertex3i",
+ "glVertex3s",
+ "glVertex4d",
+ "glVertex4f",
+ "glVertex4i",
+ "glVertex4s",
+ "glVertex2dv",
+ "glVertex2fv",
+ "glVertex2iv",
+ "glVertex2sv",
+ "glVertex3dv",
+ "glVertex3fv",
+ "glVertex3iv",
+ "glVertex3sv",
+ "glVertex4dv",
+ "glVertex4fv",
+ "glVertex4iv",
+ "glVertex4sv",
+ "glNormal3b",
+ "glNormal3d",
+ "glNormal3f",
+ "glNormal3i",
+ "glNormal3s",
+ "glNormal3bv",
+ "glNormal3dv",
+ "glNormal3fv",
+ "glNormal3iv",
+ "glNormal3sv",
+ "glIndexd",
+ "glIndexf",
+ "glIndexi",
+ "glIndexs",
+ "glIndexub",
+ "glIndexdv",
+ "glIndexfv",
+ "glIndexiv",
+ "glIndexsv",
+ "glIndexubv",
+ "glColor3b",
+ "glColor3d",
+ "glColor3f",
+ "glColor3i",
+ "glColor3s",
+ "glColor3ub",
+ "glColor3ui",
+ "glColor3us",
+ "glColor4b",
+ "glColor4d",
+ "glColor4f",
+ "glColor4i",
+ "glColor4s",
+ "glColor4ub",
+ "glColor4ui",
+ "glColor4us",
+ "glColor3bv",
+ "glColor3dv",
+ "glColor3fv",
+ "glColor3iv",
+ "glColor3sv",
+ "glColor3ubv",
+ "glColor3uiv",
+ "glColor3usv",
+ "glColor4bv",
+ "glColor4dv",
+ "glColor4fv",
+ "glColor4iv",
+ "glColor4sv",
+ "glColor4ubv",
+ "glColor4uiv",
+ "glColor4usv",
+ "glTexCoord1d",
+ "glTexCoord1f",
+ "glTexCoord1i",
+ "glTexCoord1s",
+ "glTexCoord2d",
+ "glTexCoord2f",
+ "glTexCoord2i",
+ "glTexCoord2s",
+ "glTexCoord3d",
+ "glTexCoord3f",
+ "glTexCoord3i",
+ "glTexCoord3s",
+ "glTexCoord4d",
+ "glTexCoord4f",
+ "glTexCoord4i",
+ "glTexCoord4s",
+ "glTexCoord1dv",
+ "glTexCoord1fv",
+ "glTexCoord1iv",
+ "glTexCoord1sv",
+ "glTexCoord2dv",
+ "glTexCoord2fv",
+ "glTexCoord2iv",
+ "glTexCoord2sv",
+ "glTexCoord3dv",
+ "glTexCoord3fv",
+ "glTexCoord3iv",
+ "glTexCoord3sv",
+ "glTexCoord4dv",
+ "glTexCoord4fv",
+ "glTexCoord4iv",
+ "glTexCoord4sv",
+ "glRasterPos2d",
+ "glRasterPos2f",
+ "glRasterPos2i",
+ "glRasterPos2s",
+ "glRasterPos3d",
+ "glRasterPos3f",
+ "glRasterPos3i",
+ "glRasterPos3s",
+ "glRasterPos4d",
+ "glRasterPos4f",
+ "glRasterPos4i",
+ "glRasterPos4s",
+ "glRasterPos2dv",
+ "glRasterPos2fv",
+ "glRasterPos2iv",
+ "glRasterPos2sv",
+ "glRasterPos3dv",
+ "glRasterPos3fv",
+ "glRasterPos3iv",
+ "glRasterPos3sv",
+ "glRasterPos4dv",
+ "glRasterPos4fv",
+ "glRasterPos4iv",
+ "glRasterPos4sv",
+ "glRectd",
+ "glRectf",
+ "glRecti",
+ "glRects",
+ "glRectdv",
+ "glRectfv",
+ "glRectiv",
+ "glRectsv",
+ "glVertexPointer",
+ "glNormalPointer",
+ "glColorPointer",
+ "glIndexPointer",
+ "glTexCoordPointer",
+ "glEdgeFlagPointer",
+ "glGetPointerv",
+ "glArrayElement",
+ "glDrawArrays",
+ "glDrawElements",
+ "glInterleavedArrays",
+ "glShadeModel",
+ "glLightf",
+ "glLighti",
+ "glLightfv",
+ "glLightiv",
+ "glGetLightfv",
+ "glGetLightiv",
+ "glLightModelf",
+ "glLightModeli",
+ "glLightModelfv",
+ "glLightModeliv",
+ "glMaterialf",
+ "glMateriali",
+ "glMaterialfv",
+ "glMaterialiv",
+ "glGetMaterialfv",
+ "glGetMaterialiv",
+ "glColorMaterial",
+ "glPixelZoom",
+ "glPixelStoref",
+ "glPixelStorei",
+ "glPixelTransferf",
+ "glPixelTransferi",
+ "glPixelMapfv",
+ "glPixelMapuiv",
+ "glPixelMapusv",
+ "glGetPixelMapfv",
+ "glGetPixelMapuiv",
+ "glGetPixelMapusv",
+ "glBitmap",
+ "glReadPixels",
+ "glDrawPixels",
+ "glCopyPixels",
+ "glStencilFunc",
+ "glStencilMask",
+ "glStencilOp",
+ "glClearStencil",
+ "glTexGend",
+ "glTexGenf",
+ "glTexGeni",
+ "glTexGendv",
+ "glTexGenfv",
+ "glTexGeniv",
+ "glGetTexGendv",
+ "glGetTexGenfv",
+ "glGetTexGeniv",
+ "glTexEnvf",
+ "glTexEnvi",
+ "glTexEnvfv",
+ "glTexEnviv",
+ "glGetTexEnvfv",
+ "glGetTexEnviv",
+ "glTexParameterf",
+ "glTexParameteri",
+ "glTexParameterfv",
+ "glTexParameteriv",
+ "glGetTexParameterfv",
+ "glGetTexParameteriv",
+ "glGetTexLevelParameterfv",
+ "glGetTexLevelParameteriv",
+ "glTexImage1D",
+ "glTexImage2D",
+ "glGetTexImage",
+ "glGenTextures",
+ "glDeleteTextures",
+ "glBindTexture",
+ "glPrioritizeTextures",
+ "glAreTexturesResident",
+ "glIsTexture",
+ "glTexSubImage1D",
+ "glTexSubImage2D",
+ "glCopyTexImage1D",
+ "glCopyTexImage2D",
+ "glCopyTexSubImage1D",
+ "glCopyTexSubImage2D",
+ "glMap1d",
+ "glMap1f",
+ "glMap2d",
+ "glMap2f",
+ "glGetMapdv",
+ "glGetMapfv",
+ "glGetMapiv",
+ "glEvalCoord1d",
+ "glEvalCoord1f",
+ "glEvalCoord1dv",
+ "glEvalCoord1fv",
+ "glEvalCoord2d",
+ "glEvalCoord2f",
+ "glEvalCoord2dv",
+ "glEvalCoord2fv",
+ "glMapGrid1d",
+ "glMapGrid1f",
+ "glMapGrid2d",
+ "glMapGrid2f",
+ "glEvalPoint1",
+ "glEvalPoint2",
+ "glEvalMesh1",
+ "glEvalMesh2",
+ "glFogf",
+ "glFogi",
+ "glFogfv",
+ "glFogiv",
+ "glFeedbackBuffer",
+ "glPassThrough",
+ "glSelectBuffer",
+ "glInitNames",
+ "glLoadName",
+ "glPushName",
+ "glPopName",
+ "glDrawRangeElements",
+ "glTexImage3D",
+ "glTexSubImage3D",
+ "glCopyTexSubImage3D",
+ "glColorTable",
+ "glColorSubTable",
+ "glColorTableParameteriv",
+ "glColorTableParameterfv",
+ "glCopyColorSubTable",
+ "glCopyColorTable",
+ "glGetColorTable",
+ "glGetColorTableParameterfv",
+ "glGetColorTableParameteriv",
+ "glBlendEquation",
+ "glBlendColor",
+ "glHistogram",
+ "glResetHistogram",
+ "glGetHistogram",
+ "glGetHistogramParameterfv",
+ "glGetHistogramParameteriv",
+ "glMinmax",
+ "glResetMinmax",
+ "glGetMinmax",
+ "glGetMinmaxParameterfv",
+ "glGetMinmaxParameteriv",
+ "glConvolutionFilter1D",
+ "glConvolutionFilter2D",
+ "glConvolutionParameterf",
+ "glConvolutionParameterfv",
+ "glConvolutionParameteri",
+ "glConvolutionParameteriv",
+ "glCopyConvolutionFilter1D",
+ "glCopyConvolutionFilter2D",
+ "glGetConvolutionFilter",
+ "glGetConvolutionParameterfv",
+ "glGetConvolutionParameteriv",
+ "glSeparableFilter2D",
+ "glGetSeparableFilter",
+ "glActiveTexture",
+ "glClientActiveTexture",
+ "glCompressedTexImage1D",
+ "glCompressedTexImage2D",
+ "glCompressedTexImage3D",
+ "glCompressedTexSubImage1D",
+ "glCompressedTexSubImage2D",
+ "glCompressedTexSubImage3D",
+ "glGetCompressedTexImage",
+ "glMultiTexCoord1d",
+ "glMultiTexCoord1dv",
+ "glMultiTexCoord1f",
+ "glMultiTexCoord1fv",
+ "glMultiTexCoord1i",
+ "glMultiTexCoord1iv",
+ "glMultiTexCoord1s",
+ "glMultiTexCoord1sv",
+ "glMultiTexCoord2d",
+ "glMultiTexCoord2dv",
+ "glMultiTexCoord2f",
+ "glMultiTexCoord2fv",
+ "glMultiTexCoord2i",
+ "glMultiTexCoord2iv",
+ "glMultiTexCoord2s",
+ "glMultiTexCoord2sv",
+ "glMultiTexCoord3d",
+ "glMultiTexCoord3dv",
+ "glMultiTexCoord3f",
+ "glMultiTexCoord3fv",
+ "glMultiTexCoord3i",
+ "glMultiTexCoord3iv",
+ "glMultiTexCoord3s",
+ "glMultiTexCoord3sv",
+ "glMultiTexCoord4d",
+ "glMultiTexCoord4dv",
+ "glMultiTexCoord4f",
+ "glMultiTexCoord4fv",
+ "glMultiTexCoord4i",
+ "glMultiTexCoord4iv",
+ "glMultiTexCoord4s",
+ "glMultiTexCoord4sv",
+ "glLoadTransposeMatrixd",
+ "glLoadTransposeMatrixf",
+ "glMultTransposeMatrixd",
+ "glMultTransposeMatrixf",
+ "glSampleCoverage",
+ "glSamplePass",
+ "glActiveTextureARB",
+ "glClientActiveTextureARB",
+ "glMultiTexCoord1dARB",
+ "glMultiTexCoord1dvARB",
+ "glMultiTexCoord1fARB",
+ "glMultiTexCoord1fvARB",
+ "glMultiTexCoord1iARB",
+ "glMultiTexCoord1ivARB",
+ "glMultiTexCoord1sARB",
+ "glMultiTexCoord1svARB",
+ "glMultiTexCoord2dARB",
+ "glMultiTexCoord2dvARB",
+ "glMultiTexCoord2fARB",
+ "glMultiTexCoord2fvARB",
+ "glMultiTexCoord2iARB",
+ "glMultiTexCoord2ivARB",
+ "glMultiTexCoord2sARB",
+ "glMultiTexCoord2svARB",
+ "glMultiTexCoord3dARB",
+ "glMultiTexCoord3dvARB",
+ "glMultiTexCoord3fARB",
+ "glMultiTexCoord3fvARB",
+ "glMultiTexCoord3iARB",
+ "glMultiTexCoord3ivARB",
+ "glMultiTexCoord3sARB",
+ "glMultiTexCoord3svARB",
+ "glMultiTexCoord4dARB",
+ "glMultiTexCoord4dvARB",
+ "glMultiTexCoord4fARB",
+ "glMultiTexCoord4fvARB",
+ "glMultiTexCoord4iARB",
+ "glMultiTexCoord4ivARB",
+ "glMultiTexCoord4sARB",
+ "glMultiTexCoord4svARB",
+ "glBlendColorEXT",
+ "glPolygonOffsetEXT",
+ "glTexImage3DEXT",
+ "glTexSubImage3DEXT",
+ "glCopyTexSubImage3DEXT",
+ "glGenTexturesEXT",
+ "glDeleteTexturesEXT",
+ "glBindTextureEXT",
+ "glPrioritizeTexturesEXT",
+ "glAreTexturesResidentEXT",
+ "glIsTextureEXT",
+ "glVertexPointerEXT",
+ "glNormalPointerEXT",
+ "glColorPointerEXT",
+ "glIndexPointerEXT",
+ "glTexCoordPointerEXT",
+ "glEdgeFlagPointerEXT",
+ "glGetPointervEXT",
+ "glArrayElementEXT",
+ "glDrawArraysEXT",
+ "glBlendEquationEXT",
+ "glPointParameterfEXT",
+ "glPointParameterfvEXT",
+ "glPointParameterfSGIS",
+ "glPointParameterfvSGIS",
+ "glColorTableEXT",
+ "glColorSubTableEXT",
+ "glGetColorTableEXT",
+ "glGetColorTableParameterfvEXT",
+ "glGetColorTableParameterivEXT",
+ "glLockArraysEXT",
+ "glUnlockArraysEXT",
+ "glLoadTransposeMatrixfARB",
+ "glLoadTransposeMatrixdARB",
+ "glMultTransposeMatrixfARB",
+ "glMultTransposeMatrixdARB",
+ "glSampleCoverageARB",
+ "glCompressedTexImage3DARB",
+ "glCompressedTexImage2DARB",
+ "glCompressedTexImage1DARB",
+ "glCompressedTexSubImage3DARB",
+ "glCompressedTexSubImage2DARB",
+ "glCompressedTexSubImage1DARB",
+ "glGetCompressedTexImageARB",
+ "glWeightbvARB",
+ "glWeightsvARB",
+ "glWeightivARB",
+ "glWeightfvARB",
+ "glWeightdvARB",
+ "glWeightubvARB",
+ "glWeightusvARB",
+ "glWeightuivARB",
+ "glWeightPointerARB",
+ "glVertexBlendARB",
+ "glCurrentPaletteMatrixARB",
+ "glMatrixIndexubvARB",
+ "glMatrixIndexusvARB",
+ "glMatrixIndexuivARB",
+ "glMatrixIndexPointerARB",
+ "glGetTexFilterFuncSGIS",
+ "glTexFilterFuncSGIS",
+ "glTexSubImage1DEXT",
+ "glTexSubImage2DEXT",
+ "glCopyTexImage1DEXT",
+ "glCopyTexImage2DEXT",
+ "glCopyTexSubImage1DEXT",
+ "glCopyTexSubImage2DEXT",
+ "glGetHistogramEXT",
+ "glGetHistogramParameterfvEXT",
+ "glGetHistogramParameterivEXT",
+ "glGetMinmaxEXT",
+ "glGetMinmaxParameterfvEXT",
+ "glGetMinmaxParameterivEXT",
+ "glHistogramEXT",
+ "glMinmaxEXT",
+ "glResetHistogramEXT",
+ "glResetMinmaxEXT",
+ "glConvolutionFilter1DEXT",
+ "glConvolutionFilter2DEXT",
+ "glConvolutionParameterfEXT",
+ "glConvolutionParameterfvEXT",
+ "glConvolutionParameteriEXT",
+ "glConvolutionParameterivEXT",
+ "glCopyConvolutionFilter1DEXT",
+ "glCopyConvolutionFilter2DEXT",
+ "glGetConvolutionFilterEXT",
+ "glGetConvolutionParameterfvEXT",
+ "glGetConvolutionParameterivEXT",
+ "glGetSeparableFilterEXT",
+ "glSeparableFilter2DEXT",
+ "glColorTableSGI",
+ "glColorTableParameterfvSGI",
+ "glColorTableParameterivSGI",
+ "glCopyColorTableSGI",
+ "glGetColorTableSGI",
+ "glGetColorTableParameterfvSGI",
+ "glGetColorTableParameterivSGI",
+ "glPixelTexGenSGIX",
+ "glPixelTexGenParameteriSGIS",
+ "glPixelTexGenParameterivSGIS",
+ "glPixelTexGenParameterfSGIS",
+ "glPixelTexGenParameterfvSGIS",
+ "glGetPixelTexGenParameterivSGIS",
+ "glGetPixelTexGenParameterfvSGIS",
+ "glTexImage4DSGIS",
+ "glTexSubImage4DSGIS",
+ "glDetailTexFuncSGIS",
+ "glGetDetailTexFuncSGIS",
+ "glSharpenTexFuncSGIS",
+ "glGetSharpenTexFuncSGIS",
+ "glSampleMaskSGIS",
+ "glSamplePatternSGIS",
+ "glSpriteParameterfSGIX",
+ "glSpriteParameterfvSGIX",
+ "glSpriteParameteriSGIX",
+ "glSpriteParameterivSGIX",
+ "glPointParameterfARB",
+ "glPointParameterfvARB",
+ "glGetInstrumentsSGIX",
+ "glInstrumentsBufferSGIX",
+ "glPollInstrumentsSGIX",
+ "glReadInstrumentsSGIX",
+ "glStartInstrumentsSGIX",
+ "glStopInstrumentsSGIX",
+ "glFrameZoomSGIX",
+ "glTagSampleBufferSGIX",
+ "glDeformationMap3dSGIX",
+ "glDeformationMap3fSGIX",
+ "glDeformSGIX",
+ "glLoadIdentityDeformationMapSGIX",
+ "glReferencePlaneSGIX",
+ "glFlushRasterSGIX",
+ "glFogFuncSGIS",
+ "glGetFogFuncSGIS",
+ "glImageTransformParameteriHP",
+ "glImageTransformParameterfHP",
+ "glImageTransformParameterivHP",
+ "glImageTransformParameterfvHP",
+ "glGetImageTransformParameterivHP",
+ "glGetImageTransformParameterfvHP",
+ "glCopyColorSubTableEXT",
+ "glHintPGI",
+ "glGetListParameterfvSGIX",
+ "glGetListParameterivSGIX",
+ "glListParameterfSGIX",
+ "glListParameterfvSGIX",
+ "glListParameteriSGIX",
+ "glListParameterivSGIX",
+ "glIndexMaterialEXT",
+ "glIndexFuncEXT",
+ "glCullParameterdvEXT",
+ "glCullParameterfvEXT",
+ "glFragmentColorMaterialSGIX",
+ "glFragmentLightfSGIX",
+ "glFragmentLightfvSGIX",
+ "glFragmentLightiSGIX",
+ "glFragmentLightivSGIX",
+ "glFragmentLightModelfSGIX",
+ "glFragmentLightModelfvSGIX",
+ "glFragmentLightModeliSGIX",
+ "glFragmentLightModelivSGIX",
+ "glFragmentMaterialfSGIX",
+ "glFragmentMaterialfvSGIX",
+ "glFragmentMaterialiSGIX",
+ "glFragmentMaterialivSGIX",
+ "glGetFragmentLightfvSGIX",
+ "glGetFragmentLightivSGIX",
+ "glGetFragmentMaterialfvSGIX",
+ "glGetFragmentMaterialivSGIX",
+ "glLightEnviSGIX",
+ "glDrawRangeElementsEXT",
+ "glApplyTextureEXT",
+ "glTextureLightEXT",
+ "glTextureMaterialEXT",
+ "glAsyncMarkerSGIX",
+ "glFinishAsyncSGIX",
+ "glPollAsyncSGIX",
+ "glGenAsyncMarkersSGIX",
+ "glDeleteAsyncMarkersSGIX",
+ "glIsAsyncMarkerSGIX",
+ "glVertexPointervINTEL",
+ "glNormalPointervINTEL",
+ "glColorPointervINTEL",
+ "glTexCoordPointervINTEL",
+ "glPixelTransformParameteriEXT",
+ "glPixelTransformParameterfEXT",
+ "glPixelTransformParameterivEXT",
+ "glPixelTransformParameterfvEXT",
+ "glSecondaryColor3bEXT",
+ "glSecondaryColor3bvEXT",
+ "glSecondaryColor3dEXT",
+ "glSecondaryColor3dvEXT",
+ "glSecondaryColor3fEXT",
+ "glSecondaryColor3fvEXT",
+ "glSecondaryColor3iEXT",
+ "glSecondaryColor3ivEXT",
+ "glSecondaryColor3sEXT",
+ "glSecondaryColor3svEXT",
+ "glSecondaryColor3ubEXT",
+ "glSecondaryColor3ubvEXT",
+ "glSecondaryColor3uiEXT",
+ "glSecondaryColor3uivEXT",
+ "glSecondaryColor3usEXT",
+ "glSecondaryColor3usvEXT",
+ "glSecondaryColorPointerEXT",
+ "glTextureNormalEXT",
+ "glMultiDrawArraysEXT",
+ "glMultiDrawElementsEXT",
+ "glFogCoordfEXT",
+ "glFogCoordfvEXT",
+ "glFogCoorddEXT",
+ "glFogCoorddvEXT",
+ "glFogCoordPointerEXT",
+ "glTangent3bEXT",
+ "glTangent3bvEXT",
+ "glTangent3dEXT",
+ "glTangent3dvEXT",
+ "glTangent3fEXT",
+ "glTangent3fvEXT",
+ "glTangent3iEXT",
+ "glTangent3ivEXT",
+ "glTangent3sEXT",
+ "glTangent3svEXT",
+ "glBinormal3bEXT",
+ "glBinormal3bvEXT",
+ "glBinormal3dEXT",
+ "glBinormal3dvEXT",
+ "glBinormal3fEXT",
+ "glBinormal3fvEXT",
+ "glBinormal3iEXT",
+ "glBinormal3ivEXT",
+ "glBinormal3sEXT",
+ "glBinormal3svEXT",
+ "glTangentPointerEXT",
+ "glBinormalPointerEXT",
+ "glFinishTextureSUNX",
+ "glGlobalAlphaFactorbSUN",
+ "glGlobalAlphaFactorsSUN",
+ "glGlobalAlphaFactoriSUN",
+ "glGlobalAlphaFactorfSUN",
+ "glGlobalAlphaFactordSUN",
+ "glGlobalAlphaFactorubSUN",
+ "glGlobalAlphaFactorusSUN",
+ "glGlobalAlphaFactoruiSUN",
+ "glReplacementCodeuiSUN",
+ "glReplacementCodeusSUN",
+ "glReplacementCodeubSUN",
+ "glReplacementCodeuivSUN",
+ "glReplacementCodeusvSUN",
+ "glReplacementCodeubvSUN",
+ "glReplacementCodePointerSUN",
+ "glColor4ubVertex2fSUN",
+ "glColor4ubVertex2fvSUN",
+ "glColor4ubVertex3fSUN",
+ "glColor4ubVertex3fvSUN",
+ "glColor3fVertex3fSUN",
+ "glColor3fVertex3fvSUN",
+ "glNormal3fVertex3fSUN",
+ "glNormal3fVertex3fvSUN",
+ "glColor4fNormal3fVertex3fSUN",
+ "glColor4fNormal3fVertex3fvSUN",
+ "glTexCoord2fVertex3fSUN",
+ "glTexCoord2fVertex3fvSUN",
+ "glTexCoord4fVertex4fSUN",
+ "glTexCoord4fVertex4fvSUN",
+ "glTexCoord2fColor4ubVertex3fSUN",
+ "glTexCoord2fColor4ubVertex3fvSUN",
+ "glTexCoord2fColor3fVertex3fSUN",
+ "glTexCoord2fColor3fVertex3fvSUN",
+ "glTexCoord2fNormal3fVertex3fSUN",
+ "glTexCoord2fNormal3fVertex3fvSUN",
+ "glTexCoord2fColor4fNormal3fVertex3fSUN",
+ "glTexCoord2fColor4fNormal3fVertex3fvSUN",
+ "glTexCoord4fColor4fNormal3fVertex4fSUN",
+ "glTexCoord4fColor4fNormal3fVertex4fvSUN",
+ "glReplacementCodeuiVertex3fSUN",
+ "glReplacementCodeuiVertex3fvSUN",
+ "glReplacementCodeuiColor4ubVertex3fSUN",
+ "glReplacementCodeuiColor4ubVertex3fvSUN",
+ "glReplacementCodeuiColor3fVertex3fSUN",
+ "glReplacementCodeuiColor3fVertex3fvSUN",
+ "glReplacementCodeuiNormal3fVertex3fSUN",
+ "glReplacementCodeuiNormal3fVertex3fvSUN",
+ "glReplacementCodeuiColor4fNormal3fVertex3fSUN",
+ "glReplacementCodeuiColor4fNormal3fVertex3fvSUN",
+ "glReplacementCodeuiTexCoord2fVertex3fSUN",
+ "glReplacementCodeuiTexCoord2fVertex3fvSUN",
+ "glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN",
+ "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN",
+ "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN",
+ "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN",
+ "glBlendFuncSeparateEXT",
+ "glBlendFuncSeparateINGR",
+ "glVertexWeightfEXT",
+ "glVertexWeightfvEXT",
+ "glVertexWeightPointerEXT",
+ "glFlushVertexArrayRangeNV",
+ "glVertexArrayRangeNV",
+ "glCombinerParameterfvNV",
+ "glCombinerParameterfNV",
+ "glCombinerParameterivNV",
+ "glCombinerParameteriNV",
+ "glCombinerInputNV",
+ "glCombinerOutputNV",
+ "glFinalCombinerInputNV",
+ "glGetCombinerInputParameterfvNV",
+ "glGetCombinerInputParameterivNV",
+ "glGetCombinerOutputParameterfvNV",
+ "glGetCombinerOutputParameterivNV",
+ "glGetFinalCombinerInputParameterfvNV",
+ "glGetFinalCombinerInputParameterivNV",
+ "glMultiModeDrawArraysIBM",
+ "glMultiModeDrawElementsIBM",
+ "glColorPointerListIBM",
+ "glSecondaryColorPointerListIBM",
+ "glEdgeFlagPointerListIBM",
+ "glFogCoordPointerListIBM",
+ "glIndexPointerListIBM",
+ "glNormalPointerListIBM",
+ "glTexCoordPointerListIBM",
+ "glVertexPointerListIBM",
+ "glTbufferMask3DFX",
+ "glSampleMaskEXT",
+ "glSamplePatternEXT",
+ "glTextureColorMaskSGIS",
+ "glIglooInterfaceSGIX",
+ "glGenFencesNV",
+ "glDeleteFencesNV",
+ "glSetFenceNV",
+ "glTestFenceNV",
+ "glFinishFenceNV",
+ "glIsFenceNV",
+ "glGetFenceivNV",
+ "glMapControlPointsNV",
+ "glMapParameterivNV",
+ "glMapParameterfvNV",
+ "glGetMapControlPointsNV",
+ "glGetMapParameterivNV",
+ "glGetMapParameterfvNV",
+ "glGetMapAttribParameterivNV",
+ "glGetMapAttribParameterfvNV",
+ "glEvalMapsNV",
+ "glCombinerStageParameterfvNV",
+ "glGetCombinerStageParameterfvNV",
+ "glBindProgramNV",
+ "glDeleteProgramsNV",
+ "glExecuteProgramNV",
+ "glGenProgramsNV",
+ "glAreProgramsResidentNV",
+ "glRequestResidentProgramsNV",
+ "glGetProgramParameterfvNV",
+ "glGetProgramParameterdvNV",
+ "glGetProgramivNV",
+ "glGetProgramStringNV",
+ "glGetTrackMatrixivNV",
+ "glGetVertexAttribdvNV",
+ "glGetVertexAttribfvNV",
+ "glGetVertexAttribivNV",
+ "glGetVertexAttribPointervNV",
+ "glIsProgramNV",
+ "glLoadProgramNV",
+ "glProgramParameter4fNV",
+ "glProgramParameter4dNV",
+ "glProgramParameter4dvNV",
+ "glProgramParameter4fvNV",
+ "glProgramParameters4dvNV",
+ "glProgramParameters4fvNV",
+ "glTrackMatrixNV",
+ "glVertexAttribPointerNV",
+ "glVertexAttrib1sNV",
+ "glVertexAttrib1fNV",
+ "glVertexAttrib1dNV",
+ "glVertexAttrib2sNV",
+ "glVertexAttrib2fNV",
+ "glVertexAttrib2dNV",
+ "glVertexAttrib3sNV",
+ "glVertexAttrib3fNV",
+ "glVertexAttrib3dNV",
+ "glVertexAttrib4sNV",
+ "glVertexAttrib4fNV",
+ "glVertexAttrib4dNV",
+ "glVertexAttrib4ubNV",
+ "glVertexAttrib1svNV",
+ "glVertexAttrib1fvNV",
+ "glVertexAttrib1dvNV",
+ "glVertexAttrib2svNV",
+ "glVertexAttrib2fvNV",
+ "glVertexAttrib2dvNV",
+ "glVertexAttrib3svNV",
+ "glVertexAttrib3fvNV",
+ "glVertexAttrib3dvNV",
+ "glVertexAttrib4svNV",
+ "glVertexAttrib4fvNV",
+ "glVertexAttrib4dvNV",
+ "glVertexAttrib4ubvNV",
+ "glVertexAttribs1svNV",
+ "glVertexAttribs1fvNV",
+ "glVertexAttribs1dvNV",
+ "glVertexAttribs2svNV",
+ "glVertexAttribs2fvNV",
+ "glVertexAttribs2dvNV",
+ "glVertexAttribs3svNV",
+ "glVertexAttribs3fvNV",
+ "glVertexAttribs3dvNV",
+ "glVertexAttribs4svNV",
+ "glVertexAttribs4fvNV",
+ "glVertexAttribs4dvNV",
+ "glVertexAttribs4ubvNV",
+ "glTexBumpParameterivATI",
+ "glTexBumpParameterfvATI",
+ "glGetTexBumpParameterivATI",
+ "glGetTexBumpParameterfvATI",
+ "glGenFragmentShadersATI",
+ "glBindFragmentShaderATI",
+ "glDeleteFragmentShaderATI",
+ "glBeginFragmentShaderATI",
+ "glEndFragmentShaderATI",
+ "glPassTexCoordATI",
+ "glSampleMapATI",
+ "glColorFragmentOp1ATI",
+ "glColorFragmentOp2ATI",
+ "glColorFragmentOp3ATI",
+ "glAlphaFragmentOp1ATI",
+ "glAlphaFragmentOp2ATI",
+ "glAlphaFragmentOp3ATI",
+ "glSetFragmentShaderConstantATI",
+ "glPNTrianglesiATI",
+ "glPNTrianglesfATI",
+ "glNewObjectBufferATI",
+ "glIsObjectBufferATI",
+ "glUpdateObjectBufferATI",
+ "glGetObjectBufferfvATI",
+ "glGetObjectBufferivATI",
+ "glDeleteObjectBufferATI",
+ "glArrayObjectATI",
+ "glGetArrayObjectfvATI",
+ "glGetArrayObjectivATI",
+ "glVariantArrayObjectATI",
+ "glGetVariantArrayObjectfvATI",
+ "glGetVariantArrayObjectivATI",
+ "glBeginVertexShaderEXT",
+ "glEndVertexShaderEXT",
+ "glBindVertexShaderEXT",
+ "glGenVertexShadersEXT",
+ "glDeleteVertexShaderEXT",
+ "glShaderOp1EXT",
+ "glShaderOp2EXT",
+ "glShaderOp3EXT",
+ "glSwizzleEXT",
+ "glWriteMaskEXT",
+ "glInsertComponentEXT",
+ "glExtractComponentEXT",
+ "glGenSymbolsEXT",
+ "glSetInvariantEXT",
+ "glSetLocalConstantEXT",
+ "glVariantbvEXT",
+ "glVariantsvEXT",
+ "glVariantivEXT",
+ "glVariantfvEXT",
+ "glVariantdvEXT",
+ "glVariantubvEXT",
+ "glVariantusvEXT",
+ "glVariantuivEXT",
+ "glVariantPointerEXT",
+ "glEnableVariantClientStateEXT",
+ "glDisableVariantClientStateEXT",
+ "glBindLightParameterEXT",
+ "glBindMaterialParameterEXT",
+ "glBindTexGenParameterEXT",
+ "glBindTextureUnitParameterEXT",
+ "glBindParameterEXT",
+ "glIsVariantEnabledEXT",
+ "glGetVariantBooleanvEXT",
+ "glGetVariantIntegervEXT",
+ "glGetVariantFloatvEXT",
+ "glGetVariantPointervEXT",
+ "glGetInvariantBooleanvEXT",
+ "glGetInvariantIntegervEXT",
+ "glGetInvariantFloatvEXT",
+ "glGetLocalConstantBooleanvEXT",
+ "glGetLocalConstantIntegervEXT",
+ "glGetLocalConstantFloatvEXT",
+ "glVertexStream1s",
+ "glVertexStream1sv",
+ "glVertexStream1i",
+ "glVertexStream1iv",
+ "glVertexStream1f",
+ "glVertexStream1fv",
+ "glVertexStream1d",
+ "glVertexStream1dv",
+ "glVertexStream2s",
+ "glVertexStream2sv",
+ "glVertexStream2i",
+ "glVertexStream2iv",
+ "glVertexStream2f",
+ "glVertexStream2fv",
+ "glVertexStream2d",
+ "glVertexStream2dv",
+ "glVertexStream3s",
+ "glVertexStream3sv",
+ "glVertexStream3i",
+ "glVertexStream3iv",
+ "glVertexStream3f",
+ "glVertexStream3fv",
+ "glVertexStream3d",
+ "glVertexStream3dv",
+ "glVertexStream4s",
+ "glVertexStream4sv",
+ "glVertexStream4i",
+ "glVertexStream4iv",
+ "glVertexStream4f",
+ "glVertexStream4fv",
+ "glVertexStream4d",
+ "glVertexStream4dv",
+ "glNormalStream3b",
+ "glNormalStream3bv",
+ "glNormalStream3s",
+ "glNormalStream3sv",
+ "glNormalStream3i",
+ "glNormalStream3iv",
+ "glNormalStream3f",
+ "glNormalStream3fv",
+ "glNormalStream3d",
+ "glNormalStream3dv",
+ "glClientActiveVertexStream",
+ "glVertexBlendEnvi",
+ "glVertexBlendEnvf",
+/* C2J Parser Version 3.0: Java program parsed successfully. */
null }; /** diff --git a/gl4java/GLFunc14JauJNI.java b/gl4java/GLFunc14JauJNI.java index 62b48ac..07f1568 100644 --- a/gl4java/GLFunc14JauJNI.java +++ b/gl4java/GLFunc14JauJNI.java @@ -84,7 +84,7 @@ public final String getClassVendor ( ) { return "Jausoft - Sven Goethel Software Development"; } public final String getClassVersion ( ) -{ return "2.8.0.8"; } +{ return "2.8.1.0"; } @@ -94,524 +94,524 @@ public final String getClassVersion ( ) * Reading from file: gl-proto-auto.orig.h . . . * Destination-Class: gl4java_GLFuncJauJNI ! */ - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClearIndex ( GLfloat c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClearIndex ( float c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClearColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClearColor ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClear ( GLbitfield mask ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClear ( int mask ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexMask ( GLuint mask ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexMask ( int mask ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorMask ( GLboolean red , GLboolean green , GLboolean blue , GLboolean alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorMask ( boolean red, boolean green, boolean blue, boolean alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glAlphaFunc ( GLenum func , GLclampf ref ) ; - * </pre> - */ + * </pre>
+ */
public final native void glAlphaFunc ( int func, float ref ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBlendFunc ( GLenum sfactor , GLenum dfactor ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBlendFunc ( int sfactor, int dfactor ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLogicOp ( GLenum opcode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLogicOp ( int opcode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCullFace ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCullFace ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFrontFace ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFrontFace ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPointSize ( GLfloat size ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPointSize ( float size ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLineWidth ( GLfloat width ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLineWidth ( float width ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLineStipple ( GLint factor , GLushort pattern ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLineStipple ( int factor, short pattern ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPolygonMode ( GLenum face , GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPolygonMode ( int face, int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPolygonOffset ( GLfloat factor , GLfloat units ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPolygonOffset ( float factor, float units ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPolygonStipple ( const GLubyte * mask ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPolygonStipple ( byte[] mask ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetPolygonStipple ( GLubyte * mask ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetPolygonStipple ( byte[] mask ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEdgeFlag ( GLboolean flag ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEdgeFlag ( boolean flag ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEdgeFlagv ( const GLboolean * flag ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEdgeFlagv ( boolean[] flag ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glScissor ( GLint x , GLint y , GLsizei width , GLsizei height ) ; - * </pre> - */ + * </pre>
+ */
public final native void glScissor ( int x, int y, int width, int height ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClipPlane ( GLenum plane , const GLdouble * equation ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClipPlane ( int plane, double[] equation ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetClipPlane ( GLenum plane , GLdouble * equation ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetClipPlane ( int plane, double[] equation ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDrawBuffer ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDrawBuffer ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReadBuffer ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReadBuffer ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEnable ( GLenum cap ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEnable ( int cap ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDisable ( GLenum cap ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDisable ( int cap ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glIsEnabled ( GLenum cap ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glIsEnabled ( int cap ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEnableClientState ( GLenum cap ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEnableClientState ( int cap ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDisableClientState ( GLenum cap ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDisableClientState ( int cap ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetBooleanv ( GLenum pname , GLboolean * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetBooleanv ( int pname, boolean[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetDoublev ( GLenum pname , GLdouble * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetDoublev ( int pname, double[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetFloatv ( GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetFloatv ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetIntegerv ( GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetIntegerv ( int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPushAttrib ( GLbitfield mask ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPushAttrib ( int mask ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPopAttrib ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPopAttrib ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPushClientAttrib ( GLbitfield mask ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPushClientAttrib ( int mask ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPopClientAttrib ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPopClientAttrib ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint glRenderMode ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native int glRenderMode ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLenum glGetError ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native int glGetError ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFinish ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFinish ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFlush ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFlush ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glHint ( GLenum target , GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glHint ( int target, int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClearDepth ( GLclampd depth ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClearDepth ( double depth ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDepthFunc ( GLenum func ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDepthFunc ( int func ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDepthMask ( GLboolean flag ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDepthMask ( boolean flag ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDepthRange ( GLclampd near_val , GLclampd far_val ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDepthRange ( double near_val, double far_val ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClearAccum ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClearAccum ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glAccum ( GLenum op , GLfloat value ) ; - * </pre> - */ + * </pre>
+ */
public final native void glAccum ( int op, float value ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMatrixMode ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMatrixMode ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glOrtho ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ; - * </pre> - */ + * </pre>
+ */
public final native void glOrtho ( double left, double right, @@ -620,13 +620,13 @@ public final String getClassVersion ( ) double near_val, double far_val ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFrustum ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFrustum ( double left, double right, @@ -635,228 +635,228 @@ public final String getClassVersion ( ) double near_val, double far_val ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glViewport ( GLint x , GLint y , GLsizei width , GLsizei height ) ; - * </pre> - */ + * </pre>
+ */
public final native void glViewport ( int x, int y, int width, int height ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPushMatrix ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPushMatrix ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPopMatrix ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPopMatrix ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadIdentity ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadIdentity ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadMatrixd ( const GLdouble * m ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadMatrixd ( double[] m ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadMatrixf ( const GLfloat * m ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadMatrixf ( float[] m ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultMatrixd ( const GLdouble * m ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultMatrixd ( double[] m ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultMatrixf ( const GLfloat * m ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultMatrixf ( float[] m ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRotated ( GLdouble angle , GLdouble x , GLdouble y , GLdouble z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRotated ( double angle, double x, double y, double z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRotatef ( GLfloat angle , GLfloat x , GLfloat y , GLfloat z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRotatef ( float angle, float x, float y, float z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glScaled ( GLdouble x , GLdouble y , GLdouble z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glScaled ( double x, double y, double z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glScalef ( GLfloat x , GLfloat y , GLfloat z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glScalef ( float x, float y, float z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTranslated ( GLdouble x , GLdouble y , GLdouble z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTranslated ( double x, double y, double z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTranslatef ( GLfloat x , GLfloat y , GLfloat z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTranslatef ( float x, float y, float z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glIsList ( GLuint list ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glIsList ( int list ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeleteLists ( GLuint list , GLsizei range ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeleteLists ( int list, int range ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glGenLists ( GLsizei range ) ; - * </pre> - */ + * </pre>
+ */
public final native int glGenLists ( int range ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNewList ( GLuint list , GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNewList ( int list, int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEndList ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEndList ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCallList ( GLuint list ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCallList ( int list ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCallLists ( GLsizei n , GLenum type , const GLvoid * lists ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCallLists ( int n, int type, @@ -897,1580 +897,1580 @@ public final String getClassVersion ( ) int type, Buffer lists ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glListBase ( GLuint base ) ; - * </pre> - */ + * </pre>
+ */
public final native void glListBase ( int base ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBegin ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBegin ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEnd ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEnd ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex2d ( GLdouble x , GLdouble y ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex2d ( double x, double y ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex2f ( GLfloat x , GLfloat y ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex2f ( float x, float y ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex2i ( GLint x , GLint y ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex2i ( int x, int y ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex2s ( GLshort x , GLshort y ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex2s ( short x, short y ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex3d ( GLdouble x , GLdouble y , GLdouble z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex3d ( double x, double y, double z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex3f ( GLfloat x , GLfloat y , GLfloat z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex3f ( float x, float y, float z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex3i ( GLint x , GLint y , GLint z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex3i ( int x, int y, int z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex3s ( GLshort x , GLshort y , GLshort z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex3s ( short x, short y, short z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex4d ( double x, double y, double z, double w ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex4f ( float x, float y, float z, float w ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex4i ( GLint x , GLint y , GLint z , GLint w ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex4i ( int x, int y, int z, int w ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex4s ( short x, short y, short z, short w ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex2dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex2dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex2fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex2fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex2iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex2iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex2sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex2sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex3dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex3fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex3iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex3sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex4dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex4dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex4fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex4fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex4iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex4iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex4sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex4sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3b ( GLbyte nx , GLbyte ny , GLbyte nz ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3b ( byte nx, byte ny, byte nz ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3d ( GLdouble nx , GLdouble ny , GLdouble nz ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3d ( double nx, double ny, double nz ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3f ( GLfloat nx , GLfloat ny , GLfloat nz ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3f ( float nx, float ny, float nz ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3i ( GLint nx , GLint ny , GLint nz ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3i ( int nx, int ny, int nz ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3s ( GLshort nx , GLshort ny , GLshort nz ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3s ( short nx, short ny, short nz ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3bv ( const GLbyte * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3bv ( byte[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexd ( GLdouble c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexd ( double c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexf ( GLfloat c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexf ( float c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexi ( GLint c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexi ( int c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexs ( GLshort c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexs ( short c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexub ( GLubyte c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexub ( byte c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexdv ( const GLdouble * c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexdv ( double[] c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexfv ( const GLfloat * c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexfv ( float[] c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexiv ( const GLint * c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexiv ( int[] c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexsv ( const GLshort * c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexsv ( short[] c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexubv ( const GLubyte * c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexubv ( byte[] c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3b ( GLbyte red , GLbyte green , GLbyte blue ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3b ( byte red, byte green, byte blue ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3d ( GLdouble red , GLdouble green , GLdouble blue ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3d ( double red, double green, double blue ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3f ( GLfloat red , GLfloat green , GLfloat blue ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3f ( float red, float green, float blue ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3i ( GLint red , GLint green , GLint blue ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3i ( int red, int green, int blue ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3s ( GLshort red , GLshort green , GLshort blue ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3s ( short red, short green, short blue ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3ub ( GLubyte red , GLubyte green , GLubyte blue ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3ub ( byte red, byte green, byte blue ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3ui ( GLuint red , GLuint green , GLuint blue ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3ui ( int red, int green, int blue ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3us ( GLushort red , GLushort green , GLushort blue ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3us ( short red, short green, short blue ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4b ( GLbyte red , GLbyte green , GLbyte blue , GLbyte alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4b ( byte red, byte green, byte blue, byte alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4d ( GLdouble red , GLdouble green , GLdouble blue , GLdouble alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4d ( double red, double green, double blue, double alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4f ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4f ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4i ( GLint red , GLint green , GLint blue , GLint alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4i ( int red, int green, int blue, int alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4s ( GLshort red , GLshort green , GLshort blue , GLshort alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4s ( short red, short green, short blue, short alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4ub ( GLubyte red , GLubyte green , GLubyte blue , GLubyte alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4ub ( byte red, byte green, byte blue, byte alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4ui ( GLuint red , GLuint green , GLuint blue , GLuint alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4ui ( int red, int green, int blue, int alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4us ( GLushort red , GLushort green , GLushort blue , GLushort alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4us ( short red, short green, short blue, short alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3bv ( const GLbyte * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3bv ( byte[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3ubv ( const GLubyte * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3ubv ( byte[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3uiv ( const GLuint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3uiv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3usv ( const GLushort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3usv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4bv ( const GLbyte * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4bv ( byte[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4ubv ( const GLubyte * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4ubv ( byte[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4uiv ( const GLuint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4uiv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4usv ( const GLushort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4usv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord1d ( GLdouble s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord1d ( double s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord1f ( GLfloat s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord1f ( float s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord1i ( GLint s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord1i ( int s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord1s ( GLshort s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord1s ( short s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2d ( GLdouble s , GLdouble t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2d ( double s, double t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2f ( GLfloat s , GLfloat t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2f ( float s, float t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2i ( GLint s , GLint t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2i ( int s, int t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2s ( GLshort s , GLshort t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2s ( short s, short t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord3d ( GLdouble s , GLdouble t , GLdouble r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord3d ( double s, double t, double r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord3f ( GLfloat s , GLfloat t , GLfloat r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord3f ( float s, float t, float r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord3i ( GLint s , GLint t , GLint r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord3i ( int s, int t, int r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord3s ( GLshort s , GLshort t , GLshort r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord3s ( short s, short t, short r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4d ( GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4d ( double s, double t, double r, double q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4f ( GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4f ( float s, float t, float r, float q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4i ( GLint s , GLint t , GLint r , GLint q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4i ( int s, int t, int r, int q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4s ( GLshort s , GLshort t , GLshort r , GLshort q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4s ( short s, short t, short r, short q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord1dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord1dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord1fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord1fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord1iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord1iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord1sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord1sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord3dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord3fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord3iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord3sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos2d ( GLdouble x , GLdouble y ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos2d ( double x, double y ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos2f ( GLfloat x , GLfloat y ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos2f ( float x, float y ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos2i ( GLint x , GLint y ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos2i ( int x, int y ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos2s ( GLshort x , GLshort y ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos2s ( short x, short y ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos3d ( GLdouble x , GLdouble y , GLdouble z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos3d ( double x, double y, double z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos3f ( GLfloat x , GLfloat y , GLfloat z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos3f ( float x, float y, float z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos3i ( GLint x , GLint y , GLint z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos3i ( int x, int y, int z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos3s ( GLshort x , GLshort y , GLshort z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos3s ( short x, short y, short z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos4d ( double x, double y, double z, double w ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos4f ( float x, float y, float z, float w ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos4i ( GLint x , GLint y , GLint z , GLint w ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos4i ( int x, int y, int z, int w ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos4s ( short x, short y, short z, short w ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos2dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos2dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos2fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos2fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos2iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos2iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos2sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos2sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos3dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos3fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos3iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos3sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos4dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos4dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos4fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos4fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos4iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos4iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos4sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos4sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRectd ( GLdouble x1 , GLdouble y1 , GLdouble x2 , GLdouble y2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRectd ( double x1, double y1, double x2, double y2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRectf ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRectf ( float x1, float y1, float x2, float y2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRecti ( GLint x1 , GLint y1 , GLint x2 , GLint y2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRecti ( int x1, int y1, int x2, int y2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRects ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRects ( short x1, short y1, short x2, short y2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRectdv ( const GLdouble * v1 , const GLdouble * v2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRectdv ( double[] v1, double[] v2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRectfv ( const GLfloat * v1 , const GLfloat * v2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRectfv ( float[] v1, float[] v2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRectiv ( const GLint * v1 , const GLint * v2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRectiv ( int[] v1, int[] v2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRectsv ( const GLshort * v1 , const GLshort * v2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRectsv ( short[] v1, short[] v2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexPointer ( int size, int type, @@ -2519,13 +2519,13 @@ public final String getClassVersion ( ) int stride, Buffer ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalPointer ( int type, int stride, @@ -2566,13 +2566,13 @@ public final String getClassVersion ( ) int stride, Buffer ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorPointer ( int size, int type, @@ -2621,13 +2621,13 @@ public final String getClassVersion ( ) int stride, Buffer ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexPointer ( int type, int stride, @@ -2668,13 +2668,13 @@ public final String getClassVersion ( ) int stride, Buffer ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoordPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoordPointer ( int size, int type, @@ -2723,13 +2723,13 @@ public final String getClassVersion ( ) int stride, Buffer ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEdgeFlagPointer ( GLsizei stride , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEdgeFlagPointer ( int stride, byte[] ptr @@ -2762,13 +2762,13 @@ public final String getClassVersion ( ) int stride, Buffer ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetPointerv ( GLenum pname , GLvoid * * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetPointerv ( int pname, byte[][] params @@ -2797,35 +2797,35 @@ public final String getClassVersion ( ) int pname, long[][] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glArrayElement ( GLint i ) ; - * </pre> - */ + * </pre>
+ */
public final native void glArrayElement ( int i ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDrawArrays ( GLenum mode , GLint first , GLsizei count ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDrawArrays ( int mode, int first, int count ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDrawElements ( GLenum mode , GLsizei count , GLenum type , const GLvoid * indices ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDrawElements ( int mode, int count, @@ -2874,13 +2874,13 @@ public final String getClassVersion ( ) int type, Buffer indices ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glInterleavedArrays ( GLenum format , GLsizei stride , const GLvoid * pointer ) ; - * </pre> - */ + * </pre>
+ */
public final native void glInterleavedArrays ( int format, int stride, @@ -2921,346 +2921,346 @@ public final String getClassVersion ( ) int stride, Buffer pointer ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glShadeModel ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glShadeModel ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLightf ( GLenum light , GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLightf ( int light, int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLighti ( GLenum light , GLenum pname , GLint param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLighti ( int light, int pname, int param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLightfv ( GLenum light , GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLightfv ( int light, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLightiv ( GLenum light , GLenum pname , const GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLightiv ( int light, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetLightfv ( GLenum light , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetLightfv ( int light, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetLightiv ( GLenum light , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetLightiv ( int light, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLightModelf ( GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLightModelf ( int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLightModeli ( GLenum pname , GLint param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLightModeli ( int pname, int param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLightModelfv ( GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLightModelfv ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLightModeliv ( GLenum pname , const GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLightModeliv ( int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMaterialf ( GLenum face , GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMaterialf ( int face, int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMateriali ( GLenum face , GLenum pname , GLint param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMateriali ( int face, int pname, int param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMaterialfv ( GLenum face , GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMaterialfv ( int face, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMaterialiv ( GLenum face , GLenum pname , const GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMaterialiv ( int face, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMaterialfv ( GLenum face , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMaterialfv ( int face, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMaterialiv ( GLenum face , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMaterialiv ( int face, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorMaterial ( GLenum face , GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorMaterial ( int face, int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelZoom ( GLfloat xfactor , GLfloat yfactor ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelZoom ( float xfactor, float yfactor ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelStoref ( GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelStoref ( int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelStorei ( GLenum pname , GLint param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelStorei ( int pname, int param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTransferf ( GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTransferf ( int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTransferi ( GLenum pname , GLint param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTransferi ( int pname, int param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelMapfv ( GLenum map , GLint mapsize , const GLfloat * values ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelMapfv ( int map, int mapsize, float[] values ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelMapuiv ( GLenum map , GLint mapsize , const GLuint * values ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelMapuiv ( int map, int mapsize, int[] values ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelMapusv ( GLenum map , GLint mapsize , const GLushort * values ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelMapusv ( int map, int mapsize, short[] values ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetPixelMapfv ( GLenum map , GLfloat * values ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetPixelMapfv ( int map, float[] values ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetPixelMapuiv ( GLenum map , GLuint * values ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetPixelMapuiv ( int map, int[] values ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetPixelMapusv ( GLenum map , GLushort * values ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetPixelMapusv ( int map, short[] values ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBitmap ( GLsizei width , GLsizei height , GLfloat xorig , GLfloat yorig , GLfloat xmove , GLfloat ymove , const GLubyte * bitmap ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBitmap ( int width, int height, @@ -3270,13 +3270,13 @@ public final String getClassVersion ( ) float ymove, byte[] bitmap ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReadPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum format , GLenum type , GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReadPixels ( int x, int y, @@ -3349,13 +3349,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDrawPixels ( GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDrawPixels ( int width, int height, @@ -3412,13 +3412,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum type ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyPixels ( int x, int y, @@ -3426,335 +3426,335 @@ public final String getClassVersion ( ) int height, int type ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glStencilFunc ( GLenum func , GLint ref , GLuint mask ) ; - * </pre> - */ + * </pre>
+ */
public final native void glStencilFunc ( int func, int ref, int mask ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glStencilMask ( GLuint mask ) ; - * </pre> - */ + * </pre>
+ */
public final native void glStencilMask ( int mask ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glStencilOp ( GLenum fail , GLenum zfail , GLenum zpass ) ; - * </pre> - */ + * </pre>
+ */
public final native void glStencilOp ( int fail, int zfail, int zpass ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClearStencil ( GLint s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClearStencil ( int s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexGend ( GLenum coord , GLenum pname , GLdouble param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexGend ( int coord, int pname, double param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexGenf ( GLenum coord , GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexGenf ( int coord, int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexGeni ( GLenum coord , GLenum pname , GLint param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexGeni ( int coord, int pname, int param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexGendv ( GLenum coord , GLenum pname , const GLdouble * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexGendv ( int coord, int pname, double[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexGenfv ( GLenum coord , GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexGenfv ( int coord, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexGeniv ( GLenum coord , GLenum pname , const GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexGeniv ( int coord, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexGendv ( GLenum coord , GLenum pname , GLdouble * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexGendv ( int coord, int pname, double[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexGenfv ( GLenum coord , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexGenfv ( int coord, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexGeniv ( GLenum coord , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexGeniv ( int coord, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexEnvf ( GLenum target , GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexEnvf ( int target, int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexEnvi ( GLenum target , GLenum pname , GLint param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexEnvi ( int target, int pname, int param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexEnvfv ( GLenum target , GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexEnvfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexEnviv ( GLenum target , GLenum pname , const GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexEnviv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexEnvfv ( GLenum target , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexEnvfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexEnviv ( GLenum target , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexEnviv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexParameterf ( GLenum target , GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexParameterf ( int target, int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexParameteri ( GLenum target , GLenum pname , GLint param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexParameteri ( int target, int pname, int param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexParameteriv ( GLenum target , GLenum pname , const GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexLevelParameterfv ( GLenum target , GLint level , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexLevelParameterfv ( int target, int level, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexLevelParameteriv ( GLenum target , GLint level , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexLevelParameteriv ( int target, int level, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexImage1D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexImage1D ( int target, int level, @@ -3835,13 +3835,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexImage2D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLsizei height , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexImage2D ( int target, int level, @@ -3930,13 +3930,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexImage ( GLenum target , GLint level , GLenum format , GLenum type , GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexImage ( int target, int level, @@ -3993,80 +3993,80 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGenTextures ( GLsizei n , GLuint * textures ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGenTextures ( int n, int[] textures ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeleteTextures ( GLsizei n , const GLuint * textures ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeleteTextures ( int n, int[] textures ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBindTexture ( GLenum target , GLuint texture ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBindTexture ( int target, int texture ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPrioritizeTextures ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPrioritizeTextures ( int n, int[] textures, float[] priorities ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glAreTexturesResident ( GLsizei n , const GLuint * textures , GLboolean * residences ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glAreTexturesResident ( int n, int[] textures, boolean[] residences ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glIsTexture ( GLuint texture ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glIsTexture ( int texture ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLenum type , const GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexSubImage1D ( int target, int level, @@ -4139,13 +4139,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexSubImage2D ( int target, int level, @@ -4234,13 +4234,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLint border ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexImage1D ( int target, int level, @@ -4250,13 +4250,13 @@ public final String getClassVersion ( ) int width, int border ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height , GLint border ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexImage2D ( int target, int level, @@ -4267,13 +4267,13 @@ public final String getClassVersion ( ) int height, int border ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLint x , GLint y , GLsizei width ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexSubImage1D ( int target, int level, @@ -4282,13 +4282,13 @@ public final String getClassVersion ( ) int y, int width ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexSubImage2D ( int target, int level, @@ -4299,13 +4299,13 @@ public final String getClassVersion ( ) int width, int height ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMap1d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint stride , GLint order , const GLdouble * points ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMap1d ( int target, double u1, @@ -4314,13 +4314,13 @@ public final String getClassVersion ( ) int order, double[] points ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMap1f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint stride , GLint order , const GLfloat * points ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMap1f ( int target, float u1, @@ -4329,13 +4329,13 @@ public final String getClassVersion ( ) int order, float[] points ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMap2d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint ustride , GLint uorder , GLdouble v1 , GLdouble v2 , GLint vstride , GLint vorder , const GLdouble * points ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMap2d ( int target, double u1, @@ -4348,13 +4348,13 @@ public final String getClassVersion ( ) int vorder, double[] points ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMap2f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint ustride , GLint uorder , GLfloat v1 , GLfloat v2 , GLint vstride , GLint vorder , const GLfloat * points ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMap2f ( int target, float u1, @@ -4367,155 +4367,155 @@ public final String getClassVersion ( ) int vorder, float[] points ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMapdv ( GLenum target , GLenum query , GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMapdv ( int target, int query, double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMapfv ( GLenum target , GLenum query , GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMapfv ( int target, int query, float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMapiv ( GLenum target , GLenum query , GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMapiv ( int target, int query, int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalCoord1d ( GLdouble u ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalCoord1d ( double u ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalCoord1f ( GLfloat u ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalCoord1f ( float u ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalCoord1dv ( const GLdouble * u ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalCoord1dv ( double[] u ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalCoord1fv ( const GLfloat * u ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalCoord1fv ( float[] u ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalCoord2d ( GLdouble u , GLdouble v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalCoord2d ( double u, double v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalCoord2f ( GLfloat u , GLfloat v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalCoord2f ( float u, float v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalCoord2dv ( const GLdouble * u ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalCoord2dv ( double[] u ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalCoord2fv ( const GLfloat * u ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalCoord2fv ( float[] u ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMapGrid1d ( GLint un , GLdouble u1 , GLdouble u2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMapGrid1d ( int un, double u1, double u2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMapGrid1f ( GLint un , GLfloat u1 , GLfloat u2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMapGrid1f ( int un, float u1, float u2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMapGrid2d ( GLint un , GLdouble u1 , GLdouble u2 , GLint vn , GLdouble v1 , GLdouble v2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMapGrid2d ( int un, double u1, @@ -4524,13 +4524,13 @@ public final String getClassVersion ( ) double v1, double v2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMapGrid2f ( GLint un , GLfloat u1 , GLfloat u2 , GLint vn , GLfloat v1 , GLfloat v2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMapGrid2f ( int un, float u1, @@ -4539,46 +4539,46 @@ public final String getClassVersion ( ) float v1, float v2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalPoint1 ( GLint i ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalPoint1 ( int i ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalPoint2 ( GLint i , GLint j ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalPoint2 ( int i, int j ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalMesh1 ( GLenum mode , GLint i1 , GLint i2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalMesh1 ( int mode, int i1, int i2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalMesh2 ( GLenum mode , GLint i1 , GLint i2 , GLint j1 , GLint j2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalMesh2 ( int mode, int i1, @@ -4586,128 +4586,128 @@ public final String getClassVersion ( ) int j1, int j2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogf ( GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogf ( int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogi ( GLenum pname , GLint param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogi ( int pname, int param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogfv ( GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogfv ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogiv ( GLenum pname , const GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogiv ( int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFeedbackBuffer ( GLsizei size , GLenum type , GLfloat * buffer ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFeedbackBuffer ( int size, int type, float[] buffer ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPassThrough ( GLfloat token ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPassThrough ( float token ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSelectBuffer ( GLsizei size , GLuint * buffer ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSelectBuffer ( int size, int[] buffer ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glInitNames ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glInitNames ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadName ( GLuint name ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadName ( int name ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPushName ( GLuint name ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPushName ( int name ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPopName ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPopName ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDrawRangeElements ( GLenum mode , GLuint start , GLuint end , GLsizei count , GLenum type , const GLvoid * indices ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDrawRangeElements ( int mode, int start, @@ -4772,13 +4772,13 @@ public final String getClassVersion ( ) int type, Buffer indices ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexImage3D ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexImage3D ( int target, int level, @@ -4875,13 +4875,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexSubImage3D ( int target, int level, @@ -4986,13 +4986,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexSubImage3D ( int target, int level, @@ -5004,13 +5004,13 @@ public final String getClassVersion ( ) int width, int height ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorTable ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorTable ( int target, int internalformat, @@ -5075,13 +5075,13 @@ public final String getClassVersion ( ) int type, Buffer table ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorSubTable ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorSubTable ( int target, int start, @@ -5146,37 +5146,37 @@ public final String getClassVersion ( ) int type, Buffer data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorTableParameteriv ( GLenum target , GLenum pname , const GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorTableParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorTableParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorTableParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyColorSubTable ( GLenum target , GLsizei start , GLint x , GLint y , GLsizei width ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyColorSubTable ( int target, int start, @@ -5184,13 +5184,13 @@ public final String getClassVersion ( ) int y, int width ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyColorTable ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyColorTable ( int target, int internalformat, @@ -5198,13 +5198,13 @@ public final String getClassVersion ( ) int y, int width ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetColorTable ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetColorTable ( int target, int format, @@ -5253,83 +5253,83 @@ public final String getClassVersion ( ) int type, Buffer table ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetColorTableParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetColorTableParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetColorTableParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetColorTableParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBlendEquation ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBlendEquation ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBlendColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBlendColor ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glHistogram ( GLenum target , GLsizei width , GLenum internalformat , GLboolean sink ) ; - * </pre> - */ + * </pre>
+ */
public final native void glHistogram ( int target, int width, int internalformat, boolean sink ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glResetHistogram ( GLenum target ) ; - * </pre> - */ + * </pre>
+ */
public final native void glResetHistogram ( int target ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetHistogram ( GLenum target , GLboolean reset , GLenum format , GLenum type , GLvoid * values ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetHistogram ( int target, boolean reset, @@ -5386,59 +5386,59 @@ public final String getClassVersion ( ) int type, Buffer values ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetHistogramParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetHistogramParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetHistogramParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetHistogramParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMinmax ( GLenum target , GLenum internalformat , GLboolean sink ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMinmax ( int target, int internalformat, boolean sink ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glResetMinmax ( GLenum target ) ; - * </pre> - */ + * </pre>
+ */
public final native void glResetMinmax ( int target ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMinmax ( GLenum target , GLboolean reset , GLenum format , GLenum types , GLvoid * values ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMinmax ( int target, boolean reset, @@ -5495,37 +5495,37 @@ public final String getClassVersion ( ) int types, Buffer values ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMinmaxParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMinmaxParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMinmaxParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMinmaxParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionFilter1D ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * image ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionFilter1D ( int target, int internalformat, @@ -5590,13 +5590,13 @@ public final String getClassVersion ( ) int type, Buffer image ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * image ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionFilter2D ( int target, int internalformat, @@ -5669,61 +5669,61 @@ public final String getClassVersion ( ) int type, Buffer image ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionParameterf ( GLenum target , GLenum pname , GLfloat params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionParameterf ( int target, int pname, float params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionParameteri ( GLenum target , GLenum pname , GLint params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionParameteri ( int target, int pname, int params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionParameteriv ( GLenum target , GLenum pname , const GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyConvolutionFilter1D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyConvolutionFilter1D ( int target, int internalformat, @@ -5731,13 +5731,13 @@ public final String getClassVersion ( ) int y, int width ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyConvolutionFilter2D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyConvolutionFilter2D ( int target, int internalformat, @@ -5746,13 +5746,13 @@ public final String getClassVersion ( ) int width, int height ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetConvolutionFilter ( GLenum target , GLenum format , GLenum type , GLvoid * image ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetConvolutionFilter ( int target, int format, @@ -5801,37 +5801,37 @@ public final String getClassVersion ( ) int type, Buffer image ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetConvolutionParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetConvolutionParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetConvolutionParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetConvolutionParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSeparableFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * row , const GLvoid * column ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSeparableFilter2D ( int target, int internalformat, @@ -5912,13 +5912,13 @@ public final String getClassVersion ( ) Buffer row, Buffer column ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetSeparableFilter ( GLenum target , GLenum format , GLenum type , GLvoid * row , GLvoid * column , GLvoid * span ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetSeparableFilter ( int target, int format, @@ -5983,33 +5983,33 @@ public final String getClassVersion ( ) Buffer column, Buffer span ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glActiveTexture ( GLenum texture ) ; - * </pre> - */ + * </pre>
+ */
public final native void glActiveTexture ( int texture ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClientActiveTexture ( GLenum texture ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClientActiveTexture ( int texture ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLint border , GLsizei imageSize , const GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexImage1D ( int target, int level, @@ -6082,13 +6082,13 @@ public final String getClassVersion ( ) int imageSize, Buffer data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLint border , GLsizei imageSize , const GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexImage2D ( int target, int level, @@ -6169,13 +6169,13 @@ public final String getClassVersion ( ) int imageSize, Buffer data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexImage3D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLsizei imageSize , const GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexImage3D ( int target, int level, @@ -6264,13 +6264,13 @@ public final String getClassVersion ( ) int imageSize, Buffer data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLsizei imageSize , const GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexSubImage1D ( int target, int level, @@ -6343,13 +6343,13 @@ public final String getClassVersion ( ) int imageSize, Buffer data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLsizei imageSize , const GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexSubImage2D ( int target, int level, @@ -6438,13 +6438,13 @@ public final String getClassVersion ( ) int imageSize, Buffer data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLsizei imageSize , const GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexSubImage3D ( int target, int level, @@ -6549,13 +6549,13 @@ public final String getClassVersion ( ) int imageSize, Buffer data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetCompressedTexImage ( GLenum target , GLint lod , GLvoid * img ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetCompressedTexImage ( int target, int lod, @@ -6596,289 +6596,289 @@ public final String getClassVersion ( ) int lod, Buffer img ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1d ( GLenum target , GLdouble s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1d ( int target, double s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1dv ( GLenum target , const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1dv ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1f ( GLenum target , GLfloat s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1f ( int target, float s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1fv ( GLenum target , const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1fv ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1i ( GLenum target , GLint s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1i ( int target, int s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1iv ( GLenum target , const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1iv ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1s ( GLenum target , GLshort s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1s ( int target, short s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1sv ( GLenum target , const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1sv ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2d ( GLenum target , GLdouble s , GLdouble t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2d ( int target, double s, double t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2dv ( GLenum target , const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2dv ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2f ( GLenum target , GLfloat s , GLfloat t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2f ( int target, float s, float t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2fv ( GLenum target , const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2fv ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2i ( GLenum target , GLint s , GLint t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2i ( int target, int s, int t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2iv ( GLenum target , const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2iv ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2s ( GLenum target , GLshort s , GLshort t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2s ( int target, short s, short t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2sv ( GLenum target , const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2sv ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3d ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3d ( int target, double s, double t, double r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3dv ( GLenum target , const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3dv ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3f ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3f ( int target, float s, float t, float r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3fv ( GLenum target , const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3fv ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3i ( GLenum target , GLint s , GLint t , GLint r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3i ( int target, int s, int t, int r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3iv ( GLenum target , const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3iv ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3s ( GLenum target , GLshort s , GLshort t , GLshort r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3s ( int target, short s, short t, short r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3sv ( GLenum target , const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3sv ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4d ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4d ( int target, double s, @@ -6886,24 +6886,24 @@ public final String getClassVersion ( ) double r, double q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4dv ( GLenum target , const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4dv ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4f ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4f ( int target, float s, @@ -6911,24 +6911,24 @@ public final String getClassVersion ( ) float r, float q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4fv ( GLenum target , const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4fv ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4i ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4i ( int target, int s, @@ -6936,24 +6936,24 @@ public final String getClassVersion ( ) int r, int q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4iv ( GLenum target , const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4iv ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4s ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4s ( int target, short s, @@ -6961,381 +6961,381 @@ public final String getClassVersion ( ) short r, short q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4sv ( GLenum target , const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4sv ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadTransposeMatrixd ( const GLdouble m [ 16 ] ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadTransposeMatrixd ( double[] m ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadTransposeMatrixf ( const GLfloat m [ 16 ] ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadTransposeMatrixf ( float[] m ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultTransposeMatrixd ( const GLdouble m [ 16 ] ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultTransposeMatrixd ( double[] m ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultTransposeMatrixf ( const GLfloat m [ 16 ] ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultTransposeMatrixf ( float[] m ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSampleCoverage ( GLclampf value , GLboolean invert ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSampleCoverage ( float value, boolean invert ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSamplePass ( GLenum pass ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSamplePass ( int pass ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glActiveTextureARB ( GLenum texture ) ; - * </pre> - */ + * </pre>
+ */
public final native void glActiveTextureARB ( int texture ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClientActiveTextureARB ( GLenum texture ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClientActiveTextureARB ( int texture ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1dARB ( GLenum target , GLdouble s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1dARB ( int target, double s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1dvARB ( GLenum target , const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1dvARB ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1fARB ( GLenum target , GLfloat s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1fARB ( int target, float s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1fvARB ( GLenum target , const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1fvARB ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1iARB ( GLenum target , GLint s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1iARB ( int target, int s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1ivARB ( GLenum target , const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1ivARB ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1sARB ( GLenum target , GLshort s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1sARB ( int target, short s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1svARB ( GLenum target , const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1svARB ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2dARB ( GLenum target , GLdouble s , GLdouble t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2dARB ( int target, double s, double t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2dvARB ( GLenum target , const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2dvARB ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2fARB ( GLenum target , GLfloat s , GLfloat t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2fARB ( int target, float s, float t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2fvARB ( GLenum target , const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2fvARB ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2iARB ( GLenum target , GLint s , GLint t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2iARB ( int target, int s, int t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2ivARB ( GLenum target , const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2ivARB ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2sARB ( GLenum target , GLshort s , GLshort t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2sARB ( int target, short s, short t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2svARB ( GLenum target , const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2svARB ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3dARB ( int target, double s, double t, double r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3dvARB ( GLenum target , const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3dvARB ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3fARB ( int target, float s, float t, float r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3fvARB ( GLenum target , const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3fvARB ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3iARB ( GLenum target , GLint s , GLint t , GLint r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3iARB ( int target, int s, int t, int r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3ivARB ( GLenum target , const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3ivARB ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3sARB ( GLenum target , GLshort s , GLshort t , GLshort r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3sARB ( int target, short s, short t, short r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3svARB ( GLenum target , const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3svARB ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4dARB ( int target, double s, @@ -7343,24 +7343,24 @@ public final String getClassVersion ( ) double r, double q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4dvARB ( GLenum target , const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4dvARB ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4fARB ( int target, float s, @@ -7368,24 +7368,24 @@ public final String getClassVersion ( ) float r, float q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4fvARB ( GLenum target , const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4fvARB ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4iARB ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4iARB ( int target, int s, @@ -7393,24 +7393,24 @@ public final String getClassVersion ( ) int r, int q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4ivARB ( GLenum target , const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4ivARB ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4sARB ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4sARB ( int target, short s, @@ -7418,48 +7418,48 @@ public final String getClassVersion ( ) short r, short q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4svARB ( GLenum target , const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4svARB ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBlendColorEXT ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBlendColorEXT ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPolygonOffsetEXT ( GLfloat factor , GLfloat bias ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPolygonOffsetEXT ( float factor, float bias ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexImage3DEXT ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexImage3DEXT ( int target, int level, @@ -7556,13 +7556,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexSubImage3DEXT ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexSubImage3DEXT ( int target, int level, @@ -7667,13 +7667,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexSubImage3DEXT ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexSubImage3DEXT ( int target, int level, @@ -7685,80 +7685,80 @@ public final String getClassVersion ( ) int width, int height ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGenTexturesEXT ( GLsizei n , GLuint * textures ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGenTexturesEXT ( int n, int[] textures ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeleteTexturesEXT ( GLsizei n , const GLuint * textures ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeleteTexturesEXT ( int n, int[] textures ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBindTextureEXT ( GLenum target , GLuint texture ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBindTextureEXT ( int target, int texture ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPrioritizeTexturesEXT ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPrioritizeTexturesEXT ( int n, int[] textures, float[] priorities ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glAreTexturesResidentEXT ( GLsizei n , const GLuint * textures , GLboolean * residences ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glAreTexturesResidentEXT ( int n, int[] textures, boolean[] residences ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glIsTextureEXT ( GLuint texture ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glIsTextureEXT ( int texture ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexPointerEXT ( int size, int type, @@ -7815,13 +7815,13 @@ public final String getClassVersion ( ) int count, Buffer ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalPointerEXT ( int type, int stride, @@ -7870,13 +7870,13 @@ public final String getClassVersion ( ) int count, Buffer ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorPointerEXT ( int size, int type, @@ -7933,13 +7933,13 @@ public final String getClassVersion ( ) int count, Buffer ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexPointerEXT ( int type, int stride, @@ -7988,13 +7988,13 @@ public final String getClassVersion ( ) int count, Buffer ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoordPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoordPointerEXT ( int size, int type, @@ -8051,25 +8051,25 @@ public final String getClassVersion ( ) int count, Buffer ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEdgeFlagPointerEXT ( GLsizei stride , GLsizei count , const GLboolean * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEdgeFlagPointerEXT ( int stride, int count, boolean[] ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetPointervEXT ( GLenum pname , GLvoid * * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetPointervEXT ( int pname, byte[][] params @@ -8098,89 +8098,89 @@ public final String getClassVersion ( ) int pname, long[][] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glArrayElementEXT ( GLint i ) ; - * </pre> - */ + * </pre>
+ */
public final native void glArrayElementEXT ( int i ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDrawArraysEXT ( GLenum mode , GLint first , GLsizei count ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDrawArraysEXT ( int mode, int first, int count ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBlendEquationEXT ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBlendEquationEXT ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPointParameterfEXT ( GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPointParameterfEXT ( int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPointParameterfvEXT ( GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPointParameterfvEXT ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPointParameterfSGIS ( GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPointParameterfSGIS ( int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPointParameterfvSGIS ( GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPointParameterfvSGIS ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorTableEXT ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorTableEXT ( int target, int internalformat, @@ -8245,13 +8245,13 @@ public final String getClassVersion ( ) int type, Buffer table ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorSubTableEXT ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorSubTableEXT ( int target, int start, @@ -8316,13 +8316,13 @@ public final String getClassVersion ( ) int type, Buffer data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetColorTableEXT ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetColorTableEXT ( int target, int format, @@ -8371,108 +8371,108 @@ public final String getClassVersion ( ) int type, Buffer table ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetColorTableParameterfvEXT ( GLenum target , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetColorTableParameterfvEXT ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetColorTableParameterivEXT ( GLenum target , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetColorTableParameterivEXT ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLockArraysEXT ( GLint first , GLsizei count ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLockArraysEXT ( int first, int count ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glUnlockArraysEXT ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glUnlockArraysEXT ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadTransposeMatrixfARB ( const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadTransposeMatrixfARB ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadTransposeMatrixdARB ( const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadTransposeMatrixdARB ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultTransposeMatrixfARB ( const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultTransposeMatrixfARB ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultTransposeMatrixdARB ( const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultTransposeMatrixdARB ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSampleCoverageARB ( GLclampf , GLboolean ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSampleCoverageARB ( float arg0, boolean arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexImage3DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexImage3DARB ( int arg0, int arg1, @@ -8561,13 +8561,13 @@ public final String getClassVersion ( ) int arg7, Buffer arg8 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexImage2DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexImage2DARB ( int arg0, int arg1, @@ -8648,13 +8648,13 @@ public final String getClassVersion ( ) int arg6, Buffer arg7 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexImage1DARB ( GLenum , GLint , GLenum , GLsizei , GLint , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexImage1DARB ( int arg0, int arg1, @@ -8727,13 +8727,13 @@ public final String getClassVersion ( ) int arg5, Buffer arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexSubImage3DARB ( GLenum , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexSubImage3DARB ( int arg0, int arg1, @@ -8838,13 +8838,13 @@ public final String getClassVersion ( ) int arg9, Buffer arg10 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexSubImage2DARB ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexSubImage2DARB ( int arg0, int arg1, @@ -8933,13 +8933,13 @@ public final String getClassVersion ( ) int arg7, Buffer arg8 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexSubImage1DARB ( GLenum , GLint , GLint , GLsizei , GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexSubImage1DARB ( int arg0, int arg1, @@ -9012,13 +9012,13 @@ public final String getClassVersion ( ) int arg5, Buffer arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetCompressedTexImageARB ( GLenum , GLint , void * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetCompressedTexImageARB ( int arg0, int arg1, @@ -9059,101 +9059,101 @@ public final String getClassVersion ( ) int arg1, Buffer arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWeightbvARB ( GLint , const GLbyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWeightbvARB ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWeightsvARB ( GLint , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWeightsvARB ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWeightivARB ( GLint , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWeightivARB ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWeightfvARB ( GLint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWeightfvARB ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWeightdvARB ( GLint , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWeightdvARB ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWeightubvARB ( GLint , const GLubyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWeightubvARB ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWeightusvARB ( GLint , const GLushort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWeightusvARB ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWeightuivARB ( GLint , const GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWeightuivARB ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWeightPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWeightPointerARB ( int arg0, int arg1, @@ -9202,66 +9202,66 @@ public final String getClassVersion ( ) int arg2, Buffer arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexBlendARB ( GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexBlendARB ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCurrentPaletteMatrixARB ( GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCurrentPaletteMatrixARB ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMatrixIndexubvARB ( GLint , const GLubyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMatrixIndexubvARB ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMatrixIndexusvARB ( GLint , const GLushort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMatrixIndexusvARB ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMatrixIndexuivARB ( GLint , const GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMatrixIndexuivARB ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMatrixIndexPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMatrixIndexPointerARB ( int arg0, int arg1, @@ -9310,38 +9310,38 @@ public final String getClassVersion ( ) int arg2, Buffer arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexFilterFuncSGIS ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexFilterFuncSGIS ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexFilterFuncSGIS ( GLenum , GLenum , GLsizei , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexFilterFuncSGIS ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexSubImage1DEXT ( GLenum , GLint , GLint , GLsizei , GLenum , GLenum , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexSubImage1DEXT ( int arg0, int arg1, @@ -9414,13 +9414,13 @@ public final String getClassVersion ( ) int arg5, Buffer arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexSubImage2DEXT ( int arg0, int arg1, @@ -9509,13 +9509,13 @@ public final String getClassVersion ( ) int arg7, Buffer arg8 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexImage1DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexImage1DEXT ( int arg0, int arg1, @@ -9525,13 +9525,13 @@ public final String getClassVersion ( ) int arg5, int arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexImage2DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLsizei , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexImage2DEXT ( int arg0, int arg1, @@ -9542,13 +9542,13 @@ public final String getClassVersion ( ) int arg6, int arg7 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexSubImage1DEXT ( GLenum , GLint , GLint , GLint , GLint , GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexSubImage1DEXT ( int arg0, int arg1, @@ -9557,13 +9557,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexSubImage2DEXT ( int arg0, int arg1, @@ -9574,13 +9574,13 @@ public final String getClassVersion ( ) int arg6, int arg7 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetHistogramEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetHistogramEXT ( int arg0, boolean arg1, @@ -9637,37 +9637,37 @@ public final String getClassVersion ( ) int arg3, Buffer arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetHistogramParameterfvEXT ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetHistogramParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetHistogramParameterivEXT ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetHistogramParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMinmaxEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMinmaxEXT ( int arg0, boolean arg1, @@ -9724,82 +9724,82 @@ public final String getClassVersion ( ) int arg3, Buffer arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMinmaxParameterfvEXT ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMinmaxParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMinmaxParameterivEXT ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMinmaxParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glHistogramEXT ( GLenum , GLsizei , GLenum , GLboolean ) ; - * </pre> - */ + * </pre>
+ */
public final native void glHistogramEXT ( int arg0, int arg1, int arg2, boolean arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMinmaxEXT ( GLenum , GLenum , GLboolean ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMinmaxEXT ( int arg0, int arg1, boolean arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glResetHistogramEXT ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glResetHistogramEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glResetMinmaxEXT ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glResetMinmaxEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionFilter1DEXT ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionFilter1DEXT ( int arg0, int arg1, @@ -9864,13 +9864,13 @@ public final String getClassVersion ( ) int arg4, Buffer arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionFilter2DEXT ( int arg0, int arg1, @@ -9943,61 +9943,61 @@ public final String getClassVersion ( ) int arg5, Buffer arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionParameterfEXT ( GLenum , GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionParameterfEXT ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionParameteriEXT ( GLenum , GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionParameteriEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionParameterivEXT ( GLenum , GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyConvolutionFilter1DEXT ( GLenum , GLenum , GLint , GLint , GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyConvolutionFilter1DEXT ( int arg0, int arg1, @@ -10005,13 +10005,13 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyConvolutionFilter2DEXT ( GLenum , GLenum , GLint , GLint , GLsizei , GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyConvolutionFilter2DEXT ( int arg0, int arg1, @@ -10020,13 +10020,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetConvolutionFilterEXT ( GLenum , GLenum , GLenum , GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetConvolutionFilterEXT ( int arg0, int arg1, @@ -10075,37 +10075,37 @@ public final String getClassVersion ( ) int arg2, Buffer arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetConvolutionParameterfvEXT ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetConvolutionParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetConvolutionParameterivEXT ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetConvolutionParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetSeparableFilterEXT ( GLenum , GLenum , GLenum , GLvoid * , GLvoid * , GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetSeparableFilterEXT ( int arg0, int arg1, @@ -10170,13 +10170,13 @@ public final String getClassVersion ( ) Buffer arg4, Buffer arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSeparableFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSeparableFilter2DEXT ( int arg0, int arg1, @@ -10257,13 +10257,13 @@ public final String getClassVersion ( ) Buffer arg6, Buffer arg7 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorTableSGI ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorTableSGI ( int arg0, int arg1, @@ -10328,37 +10328,37 @@ public final String getClassVersion ( ) int arg4, Buffer arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorTableParameterfvSGI ( GLenum , GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorTableParameterfvSGI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorTableParameterivSGI ( GLenum , GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorTableParameterivSGI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyColorTableSGI ( GLenum , GLenum , GLint , GLint , GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyColorTableSGI ( int arg0, int arg1, @@ -10366,13 +10366,13 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetColorTableSGI ( GLenum , GLenum , GLenum , GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetColorTableSGI ( int arg0, int arg1, @@ -10421,113 +10421,113 @@ public final String getClassVersion ( ) int arg2, Buffer arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetColorTableParameterfvSGI ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetColorTableParameterfvSGI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetColorTableParameterivSGI ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetColorTableParameterivSGI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTexGenSGIX ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTexGenSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTexGenParameteriSGIS ( GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTexGenParameteriSGIS ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTexGenParameterivSGIS ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTexGenParameterivSGIS ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTexGenParameterfSGIS ( GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTexGenParameterfSGIS ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTexGenParameterfvSGIS ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTexGenParameterfvSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetPixelTexGenParameterivSGIS ( GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetPixelTexGenParameterivSGIS ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetPixelTexGenParameterfvSGIS ( GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetPixelTexGenParameterfvSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexImage4DSGIS ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLsizei , GLint , GLenum , GLenum , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexImage4DSGIS ( int arg0, int arg1, @@ -10632,13 +10632,13 @@ public final String getClassVersion ( ) int arg9, Buffer arg10 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexSubImage4DSGIS ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexSubImage4DSGIS ( int arg0, int arg1, @@ -10759,224 +10759,224 @@ public final String getClassVersion ( ) int arg11, Buffer arg12 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDetailTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDetailTexFuncSGIS ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetDetailTexFuncSGIS ( GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetDetailTexFuncSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSharpenTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSharpenTexFuncSGIS ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetSharpenTexFuncSGIS ( GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetSharpenTexFuncSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSampleMaskSGIS ( GLclampf , GLboolean ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSampleMaskSGIS ( float arg0, boolean arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSamplePatternSGIS ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSamplePatternSGIS ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSpriteParameterfSGIX ( GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSpriteParameterfSGIX ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSpriteParameterfvSGIX ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSpriteParameterfvSGIX ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSpriteParameteriSGIX ( GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSpriteParameteriSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSpriteParameterivSGIX ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSpriteParameterivSGIX ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPointParameterfARB ( GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPointParameterfARB ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPointParameterfvARB ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPointParameterfvARB ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint glGetInstrumentsSGIX ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native int glGetInstrumentsSGIX ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glInstrumentsBufferSGIX ( GLsizei , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glInstrumentsBufferSGIX ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint glPollInstrumentsSGIX ( GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native int glPollInstrumentsSGIX ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReadInstrumentsSGIX ( GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReadInstrumentsSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glStartInstrumentsSGIX ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glStartInstrumentsSGIX ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glStopInstrumentsSGIX ( GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glStopInstrumentsSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFrameZoomSGIX ( GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFrameZoomSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTagSampleBufferSGIX ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTagSampleBufferSGIX ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeformationMap3dSGIX ( GLenum , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeformationMap3dSGIX ( int arg0, double arg1, @@ -10993,13 +10993,13 @@ public final String getClassVersion ( ) int arg12, double[] arg13 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeformationMap3fSGIX ( GLenum , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeformationMap3fSGIX ( int arg0, float arg1, @@ -11016,145 +11016,145 @@ public final String getClassVersion ( ) int arg12, float[] arg13 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeformSGIX ( GLbitfield ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeformSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadIdentityDeformationMapSGIX ( GLbitfield ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadIdentityDeformationMapSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReferencePlaneSGIX ( const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReferencePlaneSGIX ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFlushRasterSGIX ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFlushRasterSGIX ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogFuncSGIS ( GLsizei , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogFuncSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetFogFuncSGIS ( GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetFogFuncSGIS ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glImageTransformParameteriHP ( GLenum , GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glImageTransformParameteriHP ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glImageTransformParameterfHP ( GLenum , GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glImageTransformParameterfHP ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glImageTransformParameterivHP ( GLenum , GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glImageTransformParameterivHP ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glImageTransformParameterfvHP ( GLenum , GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glImageTransformParameterfvHP ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetImageTransformParameterivHP ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetImageTransformParameterivHP ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetImageTransformParameterfvHP ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetImageTransformParameterfvHP ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyColorSubTableEXT ( GLenum , GLsizei , GLint , GLint , GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyColorSubTableEXT ( int arg0, int arg1, @@ -11162,350 +11162,350 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glHintPGI ( GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glHintPGI ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetListParameterfvSGIX ( GLuint , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetListParameterfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetListParameterivSGIX ( GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetListParameterivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glListParameterfSGIX ( GLuint , GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glListParameterfSGIX ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glListParameterfvSGIX ( GLuint , GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glListParameterfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glListParameteriSGIX ( GLuint , GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glListParameteriSGIX ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glListParameterivSGIX ( GLuint , GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glListParameterivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexMaterialEXT ( GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexMaterialEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexFuncEXT ( GLenum , GLclampf ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexFuncEXT ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCullParameterdvEXT ( GLenum , GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCullParameterdvEXT ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCullParameterfvEXT ( GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCullParameterfvEXT ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentColorMaterialSGIX ( GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentColorMaterialSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentLightfSGIX ( GLenum , GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentLightfSGIX ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentLightfvSGIX ( GLenum , GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentLightfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentLightiSGIX ( GLenum , GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentLightiSGIX ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentLightivSGIX ( GLenum , GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentLightivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentLightModelfSGIX ( GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentLightModelfSGIX ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentLightModelfvSGIX ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentLightModelfvSGIX ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentLightModeliSGIX ( GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentLightModeliSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentLightModelivSGIX ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentLightModelivSGIX ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentMaterialfSGIX ( GLenum , GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentMaterialfSGIX ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentMaterialfvSGIX ( GLenum , GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentMaterialfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentMaterialiSGIX ( GLenum , GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentMaterialiSGIX ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentMaterialivSGIX ( GLenum , GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentMaterialivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetFragmentLightfvSGIX ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetFragmentLightfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetFragmentLightivSGIX ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetFragmentLightivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetFragmentMaterialfvSGIX ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetFragmentMaterialfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetFragmentMaterialivSGIX ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetFragmentMaterialivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLightEnviSGIX ( GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLightEnviSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDrawRangeElementsEXT ( GLenum , GLuint , GLuint , GLsizei , GLenum , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDrawRangeElementsEXT ( int arg0, int arg1, @@ -11570,105 +11570,105 @@ public final String getClassVersion ( ) int arg4, Buffer arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glApplyTextureEXT ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glApplyTextureEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTextureLightEXT ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTextureLightEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTextureMaterialEXT ( GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTextureMaterialEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glAsyncMarkerSGIX ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glAsyncMarkerSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint glFinishAsyncSGIX ( GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native int glFinishAsyncSGIX ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint glPollAsyncSGIX ( GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native int glPollAsyncSGIX ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glGenAsyncMarkersSGIX ( GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native int glGenAsyncMarkersSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeleteAsyncMarkersSGIX ( GLuint , GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeleteAsyncMarkersSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glIsAsyncMarkerSGIX ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glIsAsyncMarkerSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexPointervINTEL ( GLint , GLenum , const GLvoid * * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexPointervINTEL ( int arg0, int arg1, @@ -11704,13 +11704,13 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalPointervINTEL ( GLenum , const GLvoid * * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalPointervINTEL ( int arg0, byte[][] arg1 @@ -11739,13 +11739,13 @@ public final String getClassVersion ( ) int arg0, long[][] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorPointervINTEL ( GLint , GLenum , const GLvoid * * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorPointervINTEL ( int arg0, int arg1, @@ -11781,13 +11781,13 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoordPointervINTEL ( GLint , GLenum , const GLvoid * * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoordPointervINTEL ( int arg0, int arg1, @@ -11823,237 +11823,237 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTransformParameteriEXT ( GLenum , GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTransformParameteriEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTransformParameterfEXT ( GLenum , GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTransformParameterfEXT ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTransformParameterivEXT ( GLenum , GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTransformParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTransformParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTransformParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3bEXT ( GLbyte , GLbyte , GLbyte ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3bEXT ( byte arg0, byte arg1, byte arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3bvEXT ( const GLbyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3bvEXT ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3dEXT ( GLdouble , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3dEXT ( double arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3dvEXT ( const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3dvEXT ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3fEXT ( GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3fEXT ( float arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3fvEXT ( const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3fvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3iEXT ( GLint , GLint , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3iEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3ivEXT ( const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3ivEXT ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3sEXT ( GLshort , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3sEXT ( short arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3svEXT ( const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3svEXT ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3ubEXT ( GLubyte , GLubyte , GLubyte ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3ubEXT ( byte arg0, byte arg1, byte arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3ubvEXT ( const GLubyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3ubvEXT ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3uiEXT ( GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3uiEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3uivEXT ( const GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3uivEXT ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3usEXT ( GLushort , GLushort , GLushort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3usEXT ( short arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3usvEXT ( const GLushort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3usvEXT ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColorPointerEXT ( GLint , GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColorPointerEXT ( int arg0, int arg1, @@ -12102,36 +12102,36 @@ public final String getClassVersion ( ) int arg2, Buffer arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTextureNormalEXT ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTextureNormalEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiDrawArraysEXT ( GLenum , GLint * , GLsizei * , GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiDrawArraysEXT ( int arg0, int[] arg1, int[] arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiDrawElementsEXT ( GLenum , const GLsizei * , GLenum , const GLvoid * * , GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiDrawElementsEXT ( int arg0, int[] arg1, @@ -12181,53 +12181,53 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogCoordfEXT ( GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogCoordfEXT ( float arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogCoordfvEXT ( const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogCoordfvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogCoorddEXT ( GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogCoorddEXT ( double arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogCoorddvEXT ( const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogCoorddvEXT ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogCoordPointerEXT ( GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogCoordPointerEXT ( int arg0, int arg1, @@ -12268,233 +12268,233 @@ public final String getClassVersion ( ) int arg1, Buffer arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3bEXT ( GLbyte , GLbyte , GLbyte ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3bEXT ( byte arg0, byte arg1, byte arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3bvEXT ( const GLbyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3bvEXT ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3dEXT ( GLdouble , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3dEXT ( double arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3dvEXT ( const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3dvEXT ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3fEXT ( GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3fEXT ( float arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3fvEXT ( const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3fvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3iEXT ( GLint , GLint , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3iEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3ivEXT ( const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3ivEXT ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3sEXT ( GLshort , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3sEXT ( short arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3svEXT ( const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3svEXT ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3bEXT ( GLbyte , GLbyte , GLbyte ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3bEXT ( byte arg0, byte arg1, byte arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3bvEXT ( const GLbyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3bvEXT ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3dEXT ( GLdouble , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3dEXT ( double arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3dvEXT ( const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3dvEXT ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3fEXT ( GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3fEXT ( float arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3fvEXT ( const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3fvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3iEXT ( GLint , GLint , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3iEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3ivEXT ( const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3ivEXT ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3sEXT ( GLshort , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3sEXT ( short arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3svEXT ( const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3svEXT ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangentPointerEXT ( GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangentPointerEXT ( int arg0, int arg1, @@ -12535,13 +12535,13 @@ public final String getClassVersion ( ) int arg1, Buffer arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormalPointerEXT ( GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormalPointerEXT ( int arg0, int arg1, @@ -12582,162 +12582,162 @@ public final String getClassVersion ( ) int arg1, Buffer arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFinishTextureSUNX ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFinishTextureSUNX ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGlobalAlphaFactorbSUN ( GLbyte ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGlobalAlphaFactorbSUN ( byte arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGlobalAlphaFactorsSUN ( GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGlobalAlphaFactorsSUN ( short arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGlobalAlphaFactoriSUN ( GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGlobalAlphaFactoriSUN ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGlobalAlphaFactorfSUN ( GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGlobalAlphaFactorfSUN ( float arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGlobalAlphaFactordSUN ( GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGlobalAlphaFactordSUN ( double arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGlobalAlphaFactorubSUN ( GLubyte ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGlobalAlphaFactorubSUN ( byte arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGlobalAlphaFactorusSUN ( GLushort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGlobalAlphaFactorusSUN ( short arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGlobalAlphaFactoruiSUN ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGlobalAlphaFactoruiSUN ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiSUN ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiSUN ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeusSUN ( GLushort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeusSUN ( short arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeubSUN ( GLubyte ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeubSUN ( byte arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuivSUN ( const GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuivSUN ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeusvSUN ( const GLushort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeusvSUN ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeubvSUN ( const GLubyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeubvSUN ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodePointerSUN ( GLenum , GLsizei , const GLvoid * * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodePointerSUN ( int arg0, int arg1, @@ -12773,13 +12773,13 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4ubVertex2fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4ubVertex2fSUN ( byte arg0, byte arg1, @@ -12788,24 +12788,24 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4ubVertex2fvSUN ( const GLubyte * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4ubVertex2fvSUN ( byte[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4ubVertex3fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4ubVertex3fSUN ( byte arg0, byte arg1, @@ -12815,24 +12815,24 @@ public final String getClassVersion ( ) float arg5, float arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4ubVertex3fvSUN ( const GLubyte * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4ubVertex3fvSUN ( byte[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3fVertex3fSUN ( float arg0, float arg1, @@ -12841,24 +12841,24 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3fVertex3fvSUN ( float[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3fVertex3fSUN ( float arg0, float arg1, @@ -12867,24 +12867,24 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3fVertex3fvSUN ( float[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4fNormal3fVertex3fSUN ( float arg0, float arg1, @@ -12897,25 +12897,25 @@ public final String getClassVersion ( ) float arg8, float arg9 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4fNormal3fVertex3fvSUN ( float[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fVertex3fSUN ( float arg0, float arg1, @@ -12923,24 +12923,24 @@ public final String getClassVersion ( ) float arg3, float arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fVertex3fvSUN ( float[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4fVertex4fSUN ( float arg0, float arg1, @@ -12951,24 +12951,24 @@ public final String getClassVersion ( ) float arg6, float arg7 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4fVertex4fvSUN ( const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4fVertex4fvSUN ( float[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fColor4ubVertex3fSUN ( GLfloat , GLfloat , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fColor4ubVertex3fSUN ( float arg0, float arg1, @@ -12980,25 +12980,25 @@ public final String getClassVersion ( ) float arg7, float arg8 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fColor4ubVertex3fvSUN ( const GLfloat * , const GLubyte * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fColor4ubVertex3fvSUN ( float[] arg0, byte[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fColor3fVertex3fSUN ( float arg0, float arg1, @@ -13009,25 +13009,25 @@ public final String getClassVersion ( ) float arg6, float arg7 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fColor3fVertex3fvSUN ( float[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fNormal3fVertex3fSUN ( float arg0, float arg1, @@ -13038,25 +13038,25 @@ public final String getClassVersion ( ) float arg6, float arg7 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fNormal3fVertex3fvSUN ( float[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fColor4fNormal3fVertex3fSUN ( float arg0, float arg1, @@ -13071,26 +13071,26 @@ public final String getClassVersion ( ) float arg10, float arg11 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fColor4fNormal3fVertex3fvSUN ( float[] arg0, float[] arg1, float[] arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4fColor4fNormal3fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4fColor4fNormal3fVertex4fSUN ( float arg0, float arg1, @@ -13108,50 +13108,50 @@ public final String getClassVersion ( ) float arg13, float arg14 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4fColor4fNormal3fVertex4fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4fColor4fNormal3fVertex4fvSUN ( float[] arg0, float[] arg1, float[] arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiVertex3fSUN ( int arg0, float arg1, float arg2, float arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiVertex3fvSUN ( const GLenum * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiVertex3fvSUN ( int[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiColor4ubVertex3fSUN ( GLenum , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiColor4ubVertex3fSUN ( int arg0, byte arg1, @@ -13162,25 +13162,25 @@ public final String getClassVersion ( ) float arg6, float arg7 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiColor4ubVertex3fvSUN ( const GLenum * , const GLubyte * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiColor4ubVertex3fvSUN ( int[] arg0, byte[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiColor3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiColor3fVertex3fSUN ( int arg0, float arg1, @@ -13190,25 +13190,25 @@ public final String getClassVersion ( ) float arg5, float arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiColor3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiColor3fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiNormal3fVertex3fSUN ( int arg0, float arg1, @@ -13218,25 +13218,25 @@ public final String getClassVersion ( ) float arg5, float arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiNormal3fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( int arg0, float arg1, @@ -13250,26 +13250,26 @@ public final String getClassVersion ( ) float arg9, float arg10 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiTexCoord2fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiTexCoord2fVertex3fSUN ( int arg0, float arg1, @@ -13278,25 +13278,25 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiTexCoord2fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiTexCoord2fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( int arg0, float arg1, @@ -13308,26 +13308,26 @@ public final String getClassVersion ( ) float arg7, float arg8 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( int arg0, float arg1, @@ -13343,13 +13343,13 @@ public final String getClassVersion ( ) float arg11, float arg12 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( int[] arg0, float[] arg1, @@ -13357,59 +13357,59 @@ public final String getClassVersion ( ) float[] arg3, float[] arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBlendFuncSeparateEXT ( GLenum , GLenum , GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBlendFuncSeparateEXT ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBlendFuncSeparateINGR ( GLenum , GLenum , GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBlendFuncSeparateINGR ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexWeightfEXT ( GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexWeightfEXT ( float arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexWeightfvEXT ( const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexWeightfvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexWeightPointerEXT ( GLsizei , GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexWeightPointerEXT ( int arg0, int arg1, @@ -13458,22 +13458,22 @@ public final String getClassVersion ( ) int arg2, Buffer arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFlushVertexArrayRangeNV ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFlushVertexArrayRangeNV ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexArrayRangeNV ( GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexArrayRangeNV ( int arg0, byte[] arg1 @@ -13506,57 +13506,57 @@ public final String getClassVersion ( ) int arg0, Buffer arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCombinerParameterfvNV ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCombinerParameterfvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCombinerParameterfNV ( GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCombinerParameterfNV ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCombinerParameterivNV ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCombinerParameterivNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCombinerParameteriNV ( GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCombinerParameteriNV ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCombinerInputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCombinerInputNV ( int arg0, int arg1, @@ -13565,13 +13565,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCombinerOutputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLboolean , GLboolean , GLboolean ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCombinerOutputNV ( int arg0, int arg1, @@ -13584,26 +13584,26 @@ public final String getClassVersion ( ) boolean arg8, boolean arg9 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFinalCombinerInputNV ( GLenum , GLenum , GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFinalCombinerInputNV ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetCombinerInputParameterfvNV ( GLenum , GLenum , GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetCombinerInputParameterfvNV ( int arg0, int arg1, @@ -13611,13 +13611,13 @@ public final String getClassVersion ( ) int arg3, float[] arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetCombinerInputParameterivNV ( GLenum , GLenum , GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetCombinerInputParameterivNV ( int arg0, int arg1, @@ -13625,63 +13625,63 @@ public final String getClassVersion ( ) int arg3, int[] arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetCombinerOutputParameterfvNV ( GLenum , GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetCombinerOutputParameterfvNV ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetCombinerOutputParameterivNV ( GLenum , GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetCombinerOutputParameterivNV ( int arg0, int arg1, int arg2, int[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetFinalCombinerInputParameterfvNV ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetFinalCombinerInputParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetFinalCombinerInputParameterivNV ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetFinalCombinerInputParameterivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiModeDrawArraysIBM ( GLenum , const GLint * , const GLsizei * , GLsizei , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiModeDrawArraysIBM ( int arg0, int[] arg1, @@ -13689,13 +13689,13 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiModeDrawElementsIBM ( const GLenum * , const GLsizei * , GLenum , const GLvoid * * , GLsizei , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiModeDrawElementsIBM ( int[] arg0, int[] arg1, @@ -13752,13 +13752,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorPointerListIBM ( int arg0, int arg1, @@ -13808,13 +13808,13 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColorPointerListIBM ( int arg0, int arg1, @@ -13864,25 +13864,25 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEdgeFlagPointerListIBM ( GLint , const GLboolean * * , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEdgeFlagPointerListIBM ( int arg0, boolean[][] arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogCoordPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogCoordPointerListIBM ( int arg0, int arg1, @@ -13925,13 +13925,13 @@ public final String getClassVersion ( ) long[][] arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexPointerListIBM ( int arg0, int arg1, @@ -13974,13 +13974,13 @@ public final String getClassVersion ( ) long[][] arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalPointerListIBM ( int arg0, int arg1, @@ -14023,13 +14023,13 @@ public final String getClassVersion ( ) long[][] arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoordPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoordPointerListIBM ( int arg0, int arg1, @@ -14079,13 +14079,13 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexPointerListIBM ( int arg0, int arg1, @@ -14135,57 +14135,57 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTbufferMask3DFX ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTbufferMask3DFX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSampleMaskEXT ( GLclampf , GLboolean ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSampleMaskEXT ( float arg0, boolean arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSamplePatternEXT ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSamplePatternEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTextureColorMaskSGIS ( GLboolean , GLboolean , GLboolean , GLboolean ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTextureColorMaskSGIS ( boolean arg0, boolean arg1, boolean arg2, boolean arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIglooInterfaceSGIX ( GLenum , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIglooInterfaceSGIX ( int arg0, byte[] arg1 @@ -14218,88 +14218,88 @@ public final String getClassVersion ( ) int arg0, Buffer arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGenFencesNV ( GLsizei , GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGenFencesNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeleteFencesNV ( GLsizei , const GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeleteFencesNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSetFenceNV ( GLuint , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSetFenceNV ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glTestFenceNV ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glTestFenceNV ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFinishFenceNV ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFinishFenceNV ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glIsFenceNV ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glIsFenceNV ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetFenceivNV ( GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetFenceivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLint , GLint , GLboolean , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMapControlPointsNV ( int arg0, int arg1, @@ -14388,37 +14388,37 @@ public final String getClassVersion ( ) boolean arg7, Buffer arg8 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMapParameterivNV ( GLenum , GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMapParameterivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMapParameterfvNV ( GLenum , GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMapParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLboolean , GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMapControlPointsNV ( int arg0, int arg1, @@ -14491,265 +14491,265 @@ public final String getClassVersion ( ) boolean arg5, Buffer arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMapParameterivNV ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMapParameterivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMapParameterfvNV ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMapParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMapAttribParameterivNV ( GLenum , GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMapAttribParameterivNV ( int arg0, int arg1, int arg2, int[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMapAttribParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMapAttribParameterfvNV ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalMapsNV ( GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalMapsNV ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCombinerStageParameterfvNV ( GLenum , GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCombinerStageParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetCombinerStageParameterfvNV ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetCombinerStageParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBindProgramNV ( GLenum , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBindProgramNV ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeleteProgramsNV ( GLsizei , const GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeleteProgramsNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glExecuteProgramNV ( GLenum , GLuint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glExecuteProgramNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGenProgramsNV ( GLsizei , GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGenProgramsNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glAreProgramsResidentNV ( GLsizei , const GLuint * , GLboolean * ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glAreProgramsResidentNV ( int arg0, int[] arg1, boolean[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRequestResidentProgramsNV ( GLsizei , const GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRequestResidentProgramsNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetProgramParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetProgramParameterfvNV ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetProgramParameterdvNV ( GLenum , GLuint , GLenum , GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetProgramParameterdvNV ( int arg0, int arg1, int arg2, double[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetProgramivNV ( GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetProgramivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetProgramStringNV ( GLuint , GLenum , GLubyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetProgramStringNV ( int arg0, int arg1, byte[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTrackMatrixivNV ( GLenum , GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTrackMatrixivNV ( int arg0, int arg1, int arg2, int[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVertexAttribdvNV ( GLuint , GLenum , GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVertexAttribdvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVertexAttribfvNV ( GLuint , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVertexAttribfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVertexAttribivNV ( GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVertexAttribivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVertexAttribPointervNV ( GLuint , GLenum , GLvoid * * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVertexAttribPointervNV ( int arg0, int arg1, @@ -14785,36 +14785,36 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glIsProgramNV ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glIsProgramNV ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadProgramNV ( GLenum , GLuint , GLsizei , const GLubyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadProgramNV ( int arg0, int arg1, int arg2, byte[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glProgramParameter4fNV ( GLenum , GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glProgramParameter4fNV ( int arg0, int arg1, @@ -14823,13 +14823,13 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glProgramParameter4dNV ( GLenum , GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glProgramParameter4dNV ( int arg0, int arg1, @@ -14838,76 +14838,76 @@ public final String getClassVersion ( ) double arg4, double arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glProgramParameter4dvNV ( GLenum , GLuint , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glProgramParameter4dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glProgramParameter4fvNV ( GLenum , GLuint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glProgramParameter4fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glProgramParameters4dvNV ( GLenum , GLuint , GLuint , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glProgramParameters4dvNV ( int arg0, int arg1, int arg2, double[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glProgramParameters4fvNV ( GLenum , GLuint , GLuint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glProgramParameters4fvNV ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTrackMatrixNV ( GLenum , GLuint , GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTrackMatrixNV ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribPointerNV ( GLuint , GLint , GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribPointerNV ( int arg0, int arg1, @@ -14964,121 +14964,121 @@ public final String getClassVersion ( ) int arg3, Buffer arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib1sNV ( GLuint , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib1sNV ( int arg0, short arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib1fNV ( GLuint , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib1fNV ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib1dNV ( GLuint , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib1dNV ( int arg0, double arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib2sNV ( GLuint , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib2sNV ( int arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib2fNV ( GLuint , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib2fNV ( int arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib2dNV ( GLuint , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib2dNV ( int arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib3sNV ( GLuint , GLshort , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib3sNV ( int arg0, short arg1, short arg2, short arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib3fNV ( GLuint , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib3fNV ( int arg0, float arg1, float arg2, float arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib3dNV ( GLuint , GLdouble , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib3dNV ( int arg0, double arg1, double arg2, double arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib4sNV ( GLuint , GLshort , GLshort , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib4sNV ( int arg0, short arg1, @@ -15086,13 +15086,13 @@ public final String getClassVersion ( ) short arg3, short arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib4fNV ( GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib4fNV ( int arg0, float arg1, @@ -15100,13 +15100,13 @@ public final String getClassVersion ( ) float arg3, float arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib4dNV ( GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib4dNV ( int arg0, double arg1, @@ -15114,13 +15114,13 @@ public final String getClassVersion ( ) double arg3, double arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib4ubNV ( GLuint , GLubyte , GLubyte , GLubyte , GLubyte ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib4ubNV ( int arg0, byte arg1, @@ -15128,428 +15128,428 @@ public final String getClassVersion ( ) byte arg3, byte arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib1svNV ( GLuint , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib1svNV ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib1fvNV ( GLuint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib1fvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib1dvNV ( GLuint , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib1dvNV ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib2svNV ( GLuint , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib2svNV ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib2fvNV ( GLuint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib2fvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib2dvNV ( GLuint , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib2dvNV ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib3svNV ( GLuint , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib3svNV ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib3fvNV ( GLuint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib3fvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib3dvNV ( GLuint , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib3dvNV ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib4svNV ( GLuint , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib4svNV ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib4fvNV ( GLuint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib4fvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib4dvNV ( GLuint , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib4dvNV ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib4ubvNV ( GLuint , const GLubyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib4ubvNV ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs1svNV ( GLuint , GLsizei , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs1svNV ( int arg0, int arg1, short[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs1fvNV ( GLuint , GLsizei , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs1fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs1dvNV ( GLuint , GLsizei , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs1dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs2svNV ( GLuint , GLsizei , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs2svNV ( int arg0, int arg1, short[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs2fvNV ( GLuint , GLsizei , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs2fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs2dvNV ( GLuint , GLsizei , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs2dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs3svNV ( GLuint , GLsizei , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs3svNV ( int arg0, int arg1, short[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs3fvNV ( GLuint , GLsizei , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs3fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs3dvNV ( GLuint , GLsizei , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs3dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs4svNV ( GLuint , GLsizei , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs4svNV ( int arg0, int arg1, short[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs4fvNV ( GLuint , GLsizei , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs4fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs4dvNV ( GLuint , GLsizei , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs4dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs4ubvNV ( GLuint , GLsizei , const GLubyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs4ubvNV ( int arg0, int arg1, byte[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexBumpParameterivATI ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexBumpParameterivATI ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexBumpParameterfvATI ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexBumpParameterfvATI ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexBumpParameterivATI ( GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexBumpParameterivATI ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexBumpParameterfvATI ( GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexBumpParameterfvATI ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glGenFragmentShadersATI ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native int glGenFragmentShadersATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBindFragmentShaderATI ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBindFragmentShaderATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeleteFragmentShaderATI ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeleteFragmentShaderATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBeginFragmentShaderATI ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBeginFragmentShaderATI ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEndFragmentShaderATI ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEndFragmentShaderATI ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPassTexCoordATI ( GLuint , GLuint , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPassTexCoordATI ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSampleMapATI ( GLuint , GLuint , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSampleMapATI ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorFragmentOp1ATI ( int arg0, int arg1, @@ -15559,13 +15559,13 @@ public final String getClassVersion ( ) int arg5, int arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorFragmentOp2ATI ( int arg0, int arg1, @@ -15578,13 +15578,13 @@ public final String getClassVersion ( ) int arg8, int arg9 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorFragmentOp3ATI ( int arg0, int arg1, @@ -15600,13 +15600,13 @@ public final String getClassVersion ( ) int arg11, int arg12 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glAlphaFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glAlphaFragmentOp1ATI ( int arg0, int arg1, @@ -15615,13 +15615,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glAlphaFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glAlphaFragmentOp2ATI ( int arg0, int arg1, @@ -15633,13 +15633,13 @@ public final String getClassVersion ( ) int arg7, int arg8 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glAlphaFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glAlphaFragmentOp3ATI ( int arg0, int arg1, @@ -15654,46 +15654,46 @@ public final String getClassVersion ( ) int arg10, int arg11 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSetFragmentShaderConstantATI ( GLuint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSetFragmentShaderConstantATI ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPNTrianglesiATI ( GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPNTrianglesiATI ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPNTrianglesfATI ( GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPNTrianglesfATI ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glNewObjectBufferATI ( GLsizei , const GLvoid * , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native int glNewObjectBufferATI ( int arg0, byte[] arg1, @@ -15734,23 +15734,23 @@ public final String getClassVersion ( ) Buffer arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glIsObjectBufferATI ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glIsObjectBufferATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glUpdateObjectBufferATI ( GLuint , GLuint , GLsizei , const GLvoid * , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glUpdateObjectBufferATI ( int arg0, int arg1, @@ -15807,47 +15807,47 @@ public final String getClassVersion ( ) Buffer arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetObjectBufferfvATI ( GLuint , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetObjectBufferfvATI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetObjectBufferivATI ( GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetObjectBufferivATI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeleteObjectBufferATI ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeleteObjectBufferATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glArrayObjectATI ( GLenum , GLint , GLenum , GLsizei , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glArrayObjectATI ( int arg0, int arg1, @@ -15856,37 +15856,37 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetArrayObjectfvATI ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetArrayObjectfvATI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetArrayObjectivATI ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetArrayObjectivATI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantArrayObjectATI ( GLuint , GLenum , GLsizei , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantArrayObjectATI ( int arg0, int arg1, @@ -15894,110 +15894,110 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVariantArrayObjectfvATI ( GLuint , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVariantArrayObjectfvATI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVariantArrayObjectivATI ( GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVariantArrayObjectivATI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBeginVertexShaderEXT ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBeginVertexShaderEXT ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEndVertexShaderEXT ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEndVertexShaderEXT ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBindVertexShaderEXT ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBindVertexShaderEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glGenVertexShadersEXT ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native int glGenVertexShadersEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeleteVertexShaderEXT ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeleteVertexShaderEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glShaderOp1EXT ( GLenum , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glShaderOp1EXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glShaderOp2EXT ( GLenum , GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glShaderOp2EXT ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glShaderOp3EXT ( GLenum , GLuint , GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glShaderOp3EXT ( int arg0, int arg1, @@ -16005,13 +16005,13 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSwizzleEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSwizzleEXT ( int arg0, int arg1, @@ -16020,13 +16020,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWriteMaskEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWriteMaskEXT ( int arg0, int arg1, @@ -16035,50 +16035,50 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glInsertComponentEXT ( GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glInsertComponentEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glExtractComponentEXT ( GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glExtractComponentEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glGenSymbolsEXT ( GLenum , GLenum , GLenum , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native int glGenSymbolsEXT ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSetInvariantEXT ( GLuint , GLenum , const void * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSetInvariantEXT ( int arg0, int arg1, @@ -16119,13 +16119,13 @@ public final String getClassVersion ( ) int arg1, Buffer arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSetLocalConstantEXT ( GLuint , GLenum , const void * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSetLocalConstantEXT ( int arg0, int arg1, @@ -16166,101 +16166,101 @@ public final String getClassVersion ( ) int arg1, Buffer arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantbvEXT ( GLuint , const GLbyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantbvEXT ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantsvEXT ( GLuint , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantsvEXT ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantivEXT ( GLuint , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantivEXT ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantfvEXT ( GLuint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantfvEXT ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantdvEXT ( GLuint , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantdvEXT ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantubvEXT ( GLuint , const GLubyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantubvEXT ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantusvEXT ( GLuint , const GLushort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantusvEXT ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantuivEXT ( GLuint , const GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantuivEXT ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantPointerEXT ( GLuint , GLenum , GLuint , const void * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantPointerEXT ( int arg0, int arg1, @@ -16309,135 +16309,135 @@ public final String getClassVersion ( ) int arg2, Buffer arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEnableVariantClientStateEXT ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEnableVariantClientStateEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDisableVariantClientStateEXT ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDisableVariantClientStateEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glBindLightParameterEXT ( GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native int glBindLightParameterEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glBindMaterialParameterEXT ( GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native int glBindMaterialParameterEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glBindTexGenParameterEXT ( GLenum , GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native int glBindTexGenParameterEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glBindTextureUnitParameterEXT ( GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native int glBindTextureUnitParameterEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glBindParameterEXT ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native int glBindParameterEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glIsVariantEnabledEXT ( GLuint , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glIsVariantEnabledEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVariantBooleanvEXT ( int arg0, int arg1, boolean[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVariantIntegervEXT ( GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVariantIntegervEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVariantFloatvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVariantPointervEXT ( GLuint , GLenum , GLvoid * * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVariantPointervEXT ( int arg0, int arg1, @@ -16473,361 +16473,361 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetInvariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetInvariantBooleanvEXT ( int arg0, int arg1, boolean[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetInvariantIntegervEXT ( GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetInvariantIntegervEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetInvariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetInvariantFloatvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetLocalConstantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetLocalConstantBooleanvEXT ( int arg0, int arg1, boolean[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetLocalConstantIntegervEXT ( GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetLocalConstantIntegervEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetLocalConstantFloatvEXT ( GLuint , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetLocalConstantFloatvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream1s ( GLenum , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream1s ( int arg0, short arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream1sv ( GLenum , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream1sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream1i ( GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream1i ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream1iv ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream1iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream1f ( GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream1f ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream1fv ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream1fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream1d ( GLenum , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream1d ( int arg0, double arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream1dv ( GLenum , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream1dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream2s ( GLenum , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream2s ( int arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream2sv ( GLenum , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream2sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream2i ( GLenum , GLint , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream2i ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream2iv ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream2iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream2f ( GLenum , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream2f ( int arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream2fv ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream2fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream2d ( GLenum , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream2d ( int arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream2dv ( GLenum , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream2dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream3s ( GLenum , GLshort , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream3s ( int arg0, short arg1, short arg2, short arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream3sv ( GLenum , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream3sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream3i ( GLenum , GLint , GLint , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream3i ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream3iv ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream3iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream3f ( int arg0, float arg1, float arg2, float arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream3fv ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream3fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream3d ( int arg0, double arg1, double arg2, double arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream3dv ( GLenum , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream3dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream4s ( GLenum , GLshort , GLshort , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream4s ( int arg0, short arg1, @@ -16835,24 +16835,24 @@ public final String getClassVersion ( ) short arg3, short arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream4sv ( GLenum , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream4sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream4i ( GLenum , GLint , GLint , GLint , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream4i ( int arg0, int arg1, @@ -16860,24 +16860,24 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream4iv ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream4iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream4f ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream4f ( int arg0, float arg1, @@ -16885,24 +16885,24 @@ public final String getClassVersion ( ) float arg3, float arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream4fv ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream4fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream4d ( GLenum , GLdouble , GLdouble , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream4d ( int arg0, double arg1, @@ -16910,171 +16910,171 @@ public final String getClassVersion ( ) double arg3, double arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream4dv ( GLenum , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream4dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3b ( GLenum , GLbyte , GLbyte , GLbyte ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3b ( int arg0, byte arg1, byte arg2, byte arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3bv ( GLenum , const GLbyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3bv ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3s ( GLenum , GLshort , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3s ( int arg0, short arg1, short arg2, short arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3sv ( GLenum , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3i ( GLenum , GLint , GLint , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3i ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3iv ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3f ( int arg0, float arg1, float arg2, float arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3fv ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3d ( int arg0, double arg1, double arg2, double arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3dv ( GLenum , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClientActiveVertexStream ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClientActiveVertexStream ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexBlendEnvi ( GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexBlendEnvi ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexBlendEnvf ( GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexBlendEnvf ( int arg0, float arg1 ) ; - -/* C2J Parser Version 3.0: Java program parsed successfully. */ +
+/* C2J Parser Version 3.0: Java program parsed successfully. */
} diff --git a/gl4java/GLFuncJauJNI.java b/gl4java/GLFuncJauJNI.java index 1f0ab68..8e25a67 100644 --- a/gl4java/GLFuncJauJNI.java +++ b/gl4java/GLFuncJauJNI.java @@ -32,7 +32,7 @@ public final String getClassVendor ( ) { return "Jausoft - Sven Goethel Software Development"; } public final String getClassVersion ( ) -{ return "2.8.0.8"; } +{ return "2.8.1.0"; } @@ -42,524 +42,524 @@ public final String getClassVersion ( ) * Reading from file: gl-proto-auto.orig.h . . . * Destination-Class: gl4java_GLFuncJauJNI ! */ - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClearIndex ( GLfloat c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClearIndex ( float c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClearColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClearColor ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClear ( GLbitfield mask ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClear ( int mask ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexMask ( GLuint mask ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexMask ( int mask ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorMask ( GLboolean red , GLboolean green , GLboolean blue , GLboolean alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorMask ( boolean red, boolean green, boolean blue, boolean alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glAlphaFunc ( GLenum func , GLclampf ref ) ; - * </pre> - */ + * </pre>
+ */
public final native void glAlphaFunc ( int func, float ref ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBlendFunc ( GLenum sfactor , GLenum dfactor ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBlendFunc ( int sfactor, int dfactor ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLogicOp ( GLenum opcode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLogicOp ( int opcode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCullFace ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCullFace ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFrontFace ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFrontFace ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPointSize ( GLfloat size ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPointSize ( float size ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLineWidth ( GLfloat width ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLineWidth ( float width ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLineStipple ( GLint factor , GLushort pattern ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLineStipple ( int factor, short pattern ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPolygonMode ( GLenum face , GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPolygonMode ( int face, int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPolygonOffset ( GLfloat factor , GLfloat units ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPolygonOffset ( float factor, float units ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPolygonStipple ( const GLubyte * mask ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPolygonStipple ( byte[] mask ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetPolygonStipple ( GLubyte * mask ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetPolygonStipple ( byte[] mask ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEdgeFlag ( GLboolean flag ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEdgeFlag ( boolean flag ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEdgeFlagv ( const GLboolean * flag ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEdgeFlagv ( boolean[] flag ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glScissor ( GLint x , GLint y , GLsizei width , GLsizei height ) ; - * </pre> - */ + * </pre>
+ */
public final native void glScissor ( int x, int y, int width, int height ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClipPlane ( GLenum plane , const GLdouble * equation ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClipPlane ( int plane, double[] equation ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetClipPlane ( GLenum plane , GLdouble * equation ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetClipPlane ( int plane, double[] equation ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDrawBuffer ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDrawBuffer ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReadBuffer ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReadBuffer ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEnable ( GLenum cap ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEnable ( int cap ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDisable ( GLenum cap ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDisable ( int cap ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glIsEnabled ( GLenum cap ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glIsEnabled ( int cap ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEnableClientState ( GLenum cap ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEnableClientState ( int cap ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDisableClientState ( GLenum cap ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDisableClientState ( int cap ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetBooleanv ( GLenum pname , GLboolean * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetBooleanv ( int pname, boolean[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetDoublev ( GLenum pname , GLdouble * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetDoublev ( int pname, double[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetFloatv ( GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetFloatv ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetIntegerv ( GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetIntegerv ( int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPushAttrib ( GLbitfield mask ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPushAttrib ( int mask ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPopAttrib ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPopAttrib ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPushClientAttrib ( GLbitfield mask ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPushClientAttrib ( int mask ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPopClientAttrib ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPopClientAttrib ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint glRenderMode ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native int glRenderMode ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLenum glGetError ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native int glGetError ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFinish ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFinish ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFlush ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFlush ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glHint ( GLenum target , GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glHint ( int target, int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClearDepth ( GLclampd depth ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClearDepth ( double depth ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDepthFunc ( GLenum func ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDepthFunc ( int func ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDepthMask ( GLboolean flag ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDepthMask ( boolean flag ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDepthRange ( GLclampd near_val , GLclampd far_val ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDepthRange ( double near_val, double far_val ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClearAccum ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClearAccum ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glAccum ( GLenum op , GLfloat value ) ; - * </pre> - */ + * </pre>
+ */
public final native void glAccum ( int op, float value ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMatrixMode ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMatrixMode ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glOrtho ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ; - * </pre> - */ + * </pre>
+ */
public final native void glOrtho ( double left, double right, @@ -568,13 +568,13 @@ public final String getClassVersion ( ) double near_val, double far_val ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFrustum ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFrustum ( double left, double right, @@ -583,228 +583,228 @@ public final String getClassVersion ( ) double near_val, double far_val ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glViewport ( GLint x , GLint y , GLsizei width , GLsizei height ) ; - * </pre> - */ + * </pre>
+ */
public final native void glViewport ( int x, int y, int width, int height ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPushMatrix ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPushMatrix ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPopMatrix ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPopMatrix ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadIdentity ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadIdentity ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadMatrixd ( const GLdouble * m ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadMatrixd ( double[] m ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadMatrixf ( const GLfloat * m ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadMatrixf ( float[] m ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultMatrixd ( const GLdouble * m ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultMatrixd ( double[] m ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultMatrixf ( const GLfloat * m ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultMatrixf ( float[] m ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRotated ( GLdouble angle , GLdouble x , GLdouble y , GLdouble z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRotated ( double angle, double x, double y, double z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRotatef ( GLfloat angle , GLfloat x , GLfloat y , GLfloat z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRotatef ( float angle, float x, float y, float z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glScaled ( GLdouble x , GLdouble y , GLdouble z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glScaled ( double x, double y, double z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glScalef ( GLfloat x , GLfloat y , GLfloat z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glScalef ( float x, float y, float z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTranslated ( GLdouble x , GLdouble y , GLdouble z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTranslated ( double x, double y, double z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTranslatef ( GLfloat x , GLfloat y , GLfloat z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTranslatef ( float x, float y, float z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glIsList ( GLuint list ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glIsList ( int list ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeleteLists ( GLuint list , GLsizei range ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeleteLists ( int list, int range ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glGenLists ( GLsizei range ) ; - * </pre> - */ + * </pre>
+ */
public final native int glGenLists ( int range ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNewList ( GLuint list , GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNewList ( int list, int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEndList ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEndList ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCallList ( GLuint list ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCallList ( int list ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCallLists ( GLsizei n , GLenum type , const GLvoid * lists ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCallLists ( int n, int type, @@ -840,1580 +840,1580 @@ public final String getClassVersion ( ) int type, long[] lists ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glListBase ( GLuint base ) ; - * </pre> - */ + * </pre>
+ */
public final native void glListBase ( int base ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBegin ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBegin ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEnd ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEnd ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex2d ( GLdouble x , GLdouble y ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex2d ( double x, double y ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex2f ( GLfloat x , GLfloat y ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex2f ( float x, float y ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex2i ( GLint x , GLint y ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex2i ( int x, int y ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex2s ( GLshort x , GLshort y ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex2s ( short x, short y ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex3d ( GLdouble x , GLdouble y , GLdouble z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex3d ( double x, double y, double z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex3f ( GLfloat x , GLfloat y , GLfloat z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex3f ( float x, float y, float z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex3i ( GLint x , GLint y , GLint z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex3i ( int x, int y, int z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex3s ( GLshort x , GLshort y , GLshort z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex3s ( short x, short y, short z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex4d ( double x, double y, double z, double w ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex4f ( float x, float y, float z, float w ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex4i ( GLint x , GLint y , GLint z , GLint w ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex4i ( int x, int y, int z, int w ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex4s ( short x, short y, short z, short w ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex2dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex2dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex2fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex2fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex2iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex2iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex2sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex2sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex3dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex3fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex3iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex3sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex4dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex4dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex4fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex4fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex4iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex4iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertex4sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertex4sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3b ( GLbyte nx , GLbyte ny , GLbyte nz ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3b ( byte nx, byte ny, byte nz ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3d ( GLdouble nx , GLdouble ny , GLdouble nz ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3d ( double nx, double ny, double nz ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3f ( GLfloat nx , GLfloat ny , GLfloat nz ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3f ( float nx, float ny, float nz ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3i ( GLint nx , GLint ny , GLint nz ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3i ( int nx, int ny, int nz ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3s ( GLshort nx , GLshort ny , GLshort nz ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3s ( short nx, short ny, short nz ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3bv ( const GLbyte * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3bv ( byte[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexd ( GLdouble c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexd ( double c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexf ( GLfloat c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexf ( float c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexi ( GLint c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexi ( int c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexs ( GLshort c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexs ( short c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexub ( GLubyte c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexub ( byte c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexdv ( const GLdouble * c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexdv ( double[] c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexfv ( const GLfloat * c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexfv ( float[] c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexiv ( const GLint * c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexiv ( int[] c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexsv ( const GLshort * c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexsv ( short[] c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexubv ( const GLubyte * c ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexubv ( byte[] c ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3b ( GLbyte red , GLbyte green , GLbyte blue ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3b ( byte red, byte green, byte blue ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3d ( GLdouble red , GLdouble green , GLdouble blue ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3d ( double red, double green, double blue ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3f ( GLfloat red , GLfloat green , GLfloat blue ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3f ( float red, float green, float blue ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3i ( GLint red , GLint green , GLint blue ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3i ( int red, int green, int blue ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3s ( GLshort red , GLshort green , GLshort blue ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3s ( short red, short green, short blue ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3ub ( GLubyte red , GLubyte green , GLubyte blue ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3ub ( byte red, byte green, byte blue ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3ui ( GLuint red , GLuint green , GLuint blue ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3ui ( int red, int green, int blue ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3us ( GLushort red , GLushort green , GLushort blue ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3us ( short red, short green, short blue ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4b ( GLbyte red , GLbyte green , GLbyte blue , GLbyte alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4b ( byte red, byte green, byte blue, byte alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4d ( GLdouble red , GLdouble green , GLdouble blue , GLdouble alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4d ( double red, double green, double blue, double alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4f ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4f ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4i ( GLint red , GLint green , GLint blue , GLint alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4i ( int red, int green, int blue, int alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4s ( GLshort red , GLshort green , GLshort blue , GLshort alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4s ( short red, short green, short blue, short alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4ub ( GLubyte red , GLubyte green , GLubyte blue , GLubyte alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4ub ( byte red, byte green, byte blue, byte alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4ui ( GLuint red , GLuint green , GLuint blue , GLuint alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4ui ( int red, int green, int blue, int alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4us ( GLushort red , GLushort green , GLushort blue , GLushort alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4us ( short red, short green, short blue, short alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3bv ( const GLbyte * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3bv ( byte[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3ubv ( const GLubyte * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3ubv ( byte[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3uiv ( const GLuint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3uiv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3usv ( const GLushort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3usv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4bv ( const GLbyte * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4bv ( byte[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4ubv ( const GLubyte * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4ubv ( byte[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4uiv ( const GLuint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4uiv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4usv ( const GLushort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4usv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord1d ( GLdouble s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord1d ( double s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord1f ( GLfloat s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord1f ( float s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord1i ( GLint s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord1i ( int s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord1s ( GLshort s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord1s ( short s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2d ( GLdouble s , GLdouble t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2d ( double s, double t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2f ( GLfloat s , GLfloat t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2f ( float s, float t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2i ( GLint s , GLint t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2i ( int s, int t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2s ( GLshort s , GLshort t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2s ( short s, short t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord3d ( GLdouble s , GLdouble t , GLdouble r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord3d ( double s, double t, double r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord3f ( GLfloat s , GLfloat t , GLfloat r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord3f ( float s, float t, float r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord3i ( GLint s , GLint t , GLint r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord3i ( int s, int t, int r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord3s ( GLshort s , GLshort t , GLshort r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord3s ( short s, short t, short r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4d ( GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4d ( double s, double t, double r, double q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4f ( GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4f ( float s, float t, float r, float q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4i ( GLint s , GLint t , GLint r , GLint q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4i ( int s, int t, int r, int q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4s ( GLshort s , GLshort t , GLshort r , GLshort q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4s ( short s, short t, short r, short q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord1dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord1dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord1fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord1fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord1iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord1iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord1sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord1sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord3dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord3fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord3iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord3sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos2d ( GLdouble x , GLdouble y ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos2d ( double x, double y ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos2f ( GLfloat x , GLfloat y ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos2f ( float x, float y ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos2i ( GLint x , GLint y ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos2i ( int x, int y ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos2s ( GLshort x , GLshort y ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos2s ( short x, short y ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos3d ( GLdouble x , GLdouble y , GLdouble z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos3d ( double x, double y, double z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos3f ( GLfloat x , GLfloat y , GLfloat z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos3f ( float x, float y, float z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos3i ( GLint x , GLint y , GLint z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos3i ( int x, int y, int z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos3s ( GLshort x , GLshort y , GLshort z ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos3s ( short x, short y, short z ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos4d ( double x, double y, double z, double w ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos4f ( float x, float y, float z, float w ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos4i ( GLint x , GLint y , GLint z , GLint w ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos4i ( int x, int y, int z, int w ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos4s ( short x, short y, short z, short w ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos2dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos2dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos2fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos2fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos2iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos2iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos2sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos2sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos3dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos3fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos3iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos3sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos4dv ( const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos4dv ( double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos4fv ( const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos4fv ( float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos4iv ( const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos4iv ( int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRasterPos4sv ( const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRasterPos4sv ( short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRectd ( GLdouble x1 , GLdouble y1 , GLdouble x2 , GLdouble y2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRectd ( double x1, double y1, double x2, double y2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRectf ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRectf ( float x1, float y1, float x2, float y2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRecti ( GLint x1 , GLint y1 , GLint x2 , GLint y2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRecti ( int x1, int y1, int x2, int y2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRects ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRects ( short x1, short y1, short x2, short y2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRectdv ( const GLdouble * v1 , const GLdouble * v2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRectdv ( double[] v1, double[] v2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRectfv ( const GLfloat * v1 , const GLfloat * v2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRectfv ( float[] v1, float[] v2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRectiv ( const GLint * v1 , const GLint * v2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRectiv ( int[] v1, int[] v2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRectsv ( const GLshort * v1 , const GLshort * v2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRectsv ( short[] v1, short[] v2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexPointer ( int size, int type, @@ -2456,13 +2456,13 @@ public final String getClassVersion ( ) int stride, long[] ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalPointer ( int type, int stride, @@ -2498,13 +2498,13 @@ public final String getClassVersion ( ) int stride, long[] ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorPointer ( int size, int type, @@ -2547,13 +2547,13 @@ public final String getClassVersion ( ) int stride, long[] ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexPointer ( int type, int stride, @@ -2589,13 +2589,13 @@ public final String getClassVersion ( ) int stride, long[] ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoordPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoordPointer ( int size, int type, @@ -2638,13 +2638,13 @@ public final String getClassVersion ( ) int stride, long[] ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEdgeFlagPointer ( GLsizei stride , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEdgeFlagPointer ( int stride, byte[] ptr @@ -2673,13 +2673,13 @@ public final String getClassVersion ( ) int stride, long[] ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetPointerv ( GLenum pname , GLvoid * * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetPointerv ( int pname, byte[][] params @@ -2708,35 +2708,35 @@ public final String getClassVersion ( ) int pname, long[][] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glArrayElement ( GLint i ) ; - * </pre> - */ + * </pre>
+ */
public final native void glArrayElement ( int i ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDrawArrays ( GLenum mode , GLint first , GLsizei count ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDrawArrays ( int mode, int first, int count ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDrawElements ( GLenum mode , GLsizei count , GLenum type , const GLvoid * indices ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDrawElements ( int mode, int count, @@ -2779,13 +2779,13 @@ public final String getClassVersion ( ) int type, long[] indices ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glInterleavedArrays ( GLenum format , GLsizei stride , const GLvoid * pointer ) ; - * </pre> - */ + * </pre>
+ */
public final native void glInterleavedArrays ( int format, int stride, @@ -2821,346 +2821,346 @@ public final String getClassVersion ( ) int stride, long[] pointer ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glShadeModel ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glShadeModel ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLightf ( GLenum light , GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLightf ( int light, int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLighti ( GLenum light , GLenum pname , GLint param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLighti ( int light, int pname, int param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLightfv ( GLenum light , GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLightfv ( int light, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLightiv ( GLenum light , GLenum pname , const GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLightiv ( int light, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetLightfv ( GLenum light , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetLightfv ( int light, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetLightiv ( GLenum light , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetLightiv ( int light, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLightModelf ( GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLightModelf ( int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLightModeli ( GLenum pname , GLint param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLightModeli ( int pname, int param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLightModelfv ( GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLightModelfv ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLightModeliv ( GLenum pname , const GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLightModeliv ( int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMaterialf ( GLenum face , GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMaterialf ( int face, int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMateriali ( GLenum face , GLenum pname , GLint param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMateriali ( int face, int pname, int param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMaterialfv ( GLenum face , GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMaterialfv ( int face, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMaterialiv ( GLenum face , GLenum pname , const GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMaterialiv ( int face, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMaterialfv ( GLenum face , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMaterialfv ( int face, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMaterialiv ( GLenum face , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMaterialiv ( int face, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorMaterial ( GLenum face , GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorMaterial ( int face, int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelZoom ( GLfloat xfactor , GLfloat yfactor ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelZoom ( float xfactor, float yfactor ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelStoref ( GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelStoref ( int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelStorei ( GLenum pname , GLint param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelStorei ( int pname, int param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTransferf ( GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTransferf ( int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTransferi ( GLenum pname , GLint param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTransferi ( int pname, int param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelMapfv ( GLenum map , GLint mapsize , const GLfloat * values ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelMapfv ( int map, int mapsize, float[] values ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelMapuiv ( GLenum map , GLint mapsize , const GLuint * values ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelMapuiv ( int map, int mapsize, int[] values ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelMapusv ( GLenum map , GLint mapsize , const GLushort * values ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelMapusv ( int map, int mapsize, short[] values ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetPixelMapfv ( GLenum map , GLfloat * values ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetPixelMapfv ( int map, float[] values ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetPixelMapuiv ( GLenum map , GLuint * values ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetPixelMapuiv ( int map, int[] values ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetPixelMapusv ( GLenum map , GLushort * values ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetPixelMapusv ( int map, short[] values ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBitmap ( GLsizei width , GLsizei height , GLfloat xorig , GLfloat yorig , GLfloat xmove , GLfloat ymove , const GLubyte * bitmap ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBitmap ( int width, int height, @@ -3170,13 +3170,13 @@ public final String getClassVersion ( ) float ymove, byte[] bitmap ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReadPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum format , GLenum type , GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReadPixels ( int x, int y, @@ -3240,13 +3240,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDrawPixels ( GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDrawPixels ( int width, int height, @@ -3296,13 +3296,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum type ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyPixels ( int x, int y, @@ -3310,335 +3310,335 @@ public final String getClassVersion ( ) int height, int type ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glStencilFunc ( GLenum func , GLint ref , GLuint mask ) ; - * </pre> - */ + * </pre>
+ */
public final native void glStencilFunc ( int func, int ref, int mask ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glStencilMask ( GLuint mask ) ; - * </pre> - */ + * </pre>
+ */
public final native void glStencilMask ( int mask ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glStencilOp ( GLenum fail , GLenum zfail , GLenum zpass ) ; - * </pre> - */ + * </pre>
+ */
public final native void glStencilOp ( int fail, int zfail, int zpass ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClearStencil ( GLint s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClearStencil ( int s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexGend ( GLenum coord , GLenum pname , GLdouble param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexGend ( int coord, int pname, double param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexGenf ( GLenum coord , GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexGenf ( int coord, int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexGeni ( GLenum coord , GLenum pname , GLint param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexGeni ( int coord, int pname, int param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexGendv ( GLenum coord , GLenum pname , const GLdouble * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexGendv ( int coord, int pname, double[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexGenfv ( GLenum coord , GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexGenfv ( int coord, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexGeniv ( GLenum coord , GLenum pname , const GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexGeniv ( int coord, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexGendv ( GLenum coord , GLenum pname , GLdouble * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexGendv ( int coord, int pname, double[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexGenfv ( GLenum coord , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexGenfv ( int coord, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexGeniv ( GLenum coord , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexGeniv ( int coord, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexEnvf ( GLenum target , GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexEnvf ( int target, int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexEnvi ( GLenum target , GLenum pname , GLint param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexEnvi ( int target, int pname, int param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexEnvfv ( GLenum target , GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexEnvfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexEnviv ( GLenum target , GLenum pname , const GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexEnviv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexEnvfv ( GLenum target , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexEnvfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexEnviv ( GLenum target , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexEnviv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexParameterf ( GLenum target , GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexParameterf ( int target, int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexParameteri ( GLenum target , GLenum pname , GLint param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexParameteri ( int target, int pname, int param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexParameteriv ( GLenum target , GLenum pname , const GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexLevelParameterfv ( GLenum target , GLint level , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexLevelParameterfv ( int target, int level, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexLevelParameteriv ( GLenum target , GLint level , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexLevelParameteriv ( int target, int level, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexImage1D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexImage1D ( int target, int level, @@ -3709,13 +3709,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexImage2D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLsizei height , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexImage2D ( int target, int level, @@ -3793,13 +3793,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexImage ( GLenum target , GLint level , GLenum format , GLenum type , GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexImage ( int target, int level, @@ -3849,80 +3849,80 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGenTextures ( GLsizei n , GLuint * textures ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGenTextures ( int n, int[] textures ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeleteTextures ( GLsizei n , const GLuint * textures ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeleteTextures ( int n, int[] textures ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBindTexture ( GLenum target , GLuint texture ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBindTexture ( int target, int texture ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPrioritizeTextures ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPrioritizeTextures ( int n, int[] textures, float[] priorities ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glAreTexturesResident ( GLsizei n , const GLuint * textures , GLboolean * residences ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glAreTexturesResident ( int n, int[] textures, boolean[] residences ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glIsTexture ( GLuint texture ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glIsTexture ( int texture ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLenum type , const GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexSubImage1D ( int target, int level, @@ -3986,13 +3986,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexSubImage2D ( int target, int level, @@ -4070,13 +4070,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLint border ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexImage1D ( int target, int level, @@ -4086,13 +4086,13 @@ public final String getClassVersion ( ) int width, int border ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height , GLint border ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexImage2D ( int target, int level, @@ -4103,13 +4103,13 @@ public final String getClassVersion ( ) int height, int border ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLint x , GLint y , GLsizei width ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexSubImage1D ( int target, int level, @@ -4118,13 +4118,13 @@ public final String getClassVersion ( ) int y, int width ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexSubImage2D ( int target, int level, @@ -4135,13 +4135,13 @@ public final String getClassVersion ( ) int width, int height ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMap1d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint stride , GLint order , const GLdouble * points ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMap1d ( int target, double u1, @@ -4150,13 +4150,13 @@ public final String getClassVersion ( ) int order, double[] points ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMap1f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint stride , GLint order , const GLfloat * points ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMap1f ( int target, float u1, @@ -4165,13 +4165,13 @@ public final String getClassVersion ( ) int order, float[] points ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMap2d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint ustride , GLint uorder , GLdouble v1 , GLdouble v2 , GLint vstride , GLint vorder , const GLdouble * points ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMap2d ( int target, double u1, @@ -4184,13 +4184,13 @@ public final String getClassVersion ( ) int vorder, double[] points ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMap2f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint ustride , GLint uorder , GLfloat v1 , GLfloat v2 , GLint vstride , GLint vorder , const GLfloat * points ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMap2f ( int target, float u1, @@ -4203,155 +4203,155 @@ public final String getClassVersion ( ) int vorder, float[] points ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMapdv ( GLenum target , GLenum query , GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMapdv ( int target, int query, double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMapfv ( GLenum target , GLenum query , GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMapfv ( int target, int query, float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMapiv ( GLenum target , GLenum query , GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMapiv ( int target, int query, int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalCoord1d ( GLdouble u ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalCoord1d ( double u ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalCoord1f ( GLfloat u ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalCoord1f ( float u ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalCoord1dv ( const GLdouble * u ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalCoord1dv ( double[] u ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalCoord1fv ( const GLfloat * u ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalCoord1fv ( float[] u ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalCoord2d ( GLdouble u , GLdouble v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalCoord2d ( double u, double v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalCoord2f ( GLfloat u , GLfloat v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalCoord2f ( float u, float v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalCoord2dv ( const GLdouble * u ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalCoord2dv ( double[] u ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalCoord2fv ( const GLfloat * u ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalCoord2fv ( float[] u ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMapGrid1d ( GLint un , GLdouble u1 , GLdouble u2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMapGrid1d ( int un, double u1, double u2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMapGrid1f ( GLint un , GLfloat u1 , GLfloat u2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMapGrid1f ( int un, float u1, float u2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMapGrid2d ( GLint un , GLdouble u1 , GLdouble u2 , GLint vn , GLdouble v1 , GLdouble v2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMapGrid2d ( int un, double u1, @@ -4360,13 +4360,13 @@ public final String getClassVersion ( ) double v1, double v2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMapGrid2f ( GLint un , GLfloat u1 , GLfloat u2 , GLint vn , GLfloat v1 , GLfloat v2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMapGrid2f ( int un, float u1, @@ -4375,46 +4375,46 @@ public final String getClassVersion ( ) float v1, float v2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalPoint1 ( GLint i ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalPoint1 ( int i ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalPoint2 ( GLint i , GLint j ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalPoint2 ( int i, int j ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalMesh1 ( GLenum mode , GLint i1 , GLint i2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalMesh1 ( int mode, int i1, int i2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalMesh2 ( GLenum mode , GLint i1 , GLint i2 , GLint j1 , GLint j2 ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalMesh2 ( int mode, int i1, @@ -4422,128 +4422,128 @@ public final String getClassVersion ( ) int j1, int j2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogf ( GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogf ( int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogi ( GLenum pname , GLint param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogi ( int pname, int param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogfv ( GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogfv ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogiv ( GLenum pname , const GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogiv ( int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFeedbackBuffer ( GLsizei size , GLenum type , GLfloat * buffer ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFeedbackBuffer ( int size, int type, float[] buffer ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPassThrough ( GLfloat token ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPassThrough ( float token ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSelectBuffer ( GLsizei size , GLuint * buffer ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSelectBuffer ( int size, int[] buffer ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glInitNames ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glInitNames ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadName ( GLuint name ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadName ( int name ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPushName ( GLuint name ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPushName ( int name ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPopName ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPopName ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDrawRangeElements ( GLenum mode , GLuint start , GLuint end , GLsizei count , GLenum type , const GLvoid * indices ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDrawRangeElements ( int mode, int start, @@ -4600,13 +4600,13 @@ public final String getClassVersion ( ) int type, long[] indices ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexImage3D ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexImage3D ( int target, int level, @@ -4691,13 +4691,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexSubImage3D ( int target, int level, @@ -4789,13 +4789,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexSubImage3D ( int target, int level, @@ -4807,13 +4807,13 @@ public final String getClassVersion ( ) int width, int height ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorTable ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorTable ( int target, int internalformat, @@ -4870,13 +4870,13 @@ public final String getClassVersion ( ) int type, long[] table ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorSubTable ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorSubTable ( int target, int start, @@ -4933,37 +4933,37 @@ public final String getClassVersion ( ) int type, long[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorTableParameteriv ( GLenum target , GLenum pname , const GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorTableParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorTableParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorTableParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyColorSubTable ( GLenum target , GLsizei start , GLint x , GLint y , GLsizei width ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyColorSubTable ( int target, int start, @@ -4971,13 +4971,13 @@ public final String getClassVersion ( ) int y, int width ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyColorTable ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyColorTable ( int target, int internalformat, @@ -4985,13 +4985,13 @@ public final String getClassVersion ( ) int y, int width ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetColorTable ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetColorTable ( int target, int format, @@ -5034,83 +5034,83 @@ public final String getClassVersion ( ) int type, long[] table ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetColorTableParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetColorTableParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetColorTableParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetColorTableParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBlendEquation ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBlendEquation ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBlendColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBlendColor ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glHistogram ( GLenum target , GLsizei width , GLenum internalformat , GLboolean sink ) ; - * </pre> - */ + * </pre>
+ */
public final native void glHistogram ( int target, int width, int internalformat, boolean sink ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glResetHistogram ( GLenum target ) ; - * </pre> - */ + * </pre>
+ */
public final native void glResetHistogram ( int target ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetHistogram ( GLenum target , GLboolean reset , GLenum format , GLenum type , GLvoid * values ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetHistogram ( int target, boolean reset, @@ -5160,59 +5160,59 @@ public final String getClassVersion ( ) int type, long[] values ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetHistogramParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetHistogramParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetHistogramParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetHistogramParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMinmax ( GLenum target , GLenum internalformat , GLboolean sink ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMinmax ( int target, int internalformat, boolean sink ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glResetMinmax ( GLenum target ) ; - * </pre> - */ + * </pre>
+ */
public final native void glResetMinmax ( int target ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMinmax ( GLenum target , GLboolean reset , GLenum format , GLenum types , GLvoid * values ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMinmax ( int target, boolean reset, @@ -5262,37 +5262,37 @@ public final String getClassVersion ( ) int types, long[] values ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMinmaxParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMinmaxParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMinmaxParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMinmaxParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionFilter1D ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * image ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionFilter1D ( int target, int internalformat, @@ -5349,13 +5349,13 @@ public final String getClassVersion ( ) int type, long[] image ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * image ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionFilter2D ( int target, int internalformat, @@ -5419,61 +5419,61 @@ public final String getClassVersion ( ) int type, long[] image ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionParameterf ( GLenum target , GLenum pname , GLfloat params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionParameterf ( int target, int pname, float params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionParameteri ( GLenum target , GLenum pname , GLint params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionParameteri ( int target, int pname, int params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionParameteriv ( GLenum target , GLenum pname , const GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyConvolutionFilter1D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyConvolutionFilter1D ( int target, int internalformat, @@ -5481,13 +5481,13 @@ public final String getClassVersion ( ) int y, int width ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyConvolutionFilter2D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyConvolutionFilter2D ( int target, int internalformat, @@ -5496,13 +5496,13 @@ public final String getClassVersion ( ) int width, int height ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetConvolutionFilter ( GLenum target , GLenum format , GLenum type , GLvoid * image ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetConvolutionFilter ( int target, int format, @@ -5545,37 +5545,37 @@ public final String getClassVersion ( ) int type, long[] image ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetConvolutionParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetConvolutionParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetConvolutionParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetConvolutionParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSeparableFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * row , const GLvoid * column ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSeparableFilter2D ( int target, int internalformat, @@ -5646,13 +5646,13 @@ public final String getClassVersion ( ) long[] row, long[] column ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetSeparableFilter ( GLenum target , GLenum format , GLenum type , GLvoid * row , GLvoid * column , GLvoid * span ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetSeparableFilter ( int target, int format, @@ -5709,33 +5709,33 @@ public final String getClassVersion ( ) long[] column, long[] span ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glActiveTexture ( GLenum texture ) ; - * </pre> - */ + * </pre>
+ */
public final native void glActiveTexture ( int texture ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClientActiveTexture ( GLenum texture ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClientActiveTexture ( int texture ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLint border , GLsizei imageSize , const GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexImage1D ( int target, int level, @@ -5799,13 +5799,13 @@ public final String getClassVersion ( ) int imageSize, long[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLint border , GLsizei imageSize , const GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexImage2D ( int target, int level, @@ -5876,13 +5876,13 @@ public final String getClassVersion ( ) int imageSize, long[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexImage3D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLsizei imageSize , const GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexImage3D ( int target, int level, @@ -5960,13 +5960,13 @@ public final String getClassVersion ( ) int imageSize, long[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLsizei imageSize , const GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexSubImage1D ( int target, int level, @@ -6030,13 +6030,13 @@ public final String getClassVersion ( ) int imageSize, long[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLsizei imageSize , const GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexSubImage2D ( int target, int level, @@ -6114,13 +6114,13 @@ public final String getClassVersion ( ) int imageSize, long[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLsizei imageSize , const GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexSubImage3D ( int target, int level, @@ -6212,13 +6212,13 @@ public final String getClassVersion ( ) int imageSize, long[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetCompressedTexImage ( GLenum target , GLint lod , GLvoid * img ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetCompressedTexImage ( int target, int lod, @@ -6254,289 +6254,289 @@ public final String getClassVersion ( ) int lod, long[] img ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1d ( GLenum target , GLdouble s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1d ( int target, double s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1dv ( GLenum target , const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1dv ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1f ( GLenum target , GLfloat s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1f ( int target, float s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1fv ( GLenum target , const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1fv ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1i ( GLenum target , GLint s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1i ( int target, int s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1iv ( GLenum target , const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1iv ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1s ( GLenum target , GLshort s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1s ( int target, short s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1sv ( GLenum target , const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1sv ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2d ( GLenum target , GLdouble s , GLdouble t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2d ( int target, double s, double t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2dv ( GLenum target , const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2dv ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2f ( GLenum target , GLfloat s , GLfloat t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2f ( int target, float s, float t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2fv ( GLenum target , const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2fv ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2i ( GLenum target , GLint s , GLint t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2i ( int target, int s, int t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2iv ( GLenum target , const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2iv ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2s ( GLenum target , GLshort s , GLshort t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2s ( int target, short s, short t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2sv ( GLenum target , const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2sv ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3d ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3d ( int target, double s, double t, double r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3dv ( GLenum target , const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3dv ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3f ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3f ( int target, float s, float t, float r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3fv ( GLenum target , const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3fv ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3i ( GLenum target , GLint s , GLint t , GLint r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3i ( int target, int s, int t, int r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3iv ( GLenum target , const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3iv ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3s ( GLenum target , GLshort s , GLshort t , GLshort r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3s ( int target, short s, short t, short r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3sv ( GLenum target , const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3sv ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4d ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4d ( int target, double s, @@ -6544,24 +6544,24 @@ public final String getClassVersion ( ) double r, double q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4dv ( GLenum target , const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4dv ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4f ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4f ( int target, float s, @@ -6569,24 +6569,24 @@ public final String getClassVersion ( ) float r, float q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4fv ( GLenum target , const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4fv ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4i ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4i ( int target, int s, @@ -6594,24 +6594,24 @@ public final String getClassVersion ( ) int r, int q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4iv ( GLenum target , const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4iv ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4s ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4s ( int target, short s, @@ -6619,381 +6619,381 @@ public final String getClassVersion ( ) short r, short q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4sv ( GLenum target , const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4sv ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadTransposeMatrixd ( const GLdouble m [ 16 ] ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadTransposeMatrixd ( double[] m ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadTransposeMatrixf ( const GLfloat m [ 16 ] ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadTransposeMatrixf ( float[] m ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultTransposeMatrixd ( const GLdouble m [ 16 ] ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultTransposeMatrixd ( double[] m ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultTransposeMatrixf ( const GLfloat m [ 16 ] ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultTransposeMatrixf ( float[] m ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSampleCoverage ( GLclampf value , GLboolean invert ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSampleCoverage ( float value, boolean invert ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSamplePass ( GLenum pass ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSamplePass ( int pass ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glActiveTextureARB ( GLenum texture ) ; - * </pre> - */ + * </pre>
+ */
public final native void glActiveTextureARB ( int texture ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClientActiveTextureARB ( GLenum texture ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClientActiveTextureARB ( int texture ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1dARB ( GLenum target , GLdouble s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1dARB ( int target, double s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1dvARB ( GLenum target , const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1dvARB ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1fARB ( GLenum target , GLfloat s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1fARB ( int target, float s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1fvARB ( GLenum target , const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1fvARB ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1iARB ( GLenum target , GLint s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1iARB ( int target, int s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1ivARB ( GLenum target , const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1ivARB ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1sARB ( GLenum target , GLshort s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1sARB ( int target, short s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord1svARB ( GLenum target , const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord1svARB ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2dARB ( GLenum target , GLdouble s , GLdouble t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2dARB ( int target, double s, double t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2dvARB ( GLenum target , const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2dvARB ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2fARB ( GLenum target , GLfloat s , GLfloat t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2fARB ( int target, float s, float t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2fvARB ( GLenum target , const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2fvARB ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2iARB ( GLenum target , GLint s , GLint t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2iARB ( int target, int s, int t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2ivARB ( GLenum target , const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2ivARB ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2sARB ( GLenum target , GLshort s , GLshort t ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2sARB ( int target, short s, short t ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord2svARB ( GLenum target , const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord2svARB ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3dARB ( int target, double s, double t, double r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3dvARB ( GLenum target , const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3dvARB ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3fARB ( int target, float s, float t, float r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3fvARB ( GLenum target , const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3fvARB ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3iARB ( GLenum target , GLint s , GLint t , GLint r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3iARB ( int target, int s, int t, int r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3ivARB ( GLenum target , const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3ivARB ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3sARB ( GLenum target , GLshort s , GLshort t , GLshort r ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3sARB ( int target, short s, short t, short r ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord3svARB ( GLenum target , const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord3svARB ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4dARB ( int target, double s, @@ -7001,24 +7001,24 @@ public final String getClassVersion ( ) double r, double q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4dvARB ( GLenum target , const GLdouble * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4dvARB ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4fARB ( int target, float s, @@ -7026,24 +7026,24 @@ public final String getClassVersion ( ) float r, float q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4fvARB ( GLenum target , const GLfloat * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4fvARB ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4iARB ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4iARB ( int target, int s, @@ -7051,24 +7051,24 @@ public final String getClassVersion ( ) int r, int q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4ivARB ( GLenum target , const GLint * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4ivARB ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4sARB ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4sARB ( int target, short s, @@ -7076,48 +7076,48 @@ public final String getClassVersion ( ) short r, short q ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiTexCoord4svARB ( GLenum target , const GLshort * v ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiTexCoord4svARB ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBlendColorEXT ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBlendColorEXT ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPolygonOffsetEXT ( GLfloat factor , GLfloat bias ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPolygonOffsetEXT ( float factor, float bias ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexImage3DEXT ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexImage3DEXT ( int target, int level, @@ -7202,13 +7202,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexSubImage3DEXT ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const GLvoid * pixels ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexSubImage3DEXT ( int target, int level, @@ -7300,13 +7300,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexSubImage3DEXT ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexSubImage3DEXT ( int target, int level, @@ -7318,80 +7318,80 @@ public final String getClassVersion ( ) int width, int height ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGenTexturesEXT ( GLsizei n , GLuint * textures ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGenTexturesEXT ( int n, int[] textures ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeleteTexturesEXT ( GLsizei n , const GLuint * textures ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeleteTexturesEXT ( int n, int[] textures ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBindTextureEXT ( GLenum target , GLuint texture ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBindTextureEXT ( int target, int texture ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPrioritizeTexturesEXT ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPrioritizeTexturesEXT ( int n, int[] textures, float[] priorities ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glAreTexturesResidentEXT ( GLsizei n , const GLuint * textures , GLboolean * residences ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glAreTexturesResidentEXT ( int n, int[] textures, boolean[] residences ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glIsTextureEXT ( GLuint texture ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glIsTextureEXT ( int texture ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexPointerEXT ( int size, int type, @@ -7441,13 +7441,13 @@ public final String getClassVersion ( ) int count, long[] ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalPointerEXT ( int type, int stride, @@ -7490,13 +7490,13 @@ public final String getClassVersion ( ) int count, long[] ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorPointerEXT ( int size, int type, @@ -7546,13 +7546,13 @@ public final String getClassVersion ( ) int count, long[] ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexPointerEXT ( int type, int stride, @@ -7595,13 +7595,13 @@ public final String getClassVersion ( ) int count, long[] ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoordPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoordPointerEXT ( int size, int type, @@ -7651,25 +7651,25 @@ public final String getClassVersion ( ) int count, long[] ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEdgeFlagPointerEXT ( GLsizei stride , GLsizei count , const GLboolean * ptr ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEdgeFlagPointerEXT ( int stride, int count, boolean[] ptr ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetPointervEXT ( GLenum pname , GLvoid * * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetPointervEXT ( int pname, byte[][] params @@ -7698,89 +7698,89 @@ public final String getClassVersion ( ) int pname, long[][] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glArrayElementEXT ( GLint i ) ; - * </pre> - */ + * </pre>
+ */
public final native void glArrayElementEXT ( int i ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDrawArraysEXT ( GLenum mode , GLint first , GLsizei count ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDrawArraysEXT ( int mode, int first, int count ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBlendEquationEXT ( GLenum mode ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBlendEquationEXT ( int mode ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPointParameterfEXT ( GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPointParameterfEXT ( int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPointParameterfvEXT ( GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPointParameterfvEXT ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPointParameterfSGIS ( GLenum pname , GLfloat param ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPointParameterfSGIS ( int pname, float param ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPointParameterfvSGIS ( GLenum pname , const GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPointParameterfvSGIS ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorTableEXT ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorTableEXT ( int target, int internalformat, @@ -7837,13 +7837,13 @@ public final String getClassVersion ( ) int type, long[] table ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorSubTableEXT ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorSubTableEXT ( int target, int start, @@ -7900,13 +7900,13 @@ public final String getClassVersion ( ) int type, long[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetColorTableEXT ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetColorTableEXT ( int target, int format, @@ -7949,108 +7949,108 @@ public final String getClassVersion ( ) int type, long[] table ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetColorTableParameterfvEXT ( GLenum target , GLenum pname , GLfloat * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetColorTableParameterfvEXT ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetColorTableParameterivEXT ( GLenum target , GLenum pname , GLint * params ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetColorTableParameterivEXT ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLockArraysEXT ( GLint first , GLsizei count ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLockArraysEXT ( int first, int count ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glUnlockArraysEXT ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glUnlockArraysEXT ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadTransposeMatrixfARB ( const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadTransposeMatrixfARB ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadTransposeMatrixdARB ( const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadTransposeMatrixdARB ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultTransposeMatrixfARB ( const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultTransposeMatrixfARB ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultTransposeMatrixdARB ( const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultTransposeMatrixdARB ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSampleCoverageARB ( GLclampf , GLboolean ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSampleCoverageARB ( float arg0, boolean arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexImage3DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexImage3DARB ( int arg0, int arg1, @@ -8128,13 +8128,13 @@ public final String getClassVersion ( ) int arg7, long[] arg8 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexImage2DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexImage2DARB ( int arg0, int arg1, @@ -8205,13 +8205,13 @@ public final String getClassVersion ( ) int arg6, long[] arg7 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexImage1DARB ( GLenum , GLint , GLenum , GLsizei , GLint , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexImage1DARB ( int arg0, int arg1, @@ -8275,13 +8275,13 @@ public final String getClassVersion ( ) int arg5, long[] arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexSubImage3DARB ( GLenum , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexSubImage3DARB ( int arg0, int arg1, @@ -8373,13 +8373,13 @@ public final String getClassVersion ( ) int arg9, long[] arg10 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexSubImage2DARB ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexSubImage2DARB ( int arg0, int arg1, @@ -8457,13 +8457,13 @@ public final String getClassVersion ( ) int arg7, long[] arg8 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCompressedTexSubImage1DARB ( GLenum , GLint , GLint , GLsizei , GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCompressedTexSubImage1DARB ( int arg0, int arg1, @@ -8527,13 +8527,13 @@ public final String getClassVersion ( ) int arg5, long[] arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetCompressedTexImageARB ( GLenum , GLint , void * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetCompressedTexImageARB ( int arg0, int arg1, @@ -8569,101 +8569,101 @@ public final String getClassVersion ( ) int arg1, long[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWeightbvARB ( GLint , const GLbyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWeightbvARB ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWeightsvARB ( GLint , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWeightsvARB ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWeightivARB ( GLint , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWeightivARB ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWeightfvARB ( GLint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWeightfvARB ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWeightdvARB ( GLint , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWeightdvARB ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWeightubvARB ( GLint , const GLubyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWeightubvARB ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWeightusvARB ( GLint , const GLushort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWeightusvARB ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWeightuivARB ( GLint , const GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWeightuivARB ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWeightPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWeightPointerARB ( int arg0, int arg1, @@ -8706,66 +8706,66 @@ public final String getClassVersion ( ) int arg2, long[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexBlendARB ( GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexBlendARB ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCurrentPaletteMatrixARB ( GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCurrentPaletteMatrixARB ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMatrixIndexubvARB ( GLint , const GLubyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMatrixIndexubvARB ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMatrixIndexusvARB ( GLint , const GLushort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMatrixIndexusvARB ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMatrixIndexuivARB ( GLint , const GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMatrixIndexuivARB ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMatrixIndexPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMatrixIndexPointerARB ( int arg0, int arg1, @@ -8808,38 +8808,38 @@ public final String getClassVersion ( ) int arg2, long[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexFilterFuncSGIS ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexFilterFuncSGIS ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexFilterFuncSGIS ( GLenum , GLenum , GLsizei , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexFilterFuncSGIS ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexSubImage1DEXT ( GLenum , GLint , GLint , GLsizei , GLenum , GLenum , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexSubImage1DEXT ( int arg0, int arg1, @@ -8903,13 +8903,13 @@ public final String getClassVersion ( ) int arg5, long[] arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexSubImage2DEXT ( int arg0, int arg1, @@ -8987,13 +8987,13 @@ public final String getClassVersion ( ) int arg7, long[] arg8 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexImage1DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexImage1DEXT ( int arg0, int arg1, @@ -9003,13 +9003,13 @@ public final String getClassVersion ( ) int arg5, int arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexImage2DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLsizei , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexImage2DEXT ( int arg0, int arg1, @@ -9020,13 +9020,13 @@ public final String getClassVersion ( ) int arg6, int arg7 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexSubImage1DEXT ( GLenum , GLint , GLint , GLint , GLint , GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexSubImage1DEXT ( int arg0, int arg1, @@ -9035,13 +9035,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyTexSubImage2DEXT ( int arg0, int arg1, @@ -9052,13 +9052,13 @@ public final String getClassVersion ( ) int arg6, int arg7 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetHistogramEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetHistogramEXT ( int arg0, boolean arg1, @@ -9108,37 +9108,37 @@ public final String getClassVersion ( ) int arg3, long[] arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetHistogramParameterfvEXT ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetHistogramParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetHistogramParameterivEXT ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetHistogramParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMinmaxEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMinmaxEXT ( int arg0, boolean arg1, @@ -9188,82 +9188,82 @@ public final String getClassVersion ( ) int arg3, long[] arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMinmaxParameterfvEXT ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMinmaxParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMinmaxParameterivEXT ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMinmaxParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glHistogramEXT ( GLenum , GLsizei , GLenum , GLboolean ) ; - * </pre> - */ + * </pre>
+ */
public final native void glHistogramEXT ( int arg0, int arg1, int arg2, boolean arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMinmaxEXT ( GLenum , GLenum , GLboolean ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMinmaxEXT ( int arg0, int arg1, boolean arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glResetHistogramEXT ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glResetHistogramEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glResetMinmaxEXT ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glResetMinmaxEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionFilter1DEXT ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionFilter1DEXT ( int arg0, int arg1, @@ -9320,13 +9320,13 @@ public final String getClassVersion ( ) int arg4, long[] arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionFilter2DEXT ( int arg0, int arg1, @@ -9390,61 +9390,61 @@ public final String getClassVersion ( ) int arg5, long[] arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionParameterfEXT ( GLenum , GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionParameterfEXT ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionParameteriEXT ( GLenum , GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionParameteriEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glConvolutionParameterivEXT ( GLenum , GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glConvolutionParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyConvolutionFilter1DEXT ( GLenum , GLenum , GLint , GLint , GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyConvolutionFilter1DEXT ( int arg0, int arg1, @@ -9452,13 +9452,13 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyConvolutionFilter2DEXT ( GLenum , GLenum , GLint , GLint , GLsizei , GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyConvolutionFilter2DEXT ( int arg0, int arg1, @@ -9467,13 +9467,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetConvolutionFilterEXT ( GLenum , GLenum , GLenum , GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetConvolutionFilterEXT ( int arg0, int arg1, @@ -9516,37 +9516,37 @@ public final String getClassVersion ( ) int arg2, long[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetConvolutionParameterfvEXT ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetConvolutionParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetConvolutionParameterivEXT ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetConvolutionParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetSeparableFilterEXT ( GLenum , GLenum , GLenum , GLvoid * , GLvoid * , GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetSeparableFilterEXT ( int arg0, int arg1, @@ -9603,13 +9603,13 @@ public final String getClassVersion ( ) long[] arg4, long[] arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSeparableFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSeparableFilter2DEXT ( int arg0, int arg1, @@ -9680,13 +9680,13 @@ public final String getClassVersion ( ) long[] arg6, long[] arg7 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorTableSGI ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorTableSGI ( int arg0, int arg1, @@ -9743,37 +9743,37 @@ public final String getClassVersion ( ) int arg4, long[] arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorTableParameterfvSGI ( GLenum , GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorTableParameterfvSGI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorTableParameterivSGI ( GLenum , GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorTableParameterivSGI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyColorTableSGI ( GLenum , GLenum , GLint , GLint , GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyColorTableSGI ( int arg0, int arg1, @@ -9781,13 +9781,13 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetColorTableSGI ( GLenum , GLenum , GLenum , GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetColorTableSGI ( int arg0, int arg1, @@ -9830,113 +9830,113 @@ public final String getClassVersion ( ) int arg2, long[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetColorTableParameterfvSGI ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetColorTableParameterfvSGI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetColorTableParameterivSGI ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetColorTableParameterivSGI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTexGenSGIX ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTexGenSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTexGenParameteriSGIS ( GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTexGenParameteriSGIS ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTexGenParameterivSGIS ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTexGenParameterivSGIS ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTexGenParameterfSGIS ( GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTexGenParameterfSGIS ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTexGenParameterfvSGIS ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTexGenParameterfvSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetPixelTexGenParameterivSGIS ( GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetPixelTexGenParameterivSGIS ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetPixelTexGenParameterfvSGIS ( GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetPixelTexGenParameterfvSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexImage4DSGIS ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLsizei , GLint , GLenum , GLenum , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexImage4DSGIS ( int arg0, int arg1, @@ -10028,13 +10028,13 @@ public final String getClassVersion ( ) int arg9, long[] arg10 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexSubImage4DSGIS ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexSubImage4DSGIS ( int arg0, int arg1, @@ -10140,224 +10140,224 @@ public final String getClassVersion ( ) int arg11, long[] arg12 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDetailTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDetailTexFuncSGIS ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetDetailTexFuncSGIS ( GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetDetailTexFuncSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSharpenTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSharpenTexFuncSGIS ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetSharpenTexFuncSGIS ( GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetSharpenTexFuncSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSampleMaskSGIS ( GLclampf , GLboolean ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSampleMaskSGIS ( float arg0, boolean arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSamplePatternSGIS ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSamplePatternSGIS ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSpriteParameterfSGIX ( GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSpriteParameterfSGIX ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSpriteParameterfvSGIX ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSpriteParameterfvSGIX ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSpriteParameteriSGIX ( GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSpriteParameteriSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSpriteParameterivSGIX ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSpriteParameterivSGIX ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPointParameterfARB ( GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPointParameterfARB ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPointParameterfvARB ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPointParameterfvARB ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint glGetInstrumentsSGIX ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native int glGetInstrumentsSGIX ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glInstrumentsBufferSGIX ( GLsizei , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glInstrumentsBufferSGIX ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint glPollInstrumentsSGIX ( GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native int glPollInstrumentsSGIX ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReadInstrumentsSGIX ( GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReadInstrumentsSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glStartInstrumentsSGIX ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glStartInstrumentsSGIX ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glStopInstrumentsSGIX ( GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glStopInstrumentsSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFrameZoomSGIX ( GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFrameZoomSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTagSampleBufferSGIX ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTagSampleBufferSGIX ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeformationMap3dSGIX ( GLenum , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeformationMap3dSGIX ( int arg0, double arg1, @@ -10374,13 +10374,13 @@ public final String getClassVersion ( ) int arg12, double[] arg13 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeformationMap3fSGIX ( GLenum , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeformationMap3fSGIX ( int arg0, float arg1, @@ -10397,145 +10397,145 @@ public final String getClassVersion ( ) int arg12, float[] arg13 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeformSGIX ( GLbitfield ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeformSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadIdentityDeformationMapSGIX ( GLbitfield ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadIdentityDeformationMapSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReferencePlaneSGIX ( const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReferencePlaneSGIX ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFlushRasterSGIX ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFlushRasterSGIX ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogFuncSGIS ( GLsizei , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogFuncSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetFogFuncSGIS ( GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetFogFuncSGIS ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glImageTransformParameteriHP ( GLenum , GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glImageTransformParameteriHP ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glImageTransformParameterfHP ( GLenum , GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glImageTransformParameterfHP ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glImageTransformParameterivHP ( GLenum , GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glImageTransformParameterivHP ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glImageTransformParameterfvHP ( GLenum , GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glImageTransformParameterfvHP ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetImageTransformParameterivHP ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetImageTransformParameterivHP ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetImageTransformParameterfvHP ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetImageTransformParameterfvHP ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCopyColorSubTableEXT ( GLenum , GLsizei , GLint , GLint , GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCopyColorSubTableEXT ( int arg0, int arg1, @@ -10543,350 +10543,350 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glHintPGI ( GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glHintPGI ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetListParameterfvSGIX ( GLuint , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetListParameterfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetListParameterivSGIX ( GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetListParameterivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glListParameterfSGIX ( GLuint , GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glListParameterfSGIX ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glListParameterfvSGIX ( GLuint , GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glListParameterfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glListParameteriSGIX ( GLuint , GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glListParameteriSGIX ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glListParameterivSGIX ( GLuint , GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glListParameterivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexMaterialEXT ( GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexMaterialEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexFuncEXT ( GLenum , GLclampf ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexFuncEXT ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCullParameterdvEXT ( GLenum , GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCullParameterdvEXT ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCullParameterfvEXT ( GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCullParameterfvEXT ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentColorMaterialSGIX ( GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentColorMaterialSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentLightfSGIX ( GLenum , GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentLightfSGIX ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentLightfvSGIX ( GLenum , GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentLightfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentLightiSGIX ( GLenum , GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentLightiSGIX ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentLightivSGIX ( GLenum , GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentLightivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentLightModelfSGIX ( GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentLightModelfSGIX ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentLightModelfvSGIX ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentLightModelfvSGIX ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentLightModeliSGIX ( GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentLightModeliSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentLightModelivSGIX ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentLightModelivSGIX ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentMaterialfSGIX ( GLenum , GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentMaterialfSGIX ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentMaterialfvSGIX ( GLenum , GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentMaterialfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentMaterialiSGIX ( GLenum , GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentMaterialiSGIX ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFragmentMaterialivSGIX ( GLenum , GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFragmentMaterialivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetFragmentLightfvSGIX ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetFragmentLightfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetFragmentLightivSGIX ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetFragmentLightivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetFragmentMaterialfvSGIX ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetFragmentMaterialfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetFragmentMaterialivSGIX ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetFragmentMaterialivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLightEnviSGIX ( GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLightEnviSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDrawRangeElementsEXT ( GLenum , GLuint , GLuint , GLsizei , GLenum , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDrawRangeElementsEXT ( int arg0, int arg1, @@ -10943,105 +10943,105 @@ public final String getClassVersion ( ) int arg4, long[] arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glApplyTextureEXT ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glApplyTextureEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTextureLightEXT ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTextureLightEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTextureMaterialEXT ( GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTextureMaterialEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glAsyncMarkerSGIX ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glAsyncMarkerSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint glFinishAsyncSGIX ( GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native int glFinishAsyncSGIX ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint glPollAsyncSGIX ( GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native int glPollAsyncSGIX ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glGenAsyncMarkersSGIX ( GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native int glGenAsyncMarkersSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeleteAsyncMarkersSGIX ( GLuint , GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeleteAsyncMarkersSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glIsAsyncMarkerSGIX ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glIsAsyncMarkerSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexPointervINTEL ( GLint , GLenum , const GLvoid * * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexPointervINTEL ( int arg0, int arg1, @@ -11077,13 +11077,13 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalPointervINTEL ( GLenum , const GLvoid * * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalPointervINTEL ( int arg0, byte[][] arg1 @@ -11112,13 +11112,13 @@ public final String getClassVersion ( ) int arg0, long[][] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorPointervINTEL ( GLint , GLenum , const GLvoid * * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorPointervINTEL ( int arg0, int arg1, @@ -11154,13 +11154,13 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoordPointervINTEL ( GLint , GLenum , const GLvoid * * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoordPointervINTEL ( int arg0, int arg1, @@ -11196,237 +11196,237 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTransformParameteriEXT ( GLenum , GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTransformParameteriEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTransformParameterfEXT ( GLenum , GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTransformParameterfEXT ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTransformParameterivEXT ( GLenum , GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTransformParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPixelTransformParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPixelTransformParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3bEXT ( GLbyte , GLbyte , GLbyte ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3bEXT ( byte arg0, byte arg1, byte arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3bvEXT ( const GLbyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3bvEXT ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3dEXT ( GLdouble , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3dEXT ( double arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3dvEXT ( const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3dvEXT ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3fEXT ( GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3fEXT ( float arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3fvEXT ( const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3fvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3iEXT ( GLint , GLint , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3iEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3ivEXT ( const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3ivEXT ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3sEXT ( GLshort , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3sEXT ( short arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3svEXT ( const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3svEXT ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3ubEXT ( GLubyte , GLubyte , GLubyte ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3ubEXT ( byte arg0, byte arg1, byte arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3ubvEXT ( const GLubyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3ubvEXT ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3uiEXT ( GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3uiEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3uivEXT ( const GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3uivEXT ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3usEXT ( GLushort , GLushort , GLushort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3usEXT ( short arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColor3usvEXT ( const GLushort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColor3usvEXT ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColorPointerEXT ( GLint , GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColorPointerEXT ( int arg0, int arg1, @@ -11469,36 +11469,36 @@ public final String getClassVersion ( ) int arg2, long[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTextureNormalEXT ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTextureNormalEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiDrawArraysEXT ( GLenum , GLint * , GLsizei * , GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiDrawArraysEXT ( int arg0, int[] arg1, int[] arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiDrawElementsEXT ( GLenum , const GLsizei * , GLenum , const GLvoid * * , GLsizei ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiDrawElementsEXT ( int arg0, int[] arg1, @@ -11548,53 +11548,53 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogCoordfEXT ( GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogCoordfEXT ( float arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogCoordfvEXT ( const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogCoordfvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogCoorddEXT ( GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogCoorddEXT ( double arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogCoorddvEXT ( const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogCoorddvEXT ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogCoordPointerEXT ( GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogCoordPointerEXT ( int arg0, int arg1, @@ -11630,233 +11630,233 @@ public final String getClassVersion ( ) int arg1, long[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3bEXT ( GLbyte , GLbyte , GLbyte ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3bEXT ( byte arg0, byte arg1, byte arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3bvEXT ( const GLbyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3bvEXT ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3dEXT ( GLdouble , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3dEXT ( double arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3dvEXT ( const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3dvEXT ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3fEXT ( GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3fEXT ( float arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3fvEXT ( const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3fvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3iEXT ( GLint , GLint , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3iEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3ivEXT ( const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3ivEXT ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3sEXT ( GLshort , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3sEXT ( short arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangent3svEXT ( const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangent3svEXT ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3bEXT ( GLbyte , GLbyte , GLbyte ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3bEXT ( byte arg0, byte arg1, byte arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3bvEXT ( const GLbyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3bvEXT ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3dEXT ( GLdouble , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3dEXT ( double arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3dvEXT ( const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3dvEXT ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3fEXT ( GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3fEXT ( float arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3fvEXT ( const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3fvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3iEXT ( GLint , GLint , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3iEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3ivEXT ( const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3ivEXT ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3sEXT ( GLshort , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3sEXT ( short arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormal3svEXT ( const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormal3svEXT ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTangentPointerEXT ( GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTangentPointerEXT ( int arg0, int arg1, @@ -11892,13 +11892,13 @@ public final String getClassVersion ( ) int arg1, long[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBinormalPointerEXT ( GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBinormalPointerEXT ( int arg0, int arg1, @@ -11934,162 +11934,162 @@ public final String getClassVersion ( ) int arg1, long[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFinishTextureSUNX ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFinishTextureSUNX ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGlobalAlphaFactorbSUN ( GLbyte ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGlobalAlphaFactorbSUN ( byte arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGlobalAlphaFactorsSUN ( GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGlobalAlphaFactorsSUN ( short arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGlobalAlphaFactoriSUN ( GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGlobalAlphaFactoriSUN ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGlobalAlphaFactorfSUN ( GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGlobalAlphaFactorfSUN ( float arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGlobalAlphaFactordSUN ( GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGlobalAlphaFactordSUN ( double arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGlobalAlphaFactorubSUN ( GLubyte ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGlobalAlphaFactorubSUN ( byte arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGlobalAlphaFactorusSUN ( GLushort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGlobalAlphaFactorusSUN ( short arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGlobalAlphaFactoruiSUN ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGlobalAlphaFactoruiSUN ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiSUN ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiSUN ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeusSUN ( GLushort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeusSUN ( short arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeubSUN ( GLubyte ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeubSUN ( byte arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuivSUN ( const GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuivSUN ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeusvSUN ( const GLushort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeusvSUN ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeubvSUN ( const GLubyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeubvSUN ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodePointerSUN ( GLenum , GLsizei , const GLvoid * * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodePointerSUN ( int arg0, int arg1, @@ -12125,13 +12125,13 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4ubVertex2fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4ubVertex2fSUN ( byte arg0, byte arg1, @@ -12140,24 +12140,24 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4ubVertex2fvSUN ( const GLubyte * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4ubVertex2fvSUN ( byte[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4ubVertex3fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4ubVertex3fSUN ( byte arg0, byte arg1, @@ -12167,24 +12167,24 @@ public final String getClassVersion ( ) float arg5, float arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4ubVertex3fvSUN ( const GLubyte * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4ubVertex3fvSUN ( byte[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3fVertex3fSUN ( float arg0, float arg1, @@ -12193,24 +12193,24 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor3fVertex3fvSUN ( float[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3fVertex3fSUN ( float arg0, float arg1, @@ -12219,24 +12219,24 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormal3fVertex3fvSUN ( float[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4fNormal3fVertex3fSUN ( float arg0, float arg1, @@ -12249,25 +12249,25 @@ public final String getClassVersion ( ) float arg8, float arg9 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColor4fNormal3fVertex3fvSUN ( float[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fVertex3fSUN ( float arg0, float arg1, @@ -12275,24 +12275,24 @@ public final String getClassVersion ( ) float arg3, float arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fVertex3fvSUN ( float[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4fVertex4fSUN ( float arg0, float arg1, @@ -12303,24 +12303,24 @@ public final String getClassVersion ( ) float arg6, float arg7 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4fVertex4fvSUN ( const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4fVertex4fvSUN ( float[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fColor4ubVertex3fSUN ( GLfloat , GLfloat , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fColor4ubVertex3fSUN ( float arg0, float arg1, @@ -12332,25 +12332,25 @@ public final String getClassVersion ( ) float arg7, float arg8 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fColor4ubVertex3fvSUN ( const GLfloat * , const GLubyte * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fColor4ubVertex3fvSUN ( float[] arg0, byte[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fColor3fVertex3fSUN ( float arg0, float arg1, @@ -12361,25 +12361,25 @@ public final String getClassVersion ( ) float arg6, float arg7 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fColor3fVertex3fvSUN ( float[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fNormal3fVertex3fSUN ( float arg0, float arg1, @@ -12390,25 +12390,25 @@ public final String getClassVersion ( ) float arg6, float arg7 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fNormal3fVertex3fvSUN ( float[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fColor4fNormal3fVertex3fSUN ( float arg0, float arg1, @@ -12423,26 +12423,26 @@ public final String getClassVersion ( ) float arg10, float arg11 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord2fColor4fNormal3fVertex3fvSUN ( float[] arg0, float[] arg1, float[] arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4fColor4fNormal3fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4fColor4fNormal3fVertex4fSUN ( float arg0, float arg1, @@ -12460,50 +12460,50 @@ public final String getClassVersion ( ) float arg13, float arg14 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoord4fColor4fNormal3fVertex4fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoord4fColor4fNormal3fVertex4fvSUN ( float[] arg0, float[] arg1, float[] arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiVertex3fSUN ( int arg0, float arg1, float arg2, float arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiVertex3fvSUN ( const GLenum * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiVertex3fvSUN ( int[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiColor4ubVertex3fSUN ( GLenum , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiColor4ubVertex3fSUN ( int arg0, byte arg1, @@ -12514,25 +12514,25 @@ public final String getClassVersion ( ) float arg6, float arg7 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiColor4ubVertex3fvSUN ( const GLenum * , const GLubyte * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiColor4ubVertex3fvSUN ( int[] arg0, byte[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiColor3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiColor3fVertex3fSUN ( int arg0, float arg1, @@ -12542,25 +12542,25 @@ public final String getClassVersion ( ) float arg5, float arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiColor3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiColor3fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiNormal3fVertex3fSUN ( int arg0, float arg1, @@ -12570,25 +12570,25 @@ public final String getClassVersion ( ) float arg5, float arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiNormal3fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( int arg0, float arg1, @@ -12602,26 +12602,26 @@ public final String getClassVersion ( ) float arg9, float arg10 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiTexCoord2fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiTexCoord2fVertex3fSUN ( int arg0, float arg1, @@ -12630,25 +12630,25 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiTexCoord2fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiTexCoord2fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( int arg0, float arg1, @@ -12660,26 +12660,26 @@ public final String getClassVersion ( ) float arg7, float arg8 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( int arg0, float arg1, @@ -12695,13 +12695,13 @@ public final String getClassVersion ( ) float arg11, float arg12 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( int[] arg0, float[] arg1, @@ -12709,59 +12709,59 @@ public final String getClassVersion ( ) float[] arg3, float[] arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBlendFuncSeparateEXT ( GLenum , GLenum , GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBlendFuncSeparateEXT ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBlendFuncSeparateINGR ( GLenum , GLenum , GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBlendFuncSeparateINGR ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexWeightfEXT ( GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexWeightfEXT ( float arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexWeightfvEXT ( const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexWeightfvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexWeightPointerEXT ( GLsizei , GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexWeightPointerEXT ( int arg0, int arg1, @@ -12804,22 +12804,22 @@ public final String getClassVersion ( ) int arg2, long[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFlushVertexArrayRangeNV ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFlushVertexArrayRangeNV ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexArrayRangeNV ( GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexArrayRangeNV ( int arg0, byte[] arg1 @@ -12848,57 +12848,57 @@ public final String getClassVersion ( ) int arg0, long[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCombinerParameterfvNV ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCombinerParameterfvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCombinerParameterfNV ( GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCombinerParameterfNV ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCombinerParameterivNV ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCombinerParameterivNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCombinerParameteriNV ( GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCombinerParameteriNV ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCombinerInputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCombinerInputNV ( int arg0, int arg1, @@ -12907,13 +12907,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCombinerOutputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLboolean , GLboolean , GLboolean ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCombinerOutputNV ( int arg0, int arg1, @@ -12926,26 +12926,26 @@ public final String getClassVersion ( ) boolean arg8, boolean arg9 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFinalCombinerInputNV ( GLenum , GLenum , GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFinalCombinerInputNV ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetCombinerInputParameterfvNV ( GLenum , GLenum , GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetCombinerInputParameterfvNV ( int arg0, int arg1, @@ -12953,13 +12953,13 @@ public final String getClassVersion ( ) int arg3, float[] arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetCombinerInputParameterivNV ( GLenum , GLenum , GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetCombinerInputParameterivNV ( int arg0, int arg1, @@ -12967,63 +12967,63 @@ public final String getClassVersion ( ) int arg3, int[] arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetCombinerOutputParameterfvNV ( GLenum , GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetCombinerOutputParameterfvNV ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetCombinerOutputParameterivNV ( GLenum , GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetCombinerOutputParameterivNV ( int arg0, int arg1, int arg2, int[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetFinalCombinerInputParameterfvNV ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetFinalCombinerInputParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetFinalCombinerInputParameterivNV ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetFinalCombinerInputParameterivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiModeDrawArraysIBM ( GLenum , const GLint * , const GLsizei * , GLsizei , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiModeDrawArraysIBM ( int arg0, int[] arg1, @@ -13031,13 +13031,13 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMultiModeDrawElementsIBM ( const GLenum * , const GLsizei * , GLenum , const GLvoid * * , GLsizei , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMultiModeDrawElementsIBM ( int[] arg0, int[] arg1, @@ -13094,13 +13094,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorPointerListIBM ( int arg0, int arg1, @@ -13150,13 +13150,13 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSecondaryColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSecondaryColorPointerListIBM ( int arg0, int arg1, @@ -13206,25 +13206,25 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEdgeFlagPointerListIBM ( GLint , const GLboolean * * , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEdgeFlagPointerListIBM ( int arg0, boolean[][] arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFogCoordPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFogCoordPointerListIBM ( int arg0, int arg1, @@ -13267,13 +13267,13 @@ public final String getClassVersion ( ) long[][] arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIndexPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIndexPointerListIBM ( int arg0, int arg1, @@ -13316,13 +13316,13 @@ public final String getClassVersion ( ) long[][] arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalPointerListIBM ( int arg0, int arg1, @@ -13365,13 +13365,13 @@ public final String getClassVersion ( ) long[][] arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexCoordPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexCoordPointerListIBM ( int arg0, int arg1, @@ -13421,13 +13421,13 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexPointerListIBM ( int arg0, int arg1, @@ -13477,57 +13477,57 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTbufferMask3DFX ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTbufferMask3DFX ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSampleMaskEXT ( GLclampf , GLboolean ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSampleMaskEXT ( float arg0, boolean arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSamplePatternEXT ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSamplePatternEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTextureColorMaskSGIS ( GLboolean , GLboolean , GLboolean , GLboolean ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTextureColorMaskSGIS ( boolean arg0, boolean arg1, boolean arg2, boolean arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glIglooInterfaceSGIX ( GLenum , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glIglooInterfaceSGIX ( int arg0, byte[] arg1 @@ -13556,88 +13556,88 @@ public final String getClassVersion ( ) int arg0, long[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGenFencesNV ( GLsizei , GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGenFencesNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeleteFencesNV ( GLsizei , const GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeleteFencesNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSetFenceNV ( GLuint , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSetFenceNV ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glTestFenceNV ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glTestFenceNV ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glFinishFenceNV ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glFinishFenceNV ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glIsFenceNV ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glIsFenceNV ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetFenceivNV ( GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetFenceivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLint , GLint , GLboolean , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMapControlPointsNV ( int arg0, int arg1, @@ -13715,37 +13715,37 @@ public final String getClassVersion ( ) boolean arg7, long[] arg8 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMapParameterivNV ( GLenum , GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMapParameterivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glMapParameterfvNV ( GLenum , GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glMapParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLboolean , GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMapControlPointsNV ( int arg0, int arg1, @@ -13809,265 +13809,265 @@ public final String getClassVersion ( ) boolean arg5, long[] arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMapParameterivNV ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMapParameterivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMapParameterfvNV ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMapParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMapAttribParameterivNV ( GLenum , GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMapAttribParameterivNV ( int arg0, int arg1, int arg2, int[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetMapAttribParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetMapAttribParameterfvNV ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEvalMapsNV ( GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEvalMapsNV ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glCombinerStageParameterfvNV ( GLenum , GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glCombinerStageParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetCombinerStageParameterfvNV ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetCombinerStageParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBindProgramNV ( GLenum , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBindProgramNV ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeleteProgramsNV ( GLsizei , const GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeleteProgramsNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glExecuteProgramNV ( GLenum , GLuint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glExecuteProgramNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGenProgramsNV ( GLsizei , GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGenProgramsNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glAreProgramsResidentNV ( GLsizei , const GLuint * , GLboolean * ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glAreProgramsResidentNV ( int arg0, int[] arg1, boolean[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glRequestResidentProgramsNV ( GLsizei , const GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glRequestResidentProgramsNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetProgramParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetProgramParameterfvNV ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetProgramParameterdvNV ( GLenum , GLuint , GLenum , GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetProgramParameterdvNV ( int arg0, int arg1, int arg2, double[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetProgramivNV ( GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetProgramivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetProgramStringNV ( GLuint , GLenum , GLubyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetProgramStringNV ( int arg0, int arg1, byte[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTrackMatrixivNV ( GLenum , GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTrackMatrixivNV ( int arg0, int arg1, int arg2, int[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVertexAttribdvNV ( GLuint , GLenum , GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVertexAttribdvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVertexAttribfvNV ( GLuint , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVertexAttribfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVertexAttribivNV ( GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVertexAttribivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVertexAttribPointervNV ( GLuint , GLenum , GLvoid * * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVertexAttribPointervNV ( int arg0, int arg1, @@ -14103,36 +14103,36 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glIsProgramNV ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glIsProgramNV ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glLoadProgramNV ( GLenum , GLuint , GLsizei , const GLubyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glLoadProgramNV ( int arg0, int arg1, int arg2, byte[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glProgramParameter4fNV ( GLenum , GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glProgramParameter4fNV ( int arg0, int arg1, @@ -14141,13 +14141,13 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glProgramParameter4dNV ( GLenum , GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glProgramParameter4dNV ( int arg0, int arg1, @@ -14156,76 +14156,76 @@ public final String getClassVersion ( ) double arg4, double arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glProgramParameter4dvNV ( GLenum , GLuint , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glProgramParameter4dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glProgramParameter4fvNV ( GLenum , GLuint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glProgramParameter4fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glProgramParameters4dvNV ( GLenum , GLuint , GLuint , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glProgramParameters4dvNV ( int arg0, int arg1, int arg2, double[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glProgramParameters4fvNV ( GLenum , GLuint , GLuint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glProgramParameters4fvNV ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTrackMatrixNV ( GLenum , GLuint , GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTrackMatrixNV ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribPointerNV ( GLuint , GLint , GLenum , GLsizei , const GLvoid * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribPointerNV ( int arg0, int arg1, @@ -14275,121 +14275,121 @@ public final String getClassVersion ( ) int arg3, long[] arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib1sNV ( GLuint , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib1sNV ( int arg0, short arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib1fNV ( GLuint , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib1fNV ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib1dNV ( GLuint , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib1dNV ( int arg0, double arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib2sNV ( GLuint , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib2sNV ( int arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib2fNV ( GLuint , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib2fNV ( int arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib2dNV ( GLuint , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib2dNV ( int arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib3sNV ( GLuint , GLshort , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib3sNV ( int arg0, short arg1, short arg2, short arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib3fNV ( GLuint , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib3fNV ( int arg0, float arg1, float arg2, float arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib3dNV ( GLuint , GLdouble , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib3dNV ( int arg0, double arg1, double arg2, double arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib4sNV ( GLuint , GLshort , GLshort , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib4sNV ( int arg0, short arg1, @@ -14397,13 +14397,13 @@ public final String getClassVersion ( ) short arg3, short arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib4fNV ( GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib4fNV ( int arg0, float arg1, @@ -14411,13 +14411,13 @@ public final String getClassVersion ( ) float arg3, float arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib4dNV ( GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib4dNV ( int arg0, double arg1, @@ -14425,13 +14425,13 @@ public final String getClassVersion ( ) double arg3, double arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib4ubNV ( GLuint , GLubyte , GLubyte , GLubyte , GLubyte ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib4ubNV ( int arg0, byte arg1, @@ -14439,428 +14439,428 @@ public final String getClassVersion ( ) byte arg3, byte arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib1svNV ( GLuint , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib1svNV ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib1fvNV ( GLuint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib1fvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib1dvNV ( GLuint , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib1dvNV ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib2svNV ( GLuint , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib2svNV ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib2fvNV ( GLuint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib2fvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib2dvNV ( GLuint , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib2dvNV ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib3svNV ( GLuint , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib3svNV ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib3fvNV ( GLuint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib3fvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib3dvNV ( GLuint , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib3dvNV ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib4svNV ( GLuint , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib4svNV ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib4fvNV ( GLuint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib4fvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib4dvNV ( GLuint , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib4dvNV ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttrib4ubvNV ( GLuint , const GLubyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttrib4ubvNV ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs1svNV ( GLuint , GLsizei , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs1svNV ( int arg0, int arg1, short[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs1fvNV ( GLuint , GLsizei , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs1fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs1dvNV ( GLuint , GLsizei , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs1dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs2svNV ( GLuint , GLsizei , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs2svNV ( int arg0, int arg1, short[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs2fvNV ( GLuint , GLsizei , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs2fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs2dvNV ( GLuint , GLsizei , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs2dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs3svNV ( GLuint , GLsizei , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs3svNV ( int arg0, int arg1, short[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs3fvNV ( GLuint , GLsizei , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs3fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs3dvNV ( GLuint , GLsizei , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs3dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs4svNV ( GLuint , GLsizei , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs4svNV ( int arg0, int arg1, short[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs4fvNV ( GLuint , GLsizei , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs4fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs4dvNV ( GLuint , GLsizei , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs4dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexAttribs4ubvNV ( GLuint , GLsizei , const GLubyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexAttribs4ubvNV ( int arg0, int arg1, byte[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexBumpParameterivATI ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexBumpParameterivATI ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glTexBumpParameterfvATI ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glTexBumpParameterfvATI ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexBumpParameterivATI ( GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexBumpParameterivATI ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetTexBumpParameterfvATI ( GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetTexBumpParameterfvATI ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glGenFragmentShadersATI ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native int glGenFragmentShadersATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBindFragmentShaderATI ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBindFragmentShaderATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeleteFragmentShaderATI ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeleteFragmentShaderATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBeginFragmentShaderATI ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBeginFragmentShaderATI ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEndFragmentShaderATI ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEndFragmentShaderATI ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPassTexCoordATI ( GLuint , GLuint , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPassTexCoordATI ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSampleMapATI ( GLuint , GLuint , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSampleMapATI ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorFragmentOp1ATI ( int arg0, int arg1, @@ -14870,13 +14870,13 @@ public final String getClassVersion ( ) int arg5, int arg6 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorFragmentOp2ATI ( int arg0, int arg1, @@ -14889,13 +14889,13 @@ public final String getClassVersion ( ) int arg8, int arg9 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glColorFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glColorFragmentOp3ATI ( int arg0, int arg1, @@ -14911,13 +14911,13 @@ public final String getClassVersion ( ) int arg11, int arg12 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glAlphaFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glAlphaFragmentOp1ATI ( int arg0, int arg1, @@ -14926,13 +14926,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glAlphaFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glAlphaFragmentOp2ATI ( int arg0, int arg1, @@ -14944,13 +14944,13 @@ public final String getClassVersion ( ) int arg7, int arg8 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glAlphaFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glAlphaFragmentOp3ATI ( int arg0, int arg1, @@ -14965,46 +14965,46 @@ public final String getClassVersion ( ) int arg10, int arg11 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSetFragmentShaderConstantATI ( GLuint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSetFragmentShaderConstantATI ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPNTrianglesiATI ( GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPNTrianglesiATI ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glPNTrianglesfATI ( GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glPNTrianglesfATI ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glNewObjectBufferATI ( GLsizei , const GLvoid * , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native int glNewObjectBufferATI ( int arg0, byte[] arg1, @@ -15040,23 +15040,23 @@ public final String getClassVersion ( ) long[] arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glIsObjectBufferATI ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glIsObjectBufferATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glUpdateObjectBufferATI ( GLuint , GLuint , GLsizei , const GLvoid * , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glUpdateObjectBufferATI ( int arg0, int arg1, @@ -15106,47 +15106,47 @@ public final String getClassVersion ( ) long[] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetObjectBufferfvATI ( GLuint , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetObjectBufferfvATI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetObjectBufferivATI ( GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetObjectBufferivATI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeleteObjectBufferATI ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeleteObjectBufferATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glArrayObjectATI ( GLenum , GLint , GLenum , GLsizei , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glArrayObjectATI ( int arg0, int arg1, @@ -15155,37 +15155,37 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetArrayObjectfvATI ( GLenum , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetArrayObjectfvATI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetArrayObjectivATI ( GLenum , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetArrayObjectivATI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantArrayObjectATI ( GLuint , GLenum , GLsizei , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantArrayObjectATI ( int arg0, int arg1, @@ -15193,110 +15193,110 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVariantArrayObjectfvATI ( GLuint , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVariantArrayObjectfvATI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVariantArrayObjectivATI ( GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVariantArrayObjectivATI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBeginVertexShaderEXT ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBeginVertexShaderEXT ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEndVertexShaderEXT ( void ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEndVertexShaderEXT ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glBindVertexShaderEXT ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glBindVertexShaderEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glGenVertexShadersEXT ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native int glGenVertexShadersEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDeleteVertexShaderEXT ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDeleteVertexShaderEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glShaderOp1EXT ( GLenum , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glShaderOp1EXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glShaderOp2EXT ( GLenum , GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glShaderOp2EXT ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glShaderOp3EXT ( GLenum , GLuint , GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glShaderOp3EXT ( int arg0, int arg1, @@ -15304,13 +15304,13 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSwizzleEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSwizzleEXT ( int arg0, int arg1, @@ -15319,13 +15319,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glWriteMaskEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glWriteMaskEXT ( int arg0, int arg1, @@ -15334,50 +15334,50 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glInsertComponentEXT ( GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glInsertComponentEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glExtractComponentEXT ( GLuint , GLuint , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glExtractComponentEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glGenSymbolsEXT ( GLenum , GLenum , GLenum , GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native int glGenSymbolsEXT ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSetInvariantEXT ( GLuint , GLenum , const void * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSetInvariantEXT ( int arg0, int arg1, @@ -15413,13 +15413,13 @@ public final String getClassVersion ( ) int arg1, long[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glSetLocalConstantEXT ( GLuint , GLenum , const void * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glSetLocalConstantEXT ( int arg0, int arg1, @@ -15455,101 +15455,101 @@ public final String getClassVersion ( ) int arg1, long[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantbvEXT ( GLuint , const GLbyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantbvEXT ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantsvEXT ( GLuint , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantsvEXT ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantivEXT ( GLuint , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantivEXT ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantfvEXT ( GLuint , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantfvEXT ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantdvEXT ( GLuint , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantdvEXT ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantubvEXT ( GLuint , const GLubyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantubvEXT ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantusvEXT ( GLuint , const GLushort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantusvEXT ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantuivEXT ( GLuint , const GLuint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantuivEXT ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVariantPointerEXT ( GLuint , GLenum , GLuint , const void * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVariantPointerEXT ( int arg0, int arg1, @@ -15592,135 +15592,135 @@ public final String getClassVersion ( ) int arg2, long[] arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glEnableVariantClientStateEXT ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glEnableVariantClientStateEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glDisableVariantClientStateEXT ( GLuint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glDisableVariantClientStateEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glBindLightParameterEXT ( GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native int glBindLightParameterEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glBindMaterialParameterEXT ( GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native int glBindMaterialParameterEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glBindTexGenParameterEXT ( GLenum , GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native int glBindTexGenParameterEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glBindTextureUnitParameterEXT ( GLenum , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native int glBindTextureUnitParameterEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLuint glBindParameterEXT ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native int glBindParameterEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean glIsVariantEnabledEXT ( GLuint , GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glIsVariantEnabledEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVariantBooleanvEXT ( int arg0, int arg1, boolean[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVariantIntegervEXT ( GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVariantIntegervEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVariantFloatvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetVariantPointervEXT ( GLuint , GLenum , GLvoid * * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetVariantPointervEXT ( int arg0, int arg1, @@ -15756,361 +15756,361 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetInvariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetInvariantBooleanvEXT ( int arg0, int arg1, boolean[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetInvariantIntegervEXT ( GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetInvariantIntegervEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetInvariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetInvariantFloatvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetLocalConstantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetLocalConstantBooleanvEXT ( int arg0, int arg1, boolean[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetLocalConstantIntegervEXT ( GLuint , GLenum , GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetLocalConstantIntegervEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glGetLocalConstantFloatvEXT ( GLuint , GLenum , GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glGetLocalConstantFloatvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream1s ( GLenum , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream1s ( int arg0, short arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream1sv ( GLenum , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream1sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream1i ( GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream1i ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream1iv ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream1iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream1f ( GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream1f ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream1fv ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream1fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream1d ( GLenum , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream1d ( int arg0, double arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream1dv ( GLenum , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream1dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream2s ( GLenum , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream2s ( int arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream2sv ( GLenum , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream2sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream2i ( GLenum , GLint , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream2i ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream2iv ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream2iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream2f ( GLenum , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream2f ( int arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream2fv ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream2fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream2d ( GLenum , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream2d ( int arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream2dv ( GLenum , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream2dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream3s ( GLenum , GLshort , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream3s ( int arg0, short arg1, short arg2, short arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream3sv ( GLenum , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream3sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream3i ( GLenum , GLint , GLint , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream3i ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream3iv ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream3iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream3f ( int arg0, float arg1, float arg2, float arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream3fv ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream3fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream3d ( int arg0, double arg1, double arg2, double arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream3dv ( GLenum , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream3dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream4s ( GLenum , GLshort , GLshort , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream4s ( int arg0, short arg1, @@ -16118,24 +16118,24 @@ public final String getClassVersion ( ) short arg3, short arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream4sv ( GLenum , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream4sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream4i ( GLenum , GLint , GLint , GLint , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream4i ( int arg0, int arg1, @@ -16143,24 +16143,24 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream4iv ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream4iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream4f ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream4f ( int arg0, float arg1, @@ -16168,24 +16168,24 @@ public final String getClassVersion ( ) float arg3, float arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream4fv ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream4fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream4d ( GLenum , GLdouble , GLdouble , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream4d ( int arg0, double arg1, @@ -16193,171 +16193,171 @@ public final String getClassVersion ( ) double arg3, double arg4 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexStream4dv ( GLenum , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexStream4dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3b ( GLenum , GLbyte , GLbyte , GLbyte ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3b ( int arg0, byte arg1, byte arg2, byte arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3bv ( GLenum , const GLbyte * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3bv ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3s ( GLenum , GLshort , GLshort , GLshort ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3s ( int arg0, short arg1, short arg2, short arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3sv ( GLenum , const GLshort * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3i ( GLenum , GLint , GLint , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3i ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3iv ( GLenum , const GLint * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3f ( int arg0, float arg1, float arg2, float arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3fv ( GLenum , const GLfloat * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3d ( int arg0, double arg1, double arg2, double arg3 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glNormalStream3dv ( GLenum , const GLdouble * ) ; - * </pre> - */ + * </pre>
+ */
public final native void glNormalStream3dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glClientActiveVertexStream ( GLenum ) ; - * </pre> - */ + * </pre>
+ */
public final native void glClientActiveVertexStream ( int arg0 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexBlendEnvi ( GLenum , GLint ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexBlendEnvi ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void glVertexBlendEnvf ( GLenum , GLfloat ) ; - * </pre> - */ + * </pre>
+ */
public final native void glVertexBlendEnvf ( int arg0, float arg1 ) ; - -/* C2J Parser Version 3.0: Java program parsed successfully. */ +
+/* C2J Parser Version 3.0: Java program parsed successfully. */
} diff --git a/gl4java/GLFuncJauJNInf.java b/gl4java/GLFuncJauJNInf.java index 273c9c4..db0cb8c 100644 --- a/gl4java/GLFuncJauJNInf.java +++ b/gl4java/GLFuncJauJNInf.java @@ -32,7 +32,7 @@ public String getClassVendor ( ) { return "Jausoft - Sven Goethel Software Development"; } public String getClassVersion ( ) -{ return "2.8.0.8"; } +{ return "2.8.1.0"; } diff --git a/gl4java/GLUEnum.java b/gl4java/GLUEnum.java index 7c5cc59..dd29261 100644 --- a/gl4java/GLUEnum.java +++ b/gl4java/GLUEnum.java @@ -28,155 +28,155 @@ public interface GLUEnum * Reading from file: glu-enum-auto.orig.h . . . * Destination-Class: gl4java_GLUEnum ! */ - - public static final int GLU_AUTO_LOAD_MATRIX = 100200; - public static final int GLU_BEGIN = 100100; - public static final int GLU_CCW = 100121; - public static final int GLU_CULLING = 100201; - public static final int GLU_CW = 100120; - public static final int GLU_DISPLAY_MODE = 100204; - public static final int GLU_DOMAIN_DISTANCE = 100217; - public static final int GLU_EDGE_FLAG = 100104; - public static final int GLU_END = 100102; - public static final int GLU_ERROR = 100103; - public static final int GLU_EXTENSIONS = 100801; - public static final int GLU_EXTERIOR = 100123; - public static final int GLU_FALSE = 0; - public static final int GLU_FILL = 100012; - public static final int GLU_FLAT = 100001; - public static final int GLU_INSIDE = 100021; - public static final int GLU_INTERIOR = 100122; - public static final int GLU_INVALID_ENUM = 100900; - public static final int GLU_INVALID_OPERATION = 100904; - public static final int GLU_INVALID_VALUE = 100901; - public static final int GLU_LINE = 100011; - public static final int GLU_MAP1_TRIM_2 = 100210; - public static final int GLU_MAP1_TRIM_3 = 100211; - public static final int GLU_NONE = 100002; - public static final int GLU_NURBS_BEGIN = 100164; - public static final int GLU_NURBS_BEGIN_DATA = 100170; - public static final int GLU_NURBS_BEGIN_DATA_EXT = 100170; - public static final int GLU_NURBS_BEGIN_EXT = 100164; - public static final int GLU_NURBS_COLOR = 100167; - public static final int GLU_NURBS_COLOR_DATA = 100173; - public static final int GLU_NURBS_COLOR_DATA_EXT = 100173; - public static final int GLU_NURBS_COLOR_EXT = 100167; - public static final int GLU_NURBS_END = 100169; - public static final int GLU_NURBS_END_DATA = 100175; - public static final int GLU_NURBS_END_DATA_EXT = 100175; - public static final int GLU_NURBS_END_EXT = 100169; - public static final int GLU_NURBS_ERROR = 100103; - public static final int GLU_NURBS_ERROR1 = 100251; - public static final int GLU_NURBS_ERROR10 = 100260; - public static final int GLU_NURBS_ERROR11 = 100261; - public static final int GLU_NURBS_ERROR12 = 100262; - public static final int GLU_NURBS_ERROR13 = 100263; - public static final int GLU_NURBS_ERROR14 = 100264; - public static final int GLU_NURBS_ERROR15 = 100265; - public static final int GLU_NURBS_ERROR16 = 100266; - public static final int GLU_NURBS_ERROR17 = 100267; - public static final int GLU_NURBS_ERROR18 = 100268; - public static final int GLU_NURBS_ERROR19 = 100269; - public static final int GLU_NURBS_ERROR2 = 100252; - public static final int GLU_NURBS_ERROR20 = 100270; - public static final int GLU_NURBS_ERROR21 = 100271; - public static final int GLU_NURBS_ERROR22 = 100272; - public static final int GLU_NURBS_ERROR23 = 100273; - public static final int GLU_NURBS_ERROR24 = 100274; - public static final int GLU_NURBS_ERROR25 = 100275; - public static final int GLU_NURBS_ERROR26 = 100276; - public static final int GLU_NURBS_ERROR27 = 100277; - public static final int GLU_NURBS_ERROR28 = 100278; - public static final int GLU_NURBS_ERROR29 = 100279; - public static final int GLU_NURBS_ERROR3 = 100253; - public static final int GLU_NURBS_ERROR30 = 100280; - public static final int GLU_NURBS_ERROR31 = 100281; - public static final int GLU_NURBS_ERROR32 = 100282; - public static final int GLU_NURBS_ERROR33 = 100283; - public static final int GLU_NURBS_ERROR34 = 100284; - public static final int GLU_NURBS_ERROR35 = 100285; - public static final int GLU_NURBS_ERROR36 = 100286; - public static final int GLU_NURBS_ERROR37 = 100287; - public static final int GLU_NURBS_ERROR4 = 100254; - public static final int GLU_NURBS_ERROR5 = 100255; - public static final int GLU_NURBS_ERROR6 = 100256; - public static final int GLU_NURBS_ERROR7 = 100257; - public static final int GLU_NURBS_ERROR8 = 100258; - public static final int GLU_NURBS_ERROR9 = 100259; - public static final int GLU_NURBS_MODE = 100160; - public static final int GLU_NURBS_MODE_EXT = 100160; - public static final int GLU_NURBS_NORMAL = 100166; - public static final int GLU_NURBS_NORMAL_DATA = 100172; - public static final int GLU_NURBS_NORMAL_DATA_EXT = 100172; - public static final int GLU_NURBS_NORMAL_EXT = 100166; - public static final int GLU_NURBS_RENDERER = 100162; - public static final int GLU_NURBS_RENDERER_EXT = 100162; - public static final int GLU_NURBS_TESSELLATOR = 100161; - public static final int GLU_NURBS_TESSELLATOR_EXT = 100161; - public static final int GLU_NURBS_TEXTURE_COORD = 100168; - public static final int GLU_NURBS_TEXTURE_COORD_DATA = 100174; - public static final int GLU_NURBS_TEX_COORD_DATA_EXT = 100174; - public static final int GLU_NURBS_TEX_COORD_EXT = 100168; - public static final int GLU_NURBS_VERTEX = 100165; - public static final int GLU_NURBS_VERTEX_DATA = 100171; - public static final int GLU_NURBS_VERTEX_DATA_EXT = 100171; - public static final int GLU_NURBS_VERTEX_EXT = 100165; - public static final int GLU_OBJECT_PARAMETRIC_ERROR = 100208; - public static final int GLU_OBJECT_PARAMETRIC_ERROR_EXT = 100208; - public static final int GLU_OBJECT_PATH_LENGTH = 100209; - public static final int GLU_OBJECT_PATH_LENGTH_EXT = 100209; - public static final int GLU_OUTLINE_PATCH = 100241; - public static final int GLU_OUTLINE_POLYGON = 100240; - public static final int GLU_OUTSIDE = 100020; - public static final int GLU_OUT_OF_MEMORY = 100902; - public static final int GLU_PARAMETRIC_ERROR = 100216; - public static final int GLU_PARAMETRIC_TOLERANCE = 100202; - public static final int GLU_PATH_LENGTH = 100215; - public static final int GLU_POINT = 100010; - public static final int GLU_SAMPLING_METHOD = 100205; - public static final int GLU_SAMPLING_TOLERANCE = 100203; - public static final int GLU_SILHOUETTE = 100013; - public static final int GLU_SMOOTH = 100000; - public static final int GLU_TESS_BEGIN = 100100; - public static final int GLU_TESS_BEGIN_DATA = 100106; - public static final int GLU_TESS_BOUNDARY_ONLY = 100141; - public static final int GLU_TESS_COMBINE = 100105; - public static final int GLU_TESS_COMBINE_DATA = 100111; - public static final int GLU_TESS_COORD_TOO_LARGE = 100155; - public static final int GLU_TESS_EDGE_FLAG = 100104; - public static final int GLU_TESS_EDGE_FLAG_DATA = 100110; - public static final int GLU_TESS_END = 100102; - public static final int GLU_TESS_END_DATA = 100108; - public static final int GLU_TESS_ERROR = 100103; - public static final int GLU_TESS_ERROR1 = 100151; - public static final int GLU_TESS_ERROR2 = 100152; - public static final int GLU_TESS_ERROR3 = 100153; - public static final int GLU_TESS_ERROR4 = 100154; - public static final int GLU_TESS_ERROR5 = 100155; - public static final int GLU_TESS_ERROR6 = 100156; - public static final int GLU_TESS_ERROR7 = 100157; - public static final int GLU_TESS_ERROR8 = 100158; - public static final int GLU_TESS_ERROR_DATA = 100109; - public static final int GLU_TESS_MISSING_BEGIN_CONTOUR = 100152; - public static final int GLU_TESS_MISSING_BEGIN_POLYGON = 100151; - public static final int GLU_TESS_MISSING_END_CONTOUR = 100154; - public static final int GLU_TESS_MISSING_END_POLYGON = 100153; - public static final int GLU_TESS_NEED_COMBINE_CALLBACK = 100156; - public static final int GLU_TESS_TOLERANCE = 100142; - public static final int GLU_TESS_VERTEX = 100101; - public static final int GLU_TESS_VERTEX_DATA = 100107; - public static final int GLU_TESS_WINDING_ABS_GEQ_TWO = 100134; - public static final int GLU_TESS_WINDING_NEGATIVE = 100133; - public static final int GLU_TESS_WINDING_NONZERO = 100131; - public static final int GLU_TESS_WINDING_ODD = 100130; - public static final int GLU_TESS_WINDING_POSITIVE = 100132; - public static final int GLU_TESS_WINDING_RULE = 100140; - public static final int GLU_UNKNOWN = 100124; - public static final int GLU_U_STEP = 100206; - public static final int GLU_VERSION = 100800; - public static final int GLU_VERTEX = 100101; - public static final int GLU_V_STEP = 100207; -/* C2J Parser Version 3.0: Java program parsed successfully. */ +
+ public static final int GLU_AUTO_LOAD_MATRIX = 100200;
+ public static final int GLU_BEGIN = 100100;
+ public static final int GLU_CCW = 100121;
+ public static final int GLU_CULLING = 100201;
+ public static final int GLU_CW = 100120;
+ public static final int GLU_DISPLAY_MODE = 100204;
+ public static final int GLU_DOMAIN_DISTANCE = 100217;
+ public static final int GLU_EDGE_FLAG = 100104;
+ public static final int GLU_END = 100102;
+ public static final int GLU_ERROR = 100103;
+ public static final int GLU_EXTENSIONS = 100801;
+ public static final int GLU_EXTERIOR = 100123;
+ public static final int GLU_FALSE = 0;
+ public static final int GLU_FILL = 100012;
+ public static final int GLU_FLAT = 100001;
+ public static final int GLU_INSIDE = 100021;
+ public static final int GLU_INTERIOR = 100122;
+ public static final int GLU_INVALID_ENUM = 100900;
+ public static final int GLU_INVALID_OPERATION = 100904;
+ public static final int GLU_INVALID_VALUE = 100901;
+ public static final int GLU_LINE = 100011;
+ public static final int GLU_MAP1_TRIM_2 = 100210;
+ public static final int GLU_MAP1_TRIM_3 = 100211;
+ public static final int GLU_NONE = 100002;
+ public static final int GLU_NURBS_BEGIN = 100164;
+ public static final int GLU_NURBS_BEGIN_DATA = 100170;
+ public static final int GLU_NURBS_BEGIN_DATA_EXT = 100170;
+ public static final int GLU_NURBS_BEGIN_EXT = 100164;
+ public static final int GLU_NURBS_COLOR = 100167;
+ public static final int GLU_NURBS_COLOR_DATA = 100173;
+ public static final int GLU_NURBS_COLOR_DATA_EXT = 100173;
+ public static final int GLU_NURBS_COLOR_EXT = 100167;
+ public static final int GLU_NURBS_END = 100169;
+ public static final int GLU_NURBS_END_DATA = 100175;
+ public static final int GLU_NURBS_END_DATA_EXT = 100175;
+ public static final int GLU_NURBS_END_EXT = 100169;
+ public static final int GLU_NURBS_ERROR = 100103;
+ public static final int GLU_NURBS_ERROR1 = 100251;
+ public static final int GLU_NURBS_ERROR10 = 100260;
+ public static final int GLU_NURBS_ERROR11 = 100261;
+ public static final int GLU_NURBS_ERROR12 = 100262;
+ public static final int GLU_NURBS_ERROR13 = 100263;
+ public static final int GLU_NURBS_ERROR14 = 100264;
+ public static final int GLU_NURBS_ERROR15 = 100265;
+ public static final int GLU_NURBS_ERROR16 = 100266;
+ public static final int GLU_NURBS_ERROR17 = 100267;
+ public static final int GLU_NURBS_ERROR18 = 100268;
+ public static final int GLU_NURBS_ERROR19 = 100269;
+ public static final int GLU_NURBS_ERROR2 = 100252;
+ public static final int GLU_NURBS_ERROR20 = 100270;
+ public static final int GLU_NURBS_ERROR21 = 100271;
+ public static final int GLU_NURBS_ERROR22 = 100272;
+ public static final int GLU_NURBS_ERROR23 = 100273;
+ public static final int GLU_NURBS_ERROR24 = 100274;
+ public static final int GLU_NURBS_ERROR25 = 100275;
+ public static final int GLU_NURBS_ERROR26 = 100276;
+ public static final int GLU_NURBS_ERROR27 = 100277;
+ public static final int GLU_NURBS_ERROR28 = 100278;
+ public static final int GLU_NURBS_ERROR29 = 100279;
+ public static final int GLU_NURBS_ERROR3 = 100253;
+ public static final int GLU_NURBS_ERROR30 = 100280;
+ public static final int GLU_NURBS_ERROR31 = 100281;
+ public static final int GLU_NURBS_ERROR32 = 100282;
+ public static final int GLU_NURBS_ERROR33 = 100283;
+ public static final int GLU_NURBS_ERROR34 = 100284;
+ public static final int GLU_NURBS_ERROR35 = 100285;
+ public static final int GLU_NURBS_ERROR36 = 100286;
+ public static final int GLU_NURBS_ERROR37 = 100287;
+ public static final int GLU_NURBS_ERROR4 = 100254;
+ public static final int GLU_NURBS_ERROR5 = 100255;
+ public static final int GLU_NURBS_ERROR6 = 100256;
+ public static final int GLU_NURBS_ERROR7 = 100257;
+ public static final int GLU_NURBS_ERROR8 = 100258;
+ public static final int GLU_NURBS_ERROR9 = 100259;
+ public static final int GLU_NURBS_MODE = 100160;
+ public static final int GLU_NURBS_MODE_EXT = 100160;
+ public static final int GLU_NURBS_NORMAL = 100166;
+ public static final int GLU_NURBS_NORMAL_DATA = 100172;
+ public static final int GLU_NURBS_NORMAL_DATA_EXT = 100172;
+ public static final int GLU_NURBS_NORMAL_EXT = 100166;
+ public static final int GLU_NURBS_RENDERER = 100162;
+ public static final int GLU_NURBS_RENDERER_EXT = 100162;
+ public static final int GLU_NURBS_TESSELLATOR = 100161;
+ public static final int GLU_NURBS_TESSELLATOR_EXT = 100161;
+ public static final int GLU_NURBS_TEXTURE_COORD = 100168;
+ public static final int GLU_NURBS_TEXTURE_COORD_DATA = 100174;
+ public static final int GLU_NURBS_TEX_COORD_DATA_EXT = 100174;
+ public static final int GLU_NURBS_TEX_COORD_EXT = 100168;
+ public static final int GLU_NURBS_VERTEX = 100165;
+ public static final int GLU_NURBS_VERTEX_DATA = 100171;
+ public static final int GLU_NURBS_VERTEX_DATA_EXT = 100171;
+ public static final int GLU_NURBS_VERTEX_EXT = 100165;
+ public static final int GLU_OBJECT_PARAMETRIC_ERROR = 100208;
+ public static final int GLU_OBJECT_PARAMETRIC_ERROR_EXT = 100208;
+ public static final int GLU_OBJECT_PATH_LENGTH = 100209;
+ public static final int GLU_OBJECT_PATH_LENGTH_EXT = 100209;
+ public static final int GLU_OUTLINE_PATCH = 100241;
+ public static final int GLU_OUTLINE_POLYGON = 100240;
+ public static final int GLU_OUTSIDE = 100020;
+ public static final int GLU_OUT_OF_MEMORY = 100902;
+ public static final int GLU_PARAMETRIC_ERROR = 100216;
+ public static final int GLU_PARAMETRIC_TOLERANCE = 100202;
+ public static final int GLU_PATH_LENGTH = 100215;
+ public static final int GLU_POINT = 100010;
+ public static final int GLU_SAMPLING_METHOD = 100205;
+ public static final int GLU_SAMPLING_TOLERANCE = 100203;
+ public static final int GLU_SILHOUETTE = 100013;
+ public static final int GLU_SMOOTH = 100000;
+ public static final int GLU_TESS_BEGIN = 100100;
+ public static final int GLU_TESS_BEGIN_DATA = 100106;
+ public static final int GLU_TESS_BOUNDARY_ONLY = 100141;
+ public static final int GLU_TESS_COMBINE = 100105;
+ public static final int GLU_TESS_COMBINE_DATA = 100111;
+ public static final int GLU_TESS_COORD_TOO_LARGE = 100155;
+ public static final int GLU_TESS_EDGE_FLAG = 100104;
+ public static final int GLU_TESS_EDGE_FLAG_DATA = 100110;
+ public static final int GLU_TESS_END = 100102;
+ public static final int GLU_TESS_END_DATA = 100108;
+ public static final int GLU_TESS_ERROR = 100103;
+ public static final int GLU_TESS_ERROR1 = 100151;
+ public static final int GLU_TESS_ERROR2 = 100152;
+ public static final int GLU_TESS_ERROR3 = 100153;
+ public static final int GLU_TESS_ERROR4 = 100154;
+ public static final int GLU_TESS_ERROR5 = 100155;
+ public static final int GLU_TESS_ERROR6 = 100156;
+ public static final int GLU_TESS_ERROR7 = 100157;
+ public static final int GLU_TESS_ERROR8 = 100158;
+ public static final int GLU_TESS_ERROR_DATA = 100109;
+ public static final int GLU_TESS_MISSING_BEGIN_CONTOUR = 100152;
+ public static final int GLU_TESS_MISSING_BEGIN_POLYGON = 100151;
+ public static final int GLU_TESS_MISSING_END_CONTOUR = 100154;
+ public static final int GLU_TESS_MISSING_END_POLYGON = 100153;
+ public static final int GLU_TESS_NEED_COMBINE_CALLBACK = 100156;
+ public static final int GLU_TESS_TOLERANCE = 100142;
+ public static final int GLU_TESS_VERTEX = 100101;
+ public static final int GLU_TESS_VERTEX_DATA = 100107;
+ public static final int GLU_TESS_WINDING_ABS_GEQ_TWO = 100134;
+ public static final int GLU_TESS_WINDING_NEGATIVE = 100133;
+ public static final int GLU_TESS_WINDING_NONZERO = 100131;
+ public static final int GLU_TESS_WINDING_ODD = 100130;
+ public static final int GLU_TESS_WINDING_POSITIVE = 100132;
+ public static final int GLU_TESS_WINDING_RULE = 100140;
+ public static final int GLU_UNKNOWN = 100124;
+ public static final int GLU_U_STEP = 100206;
+ public static final int GLU_VERSION = 100800;
+ public static final int GLU_VERTEX = 100101;
+ public static final int GLU_V_STEP = 100207;
+/* C2J Parser Version 3.0: Java program parsed successfully. */
} diff --git a/gl4java/GLUFunc14JauJNI.java b/gl4java/GLUFunc14JauJNI.java index 7fadadb..897f5e5 100644 --- a/gl4java/GLUFunc14JauJNI.java +++ b/gl4java/GLUFunc14JauJNI.java @@ -34,7 +34,7 @@ public final String getClassVendor ( ) { return "Jausoft - Sven Goethel Software Development"; } public final String getClassVersion ( ) -{ return "2.8.0.8"; } +{ return "2.8.1.0"; } /** @@ -255,53 +255,53 @@ public final int gluUnProject(double winx, * Reading from file: glu-proto-auto.orig.h . . . * Destination-Class: gl4java_GLUFuncJauJNI ! */ - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluBeginCurve ( GLUnurbs * nurb ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluBeginCurve ( long nurb ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluBeginPolygon ( GLUtesselator * tess ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluBeginPolygon ( long tess ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluBeginSurface ( GLUnurbs * nurb ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluBeginSurface ( long nurb ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluBeginTrim ( GLUnurbs * nurb ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluBeginTrim ( long nurb ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluBuild1DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluBuild1DMipmapLevels ( int target, int internalFormat, @@ -390,13 +390,13 @@ public final int gluUnProject(double winx, int max, Buffer data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluBuild1DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , const void * data ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluBuild1DMipmaps ( int target, int internalFormat, @@ -461,13 +461,13 @@ public final int gluUnProject(double winx, int type, Buffer data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluBuild2DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluBuild2DMipmapLevels ( int target, int internalFormat, @@ -564,13 +564,13 @@ public final int gluUnProject(double winx, int max, Buffer data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluBuild2DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , const void * data ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluBuild2DMipmaps ( int target, int internalFormat, @@ -643,13 +643,13 @@ public final int gluUnProject(double winx, int type, Buffer data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluBuild3DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluBuild3DMipmapLevels ( int target, int internalFormat, @@ -754,13 +754,13 @@ public final int gluUnProject(double winx, int max, Buffer data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluBuild3DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const void * data ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluBuild3DMipmaps ( int target, int internalFormat, @@ -841,24 +841,24 @@ public final int gluUnProject(double winx, int type, Buffer data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean gluCheckExtension ( const GLubyte * extName , const GLubyte * extString ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean gluCheckExtension ( byte[] extName, byte[] extString ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluCylinder ( GLUquadric * quad , GLdouble base , GLdouble top , GLdouble height , GLint slices , GLint stacks ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluCylinder ( long quad, double base, @@ -867,13 +867,13 @@ public final int gluUnProject(double winx, int slices, int stacks ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluDisk ( long quad, double inner, @@ -881,90 +881,90 @@ public final int gluUnProject(double winx, int slices, int loops ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluEndCurve ( GLUnurbs * nurb ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluEndCurve ( long nurb ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluEndPolygon ( GLUtesselator * tess ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluEndPolygon ( long tess ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluEndSurface ( GLUnurbs * nurb ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluEndSurface ( long nurb ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluEndTrim ( GLUnurbs * nurb ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluEndTrim ( long nurb ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluGetNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluGetNurbsProperty ( long nurb, int property, float[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluGetTessProperty ( GLUtesselator * tess , GLenum which , GLdouble * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluGetTessProperty ( long tess, int which, double[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluLoadSamplingMatrices ( GLUnurbs * nurb , const GLfloat * model , const GLfloat * perspective , const GLint * view ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluLoadSamplingMatrices ( long nurb, float[] model, float[] perspective, int[] view ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluLookAt ( GLdouble eyeX , GLdouble eyeY , GLdouble eyeZ , GLdouble centerX , GLdouble centerY , GLdouble centerZ , GLdouble upX , GLdouble upY , GLdouble upZ ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluLookAt ( double eyeX, double eyeY, @@ -976,24 +976,24 @@ public final int gluUnProject(double winx, double upY, double upZ ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluNextContour ( GLUtesselator * tess , GLenum type ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluNextContour ( long tess, int type ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluNurbsCurve ( GLUnurbs * nurb , GLint knotCount , GLfloat * knots , GLint stride , GLfloat * control , GLint order , GLenum type ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluNurbsCurve ( long nurb, int knotCount, @@ -1003,25 +1003,25 @@ public final int gluUnProject(double winx, int order, int type ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat value ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluNurbsProperty ( long nurb, int property, float value ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluNurbsSurface ( GLUnurbs * nurb , GLint sKnotCount , GLfloat * sKnots , GLint tKnotCount , GLfloat * tKnots , GLint sStride , GLint tStride , GLfloat * control , GLint sOrder , GLint tOrder , GLenum type ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluNurbsSurface ( long nurb, int sKnotCount, @@ -1035,26 +1035,26 @@ public final int gluUnProject(double winx, int tOrder, int type ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluOrtho2D ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluOrtho2D ( double left, double right, double bottom, double top ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluPartialDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops , GLdouble start , GLdouble sweep ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluPartialDisk ( long quad, double inner, @@ -1064,26 +1064,26 @@ public final int gluUnProject(double winx, double start, double sweep ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluPerspective ( GLdouble fovy , GLdouble aspect , GLdouble zNear , GLdouble zFar ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluPerspective ( double fovy, double aspect, double zNear, double zFar ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluPickMatrix ( GLdouble x , GLdouble y , GLdouble delX , GLdouble delY , GLint * viewport ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluPickMatrix ( double x, double y, @@ -1091,13 +1091,13 @@ public final int gluUnProject(double winx, double delY, int[] viewport ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluProject ( GLdouble objX , GLdouble objY , GLdouble objZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * winX , GLdouble * winY , GLdouble * winZ ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluProject ( double objX, double objY, @@ -1109,13 +1109,13 @@ public final int gluUnProject(double winx, double[] winY, double[] winZ ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluPwlCurve ( GLUnurbs * nurb , GLint count , GLfloat * data , GLint stride , GLenum type ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluPwlCurve ( long nurb, int count, @@ -1123,57 +1123,57 @@ public final int gluUnProject(double winx, int stride, int type ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluQuadricDrawStyle ( GLUquadric * quad , GLenum draw ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluQuadricDrawStyle ( long quad, int draw ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluQuadricNormals ( GLUquadric * quad , GLenum normal ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluQuadricNormals ( long quad, int normal ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluQuadricOrientation ( GLUquadric * quad , GLenum orientation ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluQuadricOrientation ( long quad, int orientation ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluQuadricTexture ( GLUquadric * quad , GLboolean texture ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluQuadricTexture ( long quad, boolean texture ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluScaleImage ( GLenum format , GLsizei wIn , GLsizei hIn , GLenum typeIn , const void * dataIn , GLsizei wOut , GLsizei hOut , GLenum typeOut , GLvoid * dataOut ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluScaleImage ( int format, int wIn, @@ -1262,36 +1262,36 @@ public final int gluUnProject(double winx, int typeOut, Buffer dataOut ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluSphere ( GLUquadric * quad , GLdouble radius , GLint slices , GLint stacks ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluSphere ( long quad, double radius, int slices, int stacks ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluTessBeginContour ( GLUtesselator * tess ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluTessBeginContour ( long tess ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluTessBeginPolygon ( long tess, byte[] data @@ -1324,58 +1324,58 @@ public final int gluUnProject(double winx, long tess, Buffer data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluTessEndContour ( GLUtesselator * tess ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluTessEndContour ( long tess ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluTessEndPolygon ( GLUtesselator * tess ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluTessEndPolygon ( long tess ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluTessNormal ( long tess, double valueX, double valueY, double valueZ ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluTessProperty ( long tess, int which, double data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluTessVertex ( long tess, double[] location, @@ -1416,13 +1416,13 @@ public final int gluUnProject(double winx, double[] location, Buffer data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluUnProject ( double winX, double winY, @@ -1434,13 +1434,13 @@ public final int gluUnProject(double winx, double[] objY, double[] objZ ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluUnProject4 ( GLdouble winX , GLdouble winY , GLdouble winZ , GLdouble clipW , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble nearVal , GLdouble farVal , GLdouble * objX , GLdouble * objY , GLdouble * objZ , GLdouble * objW ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluUnProject4 ( double winX, double winY, @@ -1456,8 +1456,8 @@ public final int gluUnProject(double winx, double[] objZ, double[] objW ) ; - -/* C2J Parser Version 3.0: Java program parsed successfully. */ +
+/* C2J Parser Version 3.0: Java program parsed successfully. */
} diff --git a/gl4java/GLUFuncJauJNI.java b/gl4java/GLUFuncJauJNI.java index fcf7900..cd3fa87 100644 --- a/gl4java/GLUFuncJauJNI.java +++ b/gl4java/GLUFuncJauJNI.java @@ -32,7 +32,7 @@ public final String getClassVendor ( ) { return "Jausoft - Sven Goethel Software Development"; } public final String getClassVersion ( ) -{ return "2.8.0.8"; } +{ return "2.8.1.0"; } /** @@ -253,53 +253,53 @@ public final int gluUnProject(double winx, * Reading from file: glu-proto-auto.orig.h . . . * Destination-Class: gl4java_GLUFuncJauJNI ! */ - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluBeginCurve ( GLUnurbs * nurb ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluBeginCurve ( long nurb ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluBeginPolygon ( GLUtesselator * tess ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluBeginPolygon ( long tess ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluBeginSurface ( GLUnurbs * nurb ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluBeginSurface ( long nurb ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluBeginTrim ( GLUnurbs * nurb ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluBeginTrim ( long nurb ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluBuild1DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluBuild1DMipmapLevels ( int target, int internalFormat, @@ -377,13 +377,13 @@ public final int gluUnProject(double winx, int max, long[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluBuild1DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , const void * data ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluBuild1DMipmaps ( int target, int internalFormat, @@ -440,13 +440,13 @@ public final int gluUnProject(double winx, int type, long[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluBuild2DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluBuild2DMipmapLevels ( int target, int internalFormat, @@ -531,13 +531,13 @@ public final int gluUnProject(double winx, int max, long[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluBuild2DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , const void * data ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluBuild2DMipmaps ( int target, int internalFormat, @@ -601,13 +601,13 @@ public final int gluUnProject(double winx, int type, long[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluBuild3DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluBuild3DMipmapLevels ( int target, int internalFormat, @@ -699,13 +699,13 @@ public final int gluUnProject(double winx, int max, long[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluBuild3DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const void * data ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluBuild3DMipmaps ( int target, int internalFormat, @@ -776,24 +776,24 @@ public final int gluUnProject(double winx, int type, long[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLboolean gluCheckExtension ( const GLubyte * extName , const GLubyte * extString ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean gluCheckExtension ( byte[] extName, byte[] extString ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluCylinder ( GLUquadric * quad , GLdouble base , GLdouble top , GLdouble height , GLint slices , GLint stacks ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluCylinder ( long quad, double base, @@ -802,13 +802,13 @@ public final int gluUnProject(double winx, int slices, int stacks ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluDisk ( long quad, double inner, @@ -816,90 +816,90 @@ public final int gluUnProject(double winx, int slices, int loops ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluEndCurve ( GLUnurbs * nurb ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluEndCurve ( long nurb ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluEndPolygon ( GLUtesselator * tess ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluEndPolygon ( long tess ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluEndSurface ( GLUnurbs * nurb ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluEndSurface ( long nurb ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluEndTrim ( GLUnurbs * nurb ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluEndTrim ( long nurb ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluGetNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluGetNurbsProperty ( long nurb, int property, float[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluGetTessProperty ( GLUtesselator * tess , GLenum which , GLdouble * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluGetTessProperty ( long tess, int which, double[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluLoadSamplingMatrices ( GLUnurbs * nurb , const GLfloat * model , const GLfloat * perspective , const GLint * view ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluLoadSamplingMatrices ( long nurb, float[] model, float[] perspective, int[] view ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluLookAt ( GLdouble eyeX , GLdouble eyeY , GLdouble eyeZ , GLdouble centerX , GLdouble centerY , GLdouble centerZ , GLdouble upX , GLdouble upY , GLdouble upZ ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluLookAt ( double eyeX, double eyeY, @@ -911,24 +911,24 @@ public final int gluUnProject(double winx, double upY, double upZ ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluNextContour ( GLUtesselator * tess , GLenum type ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluNextContour ( long tess, int type ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluNurbsCurve ( GLUnurbs * nurb , GLint knotCount , GLfloat * knots , GLint stride , GLfloat * control , GLint order , GLenum type ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluNurbsCurve ( long nurb, int knotCount, @@ -938,25 +938,25 @@ public final int gluUnProject(double winx, int order, int type ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat value ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluNurbsProperty ( long nurb, int property, float value ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluNurbsSurface ( GLUnurbs * nurb , GLint sKnotCount , GLfloat * sKnots , GLint tKnotCount , GLfloat * tKnots , GLint sStride , GLint tStride , GLfloat * control , GLint sOrder , GLint tOrder , GLenum type ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluNurbsSurface ( long nurb, int sKnotCount, @@ -970,26 +970,26 @@ public final int gluUnProject(double winx, int tOrder, int type ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluOrtho2D ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluOrtho2D ( double left, double right, double bottom, double top ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluPartialDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops , GLdouble start , GLdouble sweep ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluPartialDisk ( long quad, double inner, @@ -999,26 +999,26 @@ public final int gluUnProject(double winx, double start, double sweep ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluPerspective ( GLdouble fovy , GLdouble aspect , GLdouble zNear , GLdouble zFar ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluPerspective ( double fovy, double aspect, double zNear, double zFar ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluPickMatrix ( GLdouble x , GLdouble y , GLdouble delX , GLdouble delY , GLint * viewport ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluPickMatrix ( double x, double y, @@ -1026,13 +1026,13 @@ public final int gluUnProject(double winx, double delY, int[] viewport ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluProject ( GLdouble objX , GLdouble objY , GLdouble objZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * winX , GLdouble * winY , GLdouble * winZ ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluProject ( double objX, double objY, @@ -1044,13 +1044,13 @@ public final int gluUnProject(double winx, double[] winY, double[] winZ ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluPwlCurve ( GLUnurbs * nurb , GLint count , GLfloat * data , GLint stride , GLenum type ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluPwlCurve ( long nurb, int count, @@ -1058,57 +1058,57 @@ public final int gluUnProject(double winx, int stride, int type ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluQuadricDrawStyle ( GLUquadric * quad , GLenum draw ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluQuadricDrawStyle ( long quad, int draw ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluQuadricNormals ( GLUquadric * quad , GLenum normal ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluQuadricNormals ( long quad, int normal ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluQuadricOrientation ( GLUquadric * quad , GLenum orientation ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluQuadricOrientation ( long quad, int orientation ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluQuadricTexture ( GLUquadric * quad , GLboolean texture ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluQuadricTexture ( long quad, boolean texture ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluScaleImage ( GLenum format , GLsizei wIn , GLsizei hIn , GLenum typeIn , const void * dataIn , GLsizei wOut , GLsizei hOut , GLenum typeOut , GLvoid * dataOut ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluScaleImage ( int format, int wIn, @@ -1186,36 +1186,36 @@ public final int gluUnProject(double winx, int typeOut, long[] dataOut ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluSphere ( GLUquadric * quad , GLdouble radius , GLint slices , GLint stacks ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluSphere ( long quad, double radius, int slices, int stacks ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluTessBeginContour ( GLUtesselator * tess ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluTessBeginContour ( long tess ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluTessBeginPolygon ( long tess, byte[] data @@ -1244,58 +1244,58 @@ public final int gluUnProject(double winx, long tess, long[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluTessEndContour ( GLUtesselator * tess ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluTessEndContour ( long tess ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluTessEndPolygon ( GLUtesselator * tess ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluTessEndPolygon ( long tess ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluTessNormal ( long tess, double valueX, double valueY, double valueZ ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluTessProperty ( long tess, int which, double data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ; - * </pre> - */ + * </pre>
+ */
public final native void gluTessVertex ( long tess, double[] location, @@ -1331,13 +1331,13 @@ public final int gluUnProject(double winx, double[] location, long[] data ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluUnProject ( double winX, double winY, @@ -1349,13 +1349,13 @@ public final int gluUnProject(double winx, double[] objY, double[] objZ ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
extern GLint gluUnProject4 ( GLdouble winX , GLdouble winY , GLdouble winZ , GLdouble clipW , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble nearVal , GLdouble farVal , GLdouble * objX , GLdouble * objY , GLdouble * objZ , GLdouble * objW ) ; - * </pre> - */ + * </pre>
+ */
public final native int gluUnProject4 ( double winX, double winY, @@ -1371,8 +1371,8 @@ public final int gluUnProject(double winx, double[] objZ, double[] objW ) ; - -/* C2J Parser Version 3.0: Java program parsed successfully. */ +
+/* C2J Parser Version 3.0: Java program parsed successfully. */
} diff --git a/gl4java/GLUFuncJauJNInf.java b/gl4java/GLUFuncJauJNInf.java index 5043270..0e5e08d 100644 --- a/gl4java/GLUFuncJauJNInf.java +++ b/gl4java/GLUFuncJauJNInf.java @@ -32,7 +32,7 @@ public String getClassVendor ( ) { return "Jausoft - Sven Goethel Software Development"; } public String getClassVersion ( ) -{ return "2.8.0.8"; } +{ return "2.8.1.0"; } /** diff --git a/gl4java/awt/GLOffScreenDrawable.java b/gl4java/awt/GLOffScreenDrawable.java new file mode 100644 index 0000000..83572f4 --- /dev/null +++ b/gl4java/awt/GLOffScreenDrawable.java @@ -0,0 +1,837 @@ +package gl4java.awt;
+
+import gl4java.*;
+import gl4java.drawable.*;
+import gl4java.drawable.utils.*;
+
+import java.awt.*;
+import java.awt.geom.*;
+import java.awt.image.*;
+import java.awt.event.*;
+
+/**
+ * This is meant as an base class writing
+ * easy offscreen render functions.
+ *
+ * <p>
+ *
+ * If you are interessting in further Documentation and/or
+ * the history of GL4Java follow the following link.
+ *
+ * <pre>
+ <a href="../../GL4Java.html">The GL4Java Documentation</a>
+ * </pre>
+ * <p>
+ *
+ * There are two ways of using a GLOffScreenDrawable: the {@link
+ * gl4java.drawable.GLEventListener} model or the subclassing model. Earlier
+ * versions of the system only supported the subclassing model. The
+ * default implementations of {@link #init}, {@link #display},
+ * {@link #reshape} and {@link #doCleanup}
+ * now send events to GLEventListeners; they can
+ * still be overridden as before to support the subclassing model.
+ *
+ * <p>
+ * If using the subclassing model, you should override the following
+ * methods for your needs:
+ * <pre>
+ <a href="GLOffScreenDrawable.html#init()">preInit - initialisation before creating GLContext</a>
+ <a href="GLOffScreenDrawable.html#init()">init - 1st initialisation after creating GLContext</a>
+ <a href="GLOffScreenDrawable.html#doCleanup()">doCleanup - OGL cleanup prior to context deletion</a>
+ <a href="GLOffScreenDrawable.html#display()">display - render your frame</a>
+ <a href="GLOffScreenDrawable.html#reshape(int, int)">reshape - to reshape (window resize), gljResize() is allready invoked !</a>
+ * </pre>
+ *
+ * To check if you can use the GLContext and GL and GLU methods,
+ * use the function
+ * <pre>
+ <a href="GLOffScreenDrawable.html#cvsIsInit()">cvsIsInit</a>
+ * </pre>
+ * <p>
+ * IF you remove/release a GLOffScreenDrawable,
+ * e.g. you want to close/dispose it�s Window (which contains this GLOffScreenDrawable),
+ * you HAVE TO call:
+ *
+ * <pre>
+ <a href="GLOffScreenDrawable.html#cvsDispose()">cvsDispose</a>
+ * </pre>
+ * You should call this before releasing/dispose this Window !
+ * Also you can overwrite this class,
+ * to dispose your own elements, e.g. a Frame etc. -
+ * but be shure that you call
+ * cvsDispose implementation call this one !
+ *
+ * <p>
+ * We do offer the following Canvas methods.
+ *
+ * <pre>
+ <a href="GLOffScreenDrawable.html#repaint(java.awt.Graphics)">repaint</a>
+ * </pre>
+ * <p>
+ *
+ * @version 2.0, 21. April 1999
+ * @author Sven Goethel
+ * */
+public class GLOffScreenDrawable
+ implements GLEnum, GLUEnum,
+ GLDrawable
+{
+ protected GLContext glj = null;
+ public GLFunc gl = null;
+ public GLUFunc glu = null;
+
+ protected boolean cvsInitialized=false;
+
+ protected boolean needCvsDispose = false;
+
+ /**
+ * Visual pre-set for stencil-bit number, default: 0
+ * This value is updated after a GLContext is created with the
+ * original updated value of GLContext !
+ *
+ * @see gl4java.awt.GLOffScreenDrawable#preInit
+ * @see gl4java.awt.GLOffScreenDrawable#repaint
+ */
+ protected int stencilBits = 0;
+
+ /**
+ * Visual pre-set for accumulator buffer size, default: 0
+ * This value is updated after a GLContext is created with the
+ * original updated value of GLContext !
+ *
+ * @see gl4java.awt.GLOffScreenDrawable#preInit
+ * @see gl4java.awt.GLOffScreenDrawable#repaint
+ */
+ protected int accumSize = 0;
+
+ /**
+ * Visual pre-set for stereoView, default: false
+ * This value is updated after a GLContext is created with the
+ * original updated value of GLContext !
+ *
+ * @see gl4java.awt.GLOffScreenDrawable#preInit
+ * @see gl4java.awt.GLOffScreenDrawable#repaint
+ */
+ protected boolean stereoView = false;
+
+ /**
+ * Visual pre-set for RGBA usage, default: true - of course ;-)
+ * This value is updated after a GLContext is created with the
+ * original updated value of GLContext !
+ *
+ * @see gl4java.awt.GLOffScreenDrawable#preInit
+ * @see gl4java.awt.GLOffScreenDrawable#repaint
+ */
+ protected boolean rgba = true;
+
+ /**
+ * The context with witch display lists and textures will be shared.
+ *
+ * @see gl4java.awt.GLOffScreenDrawable#preInit
+ * @see gl4java.awt.GLOffScreenDrawable#repaint
+ */
+ protected GLContext sharedGLContext;
+
+ /**
+ * The data to hold the offscreen pixels on the java side !
+ *
+ * @see gl4java.awt.GLOffScreenDrawable#repaint
+ */
+ protected BufferedImage offImage = null;
+
+ protected int glFormat=0;
+ protected int glType=0;
+ protected int glComps=0;
+ protected int awtFormat=0;
+
+ /**
+ * The custom set offscreen Size
+ *
+ * If this is set to != null,
+ * the offscreen pixmap is used in this size,
+ * not in the components-size (-> faster if smaller)
+ *
+ * @see gl4java.awt.GLOffScreenDrawable#setOffScreenSize
+ * @see gl4java.awt.GLOffScreenDrawable#getOffScreenSize
+ */
+ protected Dimension offScrnSize = null;
+ protected boolean offScrnSizeChanged=false;
+
+ // The list of GLEventListeners
+ private GLEventListenerList listeners = new GLEventListenerList();
+
+ static {
+ if(GLContext.doLoadNativeLibraries(null, null, null)==false)
+ System.out.println("GLOffScreenDrawable could not load def. native libs.");
+ }
+
+ /**
+ *
+ * Constructor
+ *
+ * @param gl_Name The name of the GLFunc implementation
+ * If gl_Name==null, the default class will be used !
+ *
+ * @param glu_Name The name of the GLUFunc implementation
+ * If gl_LibName==null, the default class will be used !
+ *
+ * @param size The offscreen Size
+ */
+ public GLOffScreenDrawable( String gl_Name,
+ String glu_Name,
+ Dimension size
+ )
+ {
+ if( (gl=GLContext.createGLFunc(gl_Name)) ==null)
+ {
+ System.out.println("GLFunc implementation "+gl_Name+" not created");
+ }
+ if( (glu=GLContext.createGLUFunc(glu_Name)) ==null)
+ {
+ System.out.println("GLUFunc implementation "+glu_Name+" not created");
+ }
+ offScrnSizeChanged=true;
+ offScrnSize=size;
+ }
+
+ /**
+ *
+ * Constructor
+ *
+ * @param size The offscreen Size
+ */
+ public GLOffScreenDrawable(Dimension size )
+ {
+ this(null, null, size);
+ }
+
+ /**
+ * Used to return the created GLContext
+ */
+ public final GLContext getGLContext() { return glj; }
+
+ /**
+ * Get the customers offscreen Size
+ *
+ * If this is set,
+ * the offscreen pixmap is used in this size,
+ * not in the components-size (-> faster if smaller)
+ *
+ * @see gl4java.awt.GLOffScreenDrawable#offScrnSize
+ * @see gl4java.awt.GLOffScreenDrawable#setSize
+ */
+ public Dimension getSize()
+ { return offScrnSize; }
+
+ /**
+ * The customers offscreen Size
+ *
+ * If this is set,
+ * the offscreen pixmap is used in this size,
+ * not in the components-size (-> faster if smaller)
+ *
+ * @see gl4java.awt.GLOffScreenDrawable#offScrnSize
+ * @see gl4java.awt.GLOffScreenDrawable#getOffScreenSize
+ */
+ public void setSize(Dimension size)
+ {
+ if((size!=null && size.equals(offScrnSize)==false) ||
+ size!=offScrnSize
+ )
+ {
+ offScrnSizeChanged=true;
+ offScrnSize=size;
+ initDrawable();
+ }
+ }
+
+ /**
+ * The data to hold the offscreen pixels on the java side !
+ *
+ * @see gl4java.awt.GLOffScreenDrawable#repaint
+ */
+ public BufferedImage getImage()
+ {
+ return offImage;
+ }
+
+ /**
+ * The data to hold the offscreen pixels on the java side !
+ *
+ * @param gr the Graphics which should draw
+ * @param x the destination x pos to draw
+ * @param y the destination y pos to draw
+ * @param width the destination width to draw
+ * @param height the destination height to draw
+ * @param notifiedObject the notified Object for proceding
+ */
+ public void drawImage(Graphics gr, int x, int y, int width, int height,
+ ImageObserver notifiedObject)
+ {
+ gr.drawImage(offImage, x, y, width, height,
+ notifiedObject);
+ }
+
+ /**
+ * The format of GL pixel data
+ *
+ * @see gl4java.GLFunc#glReadPixels
+ */
+ public int getGLFormat()
+ {
+ return glFormat;
+ }
+
+ /**
+ * The type of GL pixel data
+ *
+ * @see gl4java.GLFunc#glReadPixels
+ */
+ public int getGLType()
+ {
+ return glType;
+ }
+
+ /**
+ * The number of byte components per pixel
+ *
+ * @see gl4java.GLFunc#glReadPixels
+ */
+ public int getGLComponents()
+ {
+ return glComps;
+ }
+
+ /**
+ * The AWT BufferedImage Type
+ */
+ public int getAwtFormat()
+ {
+ return awtFormat;
+ }
+
+ /**
+ * The initialisation procedure
+ *
+ * must be called by the user at least once,
+ * best after adding the GLEventListener's !
+ *
+ * @see gl4java.awt.GLOffScreenDrawable#repaint
+ */
+ public synchronized final void initDrawable()
+ {
+ if(glj == null || offScrnSizeChanged )
+ {
+ cvsDispose();
+ preInit();
+ glj = GLContext.createOffScreenCtx (
+ gl, glu,
+ stereoView,
+ rgba, stencilBits, accumSize,
+ sharedGLContext,
+ offScrnSize
+ );
+
+ if(glj!=null)
+ {
+ stencilBits = glj.getStencilBitNumber();
+ accumSize = glj.getAccumSize();
+ stereoView = glj.isStereoView();
+ rgba = glj.isRGBA();
+ }
+ if(offImage!=null)
+ offImage.flush();
+ offImage=null;
+ offScrnSizeChanged=false;
+
+ init();
+ Dimension size = getSize();
+ reshape(size.width, size.height);
+
+ if(glj!=null && glj.gljIsInit())
+ cvsInitialized=true;
+ }
+ repaint();
+ }
+
+ Graphics gr = null;
+ DataBufferInt dbInt = null;
+ DataBufferUShort dbUShort = null;
+ DataBufferByte dbByte = null;
+
+ /**
+ * this function can be called to force a repaint
+ *
+ * Repaints this component.
+ *
+ * This method causes a call to this component's update method
+ * as soon as possible.
+ *
+ * This is the thread save rendering-method called by yourself.
+ * The actual thread will be set to highes priority befor calling
+ * 'display'. After 'display' the priority will be reset !
+ *
+ * 'gljFree' will be NOT called after 'display'.
+ *
+ * We tested the above to use multi-threading and
+ * for the demonstration 'glDemos' it works ;-)) !
+ *
+ * BE SURE, if you want to call 'display' by yourself
+ * (e.g. in the run method for animation)
+ * YOU HAVE TO CALL sDisplay -- OR YOU MUST KNOW WHAT YOU ARE DOING THEN !
+ *
+ * @return void
+ *
+ * @see gl4java.awt.GLOffScreenDrawable#display
+ * @see gl4java.awt.GLEventListener#preDisplay
+ * @see gl4java.awt.GLEventListener#display
+ * @see gl4java.awt.GLEventListener#postDisplay
+ */
+ public synchronized final void repaint()
+ {
+ boolean ok = true;
+
+ long _s = System.currentTimeMillis();
+
+ if(!cvsIsInit())
+ return;
+
+ listeners.sendPreDisplayEvent(this);
+
+ if( glj.gljMakeCurrent() == false ) {
+ System.out.println("GLOffScreenDrawable: problem in use() method");
+ return;
+ }
+
+ if(ok)
+ {
+ display();
+ _f_dur_self = System.currentTimeMillis()-_s;
+ if(GLContext.gljClassDebug)
+ {
+ _f_dur_self_sum+=_f_dur_self;
+ glj.gljCheckGL();
+ }
+
+ Dimension size = offScrnSize;
+ int w=size.width;
+ int h=size.height;
+
+ long _s_tst = System.currentTimeMillis();
+
+ if(offImage==null ||
+ offImage.getHeight()!=h || offImage.getWidth()!=w)
+ {
+ GLCapabilities caps = glj.getGLCapabilities();
+
+ switch ( GLContext.getNativeOSType() )
+ {
+ case GLContext.OsWindoof:
+ if(caps.getAlphaBits()>0)
+ awtFormat = BufferedImage.TYPE_INT_ARGB;
+ else
+ awtFormat = BufferedImage.TYPE_INT_RGB;
+ break;
+ case GLContext.OsX11:
+ case GLContext.OsMac9:
+ case GLContext.OsMacX:
+ case GLContext.OsUnknown:
+ default:
+ if(caps.getAlphaBits()>0)
+ awtFormat = BufferedImage.TYPE_4BYTE_ABGR;
+ else
+ awtFormat = BufferedImage.TYPE_3BYTE_BGR;
+ break;
+ }
+
+ if(offImage!=null)
+ offImage.flush();
+
+ offImage = new BufferedImage(w,h,awtFormat);
+
+ dbByte=null;
+ dbUShort=null;
+ dbInt=null;
+
+ switch (awtFormat)
+ {
+ case BufferedImage.TYPE_3BYTE_BGR:
+ if(GLContext.gljClassDebug)
+ System.out.println("awt=3BYTE_BGR, gl=BGR,UNSIGNED_BYTE");
+ glFormat = GL_BGR;
+ glType = GL_UNSIGNED_BYTE;
+ glComps = 3;
+ dbByte = (DataBufferByte)
+ offImage.getRaster().getDataBuffer();
+ break;
+ case BufferedImage.TYPE_4BYTE_ABGR:
+ if(GLContext.gljClassDebug)
+ System.out.println("awt=4BYTE_ABGR, gl=BGRA,UNSIGNED_INT_8_8_8_8");
+ glFormat = GL_BGRA;
+ glType = GL_UNSIGNED_INT_8_8_8_8;
+ glComps = 4;
+ dbByte = (DataBufferByte)
+ offImage.getRaster().getDataBuffer();
+ break;
+ case BufferedImage.TYPE_INT_RGB:
+ if(GLContext.gljClassDebug)
+ System.out.println("awt=INT_RGB, gl=BGRA,UNSIGNED_BYTE");
+ glFormat = GL_BGRA;
+ glType = GL_UNSIGNED_BYTE;
+ glComps = 4;
+ dbInt = (DataBufferInt)
+ offImage.getRaster().getDataBuffer();
+ break;
+ case BufferedImage.TYPE_INT_ARGB:
+ if(GLContext.gljClassDebug)
+ System.out.println("awt=INT_ARGB, gl=BGRA,UNSIGNED_BYTE");
+ glFormat = GL_BGRA;
+ glType = GL_UNSIGNED_BYTE;
+ glComps = 4;
+ dbInt = (DataBufferInt)
+ offImage.getRaster().getDataBuffer();
+ break;
+ case BufferedImage.TYPE_INT_BGR:
+ if(GLContext.gljClassDebug)
+ System.out.println("awt=INT_BGR, gl=BGRA,UNSIGNED_INT_8_8_8_8");
+ glFormat = GL_BGRA;
+ glType = GL_UNSIGNED_INT_8_8_8_8;
+ glComps = 4;
+ dbInt = (DataBufferInt)
+ offImage.getRaster().getDataBuffer();
+ break;
+ case BufferedImage.TYPE_USHORT_555_RGB:
+ if(GLContext.gljClassDebug)
+ System.out.println("awt=USHORT_555_RGB, gl=RGBA,UNSIGNED_INT_5_5_5_1");
+ glFormat = GL_RGBA;
+ glType = GL_UNSIGNED_SHORT_5_5_5_1;
+ glComps = 2;
+ dbUShort = (DataBufferUShort)
+ offImage.getRaster().getDataBuffer();
+ break;
+ case BufferedImage.TYPE_USHORT_565_RGB:
+ if(GLContext.gljClassDebug)
+ System.out.println("awt=USHORT_565_RGB, gl=RGB,UNSIGNED_INT_5_6_5");
+ glFormat = GL_RGB;
+ glType = GL_UNSIGNED_SHORT_5_6_5;
+ glComps = 2;
+ dbUShort = (DataBufferUShort)
+ offImage.getRaster().getDataBuffer();
+ break;
+ }
+ }
+
+ if(dbByte!=null)
+ glj.gljReadPixelGL2AWT(w, 0,0, 0, 0, w, h, glFormat, glType,
+ glj.isDoubleBuffer()?GL_BACK:GL_FRONT,
+ dbByte.getData());
+ else if(dbUShort!=null)
+ glj.gljReadPixelGL2AWT(w, 0,0, 0, 0, w, h, glFormat, glType,
+ glj.isDoubleBuffer()?GL_BACK:GL_FRONT,
+ dbUShort.getData());
+ else if(dbInt!=null)
+ glj.gljReadPixelGL2AWT(w, 0,0, 0, 0, w, h, glFormat,glType,
+ glj.isDoubleBuffer()?GL_BACK:GL_FRONT,
+ dbInt.getData());
+
+ //glj.gljSwap(); // no true swapping with offscreen buffers ..
+
+ if(GLContext.gljClassDebug)
+ _f_dur_tst_sum+=System.currentTimeMillis()-_s_tst;
+
+ if(GLContext.gljClassDebug)
+ glj.gljCheckGL();
+ glj.gljFree(); // enable ctx for threads ...
+
+ _f_dur_total = System.currentTimeMillis()-_s;
+ if(GLContext.gljClassDebug)
+ {
+ _f_dur_total_sum+=_f_dur_total;
+ if(++_f_dur_times==100)
+ {
+ System.out.println("self p 100: "+
+ (double)(_f_dur_self_sum/100)/1000.0+" s");
+
+ System.out.println("tst p 100: "+
+ (double)(_f_dur_tst_sum/100)/1000.0+" s");
+
+ System.out.println("gl-bitblit p 100: "+
+ (double)((_f_dur_total_sum-_f_dur_self_sum)/100)/1000.0+" s");
+ System.out.println("total p 100: "+
+ (double)(_f_dur_total_sum/100)/1000.0+" s");
+
+ _f_dur_self_sum=0;
+ _f_dur_tst_sum=0;
+ _f_dur_total_sum=0;
+ _f_dur_times=0;
+ }
+ }
+ }
+ listeners.sendPostDisplayEvent(this);
+ }
+
+ /**
+ *
+ * This is the rendering-method called by repaint
+ *
+ * <p>
+ * The default implementation of display() sends display events to
+ * all {@link gl4java.drawable.GLEventListener}s associated with this
+ * GLOffScreenDrawable, and automatically calls {@link
+ * gl4java.GLContext#gljMakeCurrent} and {@link
+ * gl4java.GLContext#gljFree} as necessary.
+ *
+ * <p>}
+ * If you use the subclassing model (as opposed to the
+ * GLEventListener model), your subclass will redefine this to
+ * perform its OpenGL drawing.
+ *
+ * <p>
+ * BE SURE, if you want to call 'display' by yourself
+ * (e.g. in the run method for animation)
+ * YOU HAVE TO CALL sDisplay !
+ *
+ * 'sDisplay' manages a semaphore to avoid reentrance of
+ * the display function !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+ *
+ * @return void
+ *
+ * @see gl4java.awt.GLOffScreenDrawable#sDisplay
+ * @see gl4java.awt.GLOffScreenDrawable#paint
+ * @see gl4java.drawable.GLEventListener#display
+ */
+ public void display()
+ {
+ listeners.sendDisplayEvent(this);
+ }
+
+ /**
+ *
+ * This is your pre-init method.
+ * preInit is called just BEFORE the GL-Context is created.
+ * You should override preInit, to initialize your visual-stuff,
+ * like the protected vars: doubleBuffer and stereoView
+ *
+ * @return void
+ *
+ * @see gl4java.awt.GLOffScreenDrawable#paint
+ * @see gl4java.awt.GLOffScreenDrawable#stereoView
+ * @see gl4java.awt.GLOffScreenDrawable#rgba
+ * @see gl4java.awt.GLOffScreenDrawable#stencilBits
+ * @see gl4java.awt.GLOffScreenDrawable#accumSize
+ */
+ public void preInit()
+ {
+ }
+
+ /**
+ *
+ * init is called right after the GL-Context is initialized.
+ * The default implementation calls init() on all of this
+ * component's GLEventListeners.
+ *
+ * <p>
+ * If using the subclassing model, you can override this to
+ * perform one-time OpenGL initializations such as setting up
+ * lights and display lists.
+ *
+ * @return void
+ *
+ * @see gl4java.awt.GLOffScreenDrawable#paint
+ * @see gl4java.drawable.GLEventListener#init
+ */
+ public void init()
+ {
+ listeners.sendInitEvent(this);
+ }
+
+ /**
+ * This method is used to clean up any OpenGL stuff (delete textures
+ * or whatever) prior to actually deleting the OpenGL context.
+ * You should override this with your own version, if you need to do
+ * any cleanup work at this phase.
+ * This functions is called within cvsDispose
+ *
+ * @return void
+ *
+ * @see gl4java.awt.GLOffScreenDrawable#cvsDispose
+ * @see gl4java.drawable.GLEventListener#cleanup
+ */
+ public void doCleanup()
+ {
+ listeners.sendCleanupEvent(this);
+ }
+
+ /**
+ * This function returns, if everything is init: the GLContext,
+ * the and the users init function
+ * This value is set in the paint method!
+ *
+ * @return boolean
+ *
+ * @see gl4java.awt.GLOffScreenDrawable#paint
+ * @see gl4java.awt.GLOffScreenDrawable#init
+ */
+ public boolean cvsIsInit()
+ {
+ return cvsInitialized;
+ }
+
+ protected long _f_dur_self = 0;
+ protected long _f_dur_self_sum = 0;
+ protected long _f_dur_tst_sum = 0;
+ protected long _f_dur_total = 0;
+ protected long _f_dur_total_sum = 0;
+ protected int _f_dur_times = 0;
+
+ /**
+ *
+ * This �reshape� method will be invoked after the first paint command
+ * after GLCanvas.componentResize is called AND only if �gljMakeCurrent� was
+ * successful (so a call of gljMakeCurrent is redundant).
+ * �reshape� is not an overloading of java.awt.Component.reshape,
+ * �reshape� is more like �glut�-reshape.
+ *
+ * <p>
+ * GLCanvas.reshape already has a simple default implementation,
+ * which calls �gljResize� and �glViewport�. It also sends the
+ * reshape() event to all GLEventListeners. If using the
+ * GLEventListener model, it may not be necessary to do anything
+ * in your event listener's reshape() method; if using the
+ * subclassing model, it may not be necessary to override this.
+ *
+ * <p>
+ * The needed call to �gljResize� is done by the invoker paint !
+ *
+ * @param width the new width
+ * @param height the new height
+ * @return void
+ *
+ * @see gl4java.awt.GLOffScreenDrawable#paint
+ * @see gl4java.awt.GLOffScreenDrawable#sDisplay
+ * @see gl4java.drawable.GLEventListener#reshape
+ */
+ public void reshape( int width, int height )
+ {
+ if(GLContext.gljClassDebug)
+ System.out.println("GLOffScreenDrawable::reshape size("+getSize()+")");
+ gl.glViewport(0,0, width, height);
+ listeners.sendReshapeEvent(this, width, height);
+ }
+
+ /**
+ * You should call this before releasing/dispose this Window !
+ * Also you can overwrite this class,
+ * to dispose your own elements, e.g. a Frame etc. -
+ * but be shure that you call
+ * cvsDispose implementation call this one !
+ *
+ * This function calls gljDestroy of GLContext !
+ *
+ * @see gl4java.GLContext#gljDestroy
+ * @see gl4java.awt.GLOffScreenDrawable#doCleanup
+ * @see gl4java.drawable.GLEventListener#cleanup
+ */
+ public void cvsDispose()
+ {
+ cvsInitialized = false;
+ if (glj != null)
+ {
+ if (glj.gljIsInit())
+ {
+ /* Sometimes the Microsoft VM calls the
+ Applet.stop() method but doesn't have
+ permissions to do J/Direct calls, so
+ this whole block of code will throw a
+ security exception. If this happens,
+ however, windowClosing() will still
+ call us again later and we will have
+ another opportunity to shut down the
+ context, so it all works out fine. */
+ try
+ {
+ glj.gljFree();
+ doCleanup();
+ //locks and free's GLContext
+ glj.setEnabled(false);
+ glj.gljDestroy();
+ needCvsDispose = false;
+ }
+ catch (Exception ex)
+ {
+ needCvsDispose = true;
+ }
+ }
+ }
+
+ // Setting glj to null will simply cause paint() to re-initialize.
+ // We don't want that to happen, so we will leave glj non-null.
+ }
+
+ /**
+ * does nothing than:
+ *
+ * @see gl4java.awt.GLCanvas#cvsDispose
+ */
+ protected void finalize()
+ throws Throwable
+ {
+ if(GLContext.gljClassDebug)
+ System.out.println("GLCanvas finalize ..");
+
+ cvsDispose();
+ super.finalize();
+ }
+
+ /**
+ * get methods
+ */
+ public final int cvsGetWidth() {
+ return getSize().width;
+ }
+ public final int cvsGetHeight() {
+ return getSize().height;
+ }
+
+ //----------------------------------------------------------------------
+ // Implementation of GLDrawable
+ //
+ /**
+ * the components listener's should be implemented also !
+ * since JDK 1.1
+ */
+ public void addComponentListener(ComponentListener l)
+ { }
+ public void removeComponentListener(ComponentListener l)
+ { }
+ public void addFocusListener(FocusListener l)
+ { }
+ public void addKeyListener(KeyListener l)
+ { }
+ public void removeFocusListener(FocusListener l)
+ { }
+ public void addMouseListener(MouseListener l)
+ { }
+ public void removeMouseListener(MouseListener l)
+ { }
+ public void addMouseMotionListener(MouseMotionListener l)
+ { }
+ public void removeMouseMotionListener(MouseMotionListener l)
+ { }
+
+ public void addGLEventListener(GLEventListener listener) {
+ listeners.add(listener);
+ }
+
+ public void removeGLEventListener(GLEventListener listener) {
+ listeners.remove(listener);
+ }
+
+ public GLFunc getGL() {
+ return gl;
+ }
+
+ public GLUFunc getGLU() {
+ return glu;
+ }
+}
diff --git a/gl4java/drawable/GLDrawable.java b/gl4java/drawable/GLDrawable.java index 1710e3a..73004b2 100644 --- a/gl4java/drawable/GLDrawable.java +++ b/gl4java/drawable/GLDrawable.java @@ -1,5 +1,6 @@ package gl4java.drawable;
+import java.awt.Dimension;
import java.awt.event.*;
import java.util.EventListener;
@@ -98,6 +99,40 @@ public interface GLDrawable public void repaint();
/**
+ * This function returns, if everything is init: the GLContext,
+ * the and the users init function
+ * This value is set in the paint method!
+ *
+ * @return boolean
+ *
+ * @see gl4java.awt.GLCanvas#paint
+ * @see gl4java.awt.GLCanvas#init
+ */
+ public boolean cvsIsInit();
+
+ /**
+ * You should call this before releasing/dispose this Window !
+ * Also you can overwrite this class,
+ * to dispose your own elements, e.g. a Frame etc. -
+ * but be shure that you call
+ * cvsDispose implementation call this one !
+ *
+ * This function calls gljDestroy of GLContext !
+ *
+ * Be sure to implement finalize,
+ * which should call this one !!
+ *
+ * @see gl4java.GLContext#gljDestroy
+ * @see gl4java.drawable.GLEventListener#cleanup
+ */
+ public void cvsDispose();
+
+ /**
+ * this function returns the current size of the object
+ */
+ public Dimension getSize();
+
+ /**
* the components listener's should be implemented also !
* since JDK 1.1
*/
diff --git a/gl4java/drawable/SunJDK13GLDrawableFactory.java b/gl4java/drawable/SunJDK13GLDrawableFactory.java index bc707d8..cb74edb 100755 --- a/gl4java/drawable/SunJDK13GLDrawableFactory.java +++ b/gl4java/drawable/SunJDK13GLDrawableFactory.java @@ -62,13 +62,18 @@ public abstract class SunJDK13GLDrawableFactory extends GLDrawableFactory { GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice());
}
- //----------------------------------------------------------------------
- // Internals only below this point
- //
+ /** Returns the GraphicsConfiguration most closely matching the
+ specified set of GLCapabilities and your given device !
+ Return null if there was no matching visual.
- /** The choice of the GraphicsDevice is not yet exported to
- clients. */
- abstract GraphicsConfiguration
+ @param capabilities the requested set of OpenGL capabilities of
+ the canvas
+ @param device the used GraphicsDevice,
+ e.g. usefull for FullScreen mode !
+ @return a GraphicsConfiguration supporting the set of specified capabilities,
+ or null if there was no matching visual
+ */
+ public abstract GraphicsConfiguration
getGraphicsConfiguration(GLCapabilities capabilities,
GraphicsDevice device);
}
diff --git a/gl4java/drawable/X11SunJDK13GLDrawableFactory.java b/gl4java/drawable/X11SunJDK13GLDrawableFactory.java index 52ce5ec..3e4657e 100644 --- a/gl4java/drawable/X11SunJDK13GLDrawableFactory.java +++ b/gl4java/drawable/X11SunJDK13GLDrawableFactory.java @@ -59,7 +59,7 @@ public class X11SunJDK13GLDrawableFactory public X11SunJDK13GLDrawableFactory() { }
- GraphicsConfiguration
+ public GraphicsConfiguration
getGraphicsConfiguration(GLCapabilities capabilities,
GraphicsDevice device)
{
diff --git a/gl4java/swing/GLJPanel.java b/gl4java/swing/GLJPanel.java index d13cc89..011e381 100644 --- a/gl4java/swing/GLJPanel.java +++ b/gl4java/swing/GLJPanel.java @@ -359,11 +359,11 @@ public class GLJPanel extends JPanel cvsDispose();
}
preInit();
- glj = GLContext.createOffScreenCtx ( this, gl, glu,
+ glj = GLContext.createOffScreenCtx ( gl, glu,
stereoView,
rgba, stencilBits, accumSize,
sharedGLContext,
- offScrnSize
+ getSize()
);
if(glj!=null)
@@ -387,7 +387,7 @@ public class GLJPanel extends JPanel (float)col.getGreen()/255.0f,
(float)col.getBlue()/255.0f, 0.0f);
init();
- Dimension size = size=getSize();
+ Dimension size = getSize();
reshape(size.width, size.height);
// fetch the top-level window ,
@@ -472,12 +472,7 @@ public class GLJPanel extends JPanel if(mustResize)
{
mustResize=false;
- Dimension size = null;
-
- if(customOffScrnSize)
- size=offScrnSize;
- else
- size=getSize();
+ Dimension size = getSize();
reshape(size.width, size.height);
/*
@@ -496,12 +491,7 @@ public class GLJPanel extends JPanel glj.gljCheckGL();
}
- Dimension size = null;
-
- if(customOffScrnSize)
- size=offScrnSize;
- else
- size=getSize();
+ Dimension size = getSize();
int w=size.width;
int h=size.height;
@@ -512,10 +502,25 @@ public class GLJPanel extends JPanel {
GLCapabilities caps = glj.getGLCapabilities();
- if(caps.getAlphaBits()>0)
- awtFormat = BufferedImage.TYPE_4BYTE_ABGR;
- else
- awtFormat = BufferedImage.TYPE_3BYTE_BGR;
+ switch ( GLContext.getNativeOSType() )
+ {
+ case GLContext.OsWindoof:
+ if(caps.getAlphaBits()>0)
+ awtFormat = BufferedImage.TYPE_INT_ARGB;
+ else
+ awtFormat = BufferedImage.TYPE_INT_RGB;
+ break;
+ case GLContext.OsX11:
+ case GLContext.OsMac9:
+ case GLContext.OsMacX:
+ case GLContext.OsUnknown:
+ default:
+ if(caps.getAlphaBits()>0)
+ awtFormat = BufferedImage.TYPE_4BYTE_ABGR;
+ else
+ awtFormat = BufferedImage.TYPE_3BYTE_BGR;
+ break;
+ }
if(offImage!=null)
offImage.flush();
@@ -539,27 +544,27 @@ public class GLJPanel extends JPanel break;
case BufferedImage.TYPE_4BYTE_ABGR:
if(GLContext.gljClassDebug)
- System.out.println("awt=4BYTE_ABGR, gl=BGRA,UNSIGNED_INT_8_8_8_8");
+ System.out.println("awt=4BYTE_ABGR, gl=BGRA,UNSIGNED_BYTE");
glFormat = GL_BGRA;
- glType = GL_UNSIGNED_INT_8_8_8_8;
+ glType = GL_UNSIGNED_BYTE;
glComps = 4;
dbByte = (DataBufferByte)
offImage.getRaster().getDataBuffer();
break;
case BufferedImage.TYPE_INT_RGB:
if(GLContext.gljClassDebug)
- System.out.println("awt=INT_RGB, gl=BGRA,UNSIGNED_INT_8_8_8_8_REV");
+ System.out.println("awt=INT_RGB, gl=BGRA,UNSIGNED_BYTE");
glFormat = GL_BGRA;
- glType = GL_UNSIGNED_INT_8_8_8_8_REV;
+ glType = GL_UNSIGNED_BYTE;
glComps = 4;
dbInt = (DataBufferInt)
offImage.getRaster().getDataBuffer();
break;
case BufferedImage.TYPE_INT_ARGB:
if(GLContext.gljClassDebug)
- System.out.println("awt=INT_ARGB, gl=BGRA,INT_8_8_8_8_REV");
+ System.out.println("awt=INT_ARGB, gl=BGRA,UNSIGNED_BYTE");
glFormat = GL_BGRA;
- glType = GL_UNSIGNED_INT_8_8_8_8_REV;
+ glType = GL_UNSIGNED_BYTE;
glComps = 4;
dbInt = (DataBufferInt)
offImage.getRaster().getDataBuffer();
diff --git a/gl4java/utils/glf/GLFEnum.java b/gl4java/utils/glf/GLFEnum.java index bcb31a0..3d0e2bb 100755 --- a/gl4java/utils/glf/GLFEnum.java +++ b/gl4java/utils/glf/GLFEnum.java @@ -27,30 +27,30 @@ public interface GLFEnum * Reading from file: glf-enum-auto.orig.h . . . * Destination-Class: gl4java_GLFEnum ! */ - - public static final int GLF_ERROR = - 1; - public static final int GLF_OK = 0; - public static final int GLF_YES = 1; - public static final int GLF_NO = 2; - public static final int GLF_CONSOLE_MESSAGES = 10; - public static final int GLF_TEXTURING = 11; - public static final int GLF_CONTOURING = 12; - public static final int GLF_LEFT_UP = 20; - public static final int GLF_LEFT_CENTER = 21; - public static final int GLF_LEFT_DOWN = 22; - public static final int GLF_CENTER_UP = 23; - public static final int GLF_CENTER_CENTER = 24; - public static final int GLF_CENTER_DOWN = 25; - public static final int GLF_RIGHT_UP = 26; - public static final int GLF_RIGHT_CENTER = 27; - public static final int GLF_RIGHT_DOWN = 28; - public static final int GLF_CENTER = 24; - public static final int GLF_LEFT = 1; - public static final int GLF_RIGHT = 2; - public static final int GLF_UP = 3; - public static final int GLF_DOWN = 4; - public static final int GLF_CONSOLE_CURSOR = 30; -/* C2J Parser Version 3.0: Java program parsed successfully. */ +
+ public static final int GLF_ERROR = - 1;
+ public static final int GLF_OK = 0;
+ public static final int GLF_YES = 1;
+ public static final int GLF_NO = 2;
+ public static final int GLF_CONSOLE_MESSAGES = 10;
+ public static final int GLF_TEXTURING = 11;
+ public static final int GLF_CONTOURING = 12;
+ public static final int GLF_LEFT_UP = 20;
+ public static final int GLF_LEFT_CENTER = 21;
+ public static final int GLF_LEFT_DOWN = 22;
+ public static final int GLF_CENTER_UP = 23;
+ public static final int GLF_CENTER_CENTER = 24;
+ public static final int GLF_CENTER_DOWN = 25;
+ public static final int GLF_RIGHT_UP = 26;
+ public static final int GLF_RIGHT_CENTER = 27;
+ public static final int GLF_RIGHT_DOWN = 28;
+ public static final int GLF_CENTER = 24;
+ public static final int GLF_LEFT = 1;
+ public static final int GLF_RIGHT = 2;
+ public static final int GLF_UP = 3;
+ public static final int GLF_DOWN = 4;
+ public static final int GLF_CONSOLE_CURSOR = 30;
+/* C2J Parser Version 3.0: Java program parsed successfully. */
} diff --git a/gl4java/utils/glf/GLFFuncJNI.java b/gl4java/utils/glf/GLFFuncJNI.java index 58d90d8..e2aedf4 100755 --- a/gl4java/utils/glf/GLFFuncJNI.java +++ b/gl4java/utils/glf/GLFFuncJNI.java @@ -56,296 +56,296 @@ protected final native int glfLoadBFontNative (long fontf); * Reading from file: glf-proto-auto.orig.h . . . * Destination-Class: gl4java_utils_glf_GLF ! */ - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfInit ( ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfInit ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfClose ( ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfClose ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
int glfUnloadFont ( ) ; - * </pre> - */ + * </pre>
+ */
public final native int glfUnloadFont ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
int glfUnloadBFont ( ) ; - * </pre> - */ + * </pre>
+ */
public final native int glfUnloadBFont ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
int glfUnloadFontD ( int font_descriptor ) ; - * </pre> - */ + * </pre>
+ */
public final native int glfUnloadFontD ( int font_descriptor ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
int glfUnloadBFontD ( int bmf_descriptor ) ; - * </pre> - */ + * </pre>
+ */
public final native int glfUnloadBFontD ( int bmf_descriptor ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDrawWiredSymbol ( char s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDrawWiredSymbol ( byte s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDrawWiredString ( const char * s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDrawWiredString ( String s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDrawSolidSymbol ( char s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDrawSolidSymbol ( byte s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDrawSolidString ( const char * s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDrawSolidString ( String s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDraw3DWiredSymbol ( char s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDraw3DWiredSymbol ( byte s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDraw3DWiredString ( const char * s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDraw3DWiredString ( String s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDraw3DSolidSymbol ( char s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDraw3DSolidSymbol ( byte s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDraw3DSolidString ( const char * s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDraw3DSolidString ( String s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
int glfBeginBFont ( int Font_Descriptor ) ; - * </pre> - */ + * </pre>
+ */
public final native int glfBeginBFont ( int Font_Descriptor ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfEndBFont ( ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfEndBFont ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDrawBSymbol ( char s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDrawBSymbol ( byte s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDrawBString ( const char * s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDrawBString ( String s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDrawBMaskSymbol ( char s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDrawBMaskSymbol ( byte s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDrawBMaskString ( const char * s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDrawBMaskString ( String s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDrawWiredSymbolF ( int font_descriptor , char s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDrawWiredSymbolF ( int font_descriptor, byte s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDrawWiredStringF ( int font_descriptor , const char * s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDrawWiredStringF ( int font_descriptor, String s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDrawSolidSymbolF ( int font_descriptor , char s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDrawSolidSymbolF ( int font_descriptor, byte s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDrawSolidStringF ( int font_descriptor , const char * s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDrawSolidStringF ( int font_descriptor, String s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDraw3DWiredSymbolF ( int font_descriptor , char s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDraw3DWiredSymbolF ( int font_descriptor, byte s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDraw3DWiredStringF ( int font_descriptor , const char * s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDraw3DWiredStringF ( int font_descriptor, String s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDraw3DSolidSymbolF ( int font_descriptor , char s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDraw3DSolidSymbolF ( int font_descriptor, byte s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDraw3DSolidStringF ( int font_descriptor , const char * s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDraw3DSolidStringF ( int font_descriptor, String s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfGetStringBoundsF ( int fd , const char * s , float * minx , float * miny , float * maxx , float * maxy ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfGetStringBoundsF ( int fd, String s, @@ -354,13 +354,13 @@ protected final native int glfLoadBFontNative (long fontf); float[] maxx, float[] maxy ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfGetStringBounds ( const char * s , float * minx , float * miny , float * maxx , float * maxy ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfGetStringBounds ( String s, float[] minx, @@ -368,303 +368,303 @@ protected final native int glfLoadBFontNative (long fontf); float[] maxx, float[] maxy ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfSetSymbolSpace ( float sp ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfSetSymbolSpace ( float sp ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
float glfGetSymbolSpace ( ) ; - * </pre> - */ + * </pre>
+ */
public final native float glfGetSymbolSpace ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfSetSpaceSize ( float sp ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfSetSpaceSize ( float sp ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
float glfGetSpaceSize ( ) ; - * </pre> - */ + * </pre>
+ */
public final native float glfGetSpaceSize ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfSetSymbolDepth ( float dpth ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfSetSymbolDepth ( float dpth ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
float glfGetSymbolDepth ( ) ; - * </pre> - */ + * </pre>
+ */
public final native float glfGetSymbolDepth ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
int glfSetCurrentFont ( int Font_Descriptor ) ; - * </pre> - */ + * </pre>
+ */
public final native int glfSetCurrentFont ( int Font_Descriptor ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
int glfSetCurrentBFont ( int Font_Descriptor ) ; - * </pre> - */ + * </pre>
+ */
public final native int glfSetCurrentBFont ( int Font_Descriptor ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
int glfGetCurrentFont ( ) ; - * </pre> - */ + * </pre>
+ */
public final native int glfGetCurrentFont ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
int glfGetCurrentBFont ( ) ; - * </pre> - */ + * </pre>
+ */
public final native int glfGetCurrentBFont ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfSetAnchorPoint ( int anchp ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfSetAnchorPoint ( int anchp ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfSetContourColor ( float r , float g , float b , float a ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfSetContourColor ( float r, float g, float b, float a ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfEnable ( int what ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfEnable ( int what ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfDisable ( int what ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfDisable ( int what ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfSetConsoleParam ( int width , int height ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfSetConsoleParam ( int width, int height ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
int glfSetConsoleFont ( int Font_Descriptor ) ; - * </pre> - */ + * </pre>
+ */
public final native int glfSetConsoleFont ( int Font_Descriptor ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfConsoleClear ( ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfConsoleClear ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfPrint ( const char * s , int lenght ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfPrint ( String s, int lenght ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfPrintString ( const char * s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfPrintString ( String s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfPrintChar ( char s ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfPrintChar ( byte s ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfConsoleDraw ( ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfConsoleDraw ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfSetCursorBlinkRate ( int Rate ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfSetCursorBlinkRate ( int Rate ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfStringCentering ( GLboolean center ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfStringCentering ( boolean center ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
GLboolean glfGetStringCentering ( ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glfGetStringCentering ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfBitmapStringCentering ( GLboolean center ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfBitmapStringCentering ( boolean center ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
GLboolean glfBitmapGetStringCentering ( ) ; - * </pre> - */ + * </pre>
+ */
public final native boolean glfBitmapGetStringCentering ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfStringDirection ( GLuint direction ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfStringDirection ( int direction ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
GLuint glfGetStringDirection ( ) ; - * </pre> - */ + * </pre>
+ */
public final native int glfGetStringDirection ( ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfSetRotateAngle ( float angle ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfSetRotateAngle ( float angle ) ; - -/** - * Original Function-Prototype : - * <pre> +
+/**
+ * Original Function-Prototype :
+ * <pre>
void glfSetBRotateAngle ( float angle ) ; - * </pre> - */ + * </pre>
+ */
public final native void glfSetBRotateAngle ( float angle ) ; - -/* C2J Parser Version 3.0: Java program parsed successfully. */ +
+/* C2J Parser Version 3.0: Java program parsed successfully. */
} |