From 8fdc4baaee82a63247a9f4203dace4ee910881bb Mon Sep 17 00:00:00 2001
From: Sven Gothel When asked for a name, enter the following name, exactly as shown: GL4Java
Click here to import the signing certificate. Valid from Fri Apr 06, 2001 to Fri Jul 06, 2001
+ Click here to import the signing certificate. Valid from Thu Dec 06, 2001 to Wed Mar 06, 2002
After you have imported the certificate, Click
here to begin the GL4Java installation.
diff --git a/Installer/MachineCtrl.java b/Installer/MachineCtrl.java
index c2435e4..664f47f 100644
--- a/Installer/MachineCtrl.java
+++ b/Installer/MachineCtrl.java
@@ -21,18 +21,27 @@ public class MachineCtrl
public Button buttonOk = null;
public Button buttonCancel = null;
public Button buttonFileClasses = null;
- public Button buttonFileNatives = null;
+ public Button buttonFileNativesBrowser = null;
+ public Button buttonFileNativesOS = null;
public TextField tf_browser_classes = null;
public TextField tf_browser_natives = null;
+ public TextField tf_os_natives = null;
public boolean installGLUTFontSupport = true;
+ public boolean installGLFFontSupport = true;
private Checkbox checkboxInstallGLUTFontSupport = null;
+ private Checkbox checkboxInstallGLFFontSupport = null;
// Values for replaceable strings:
public String browser_classes = null;
public String browser_natives = null;
+ public String os_natives = null;
public String os_dir = null;
public String os_lib_dir = null;
+ private String javalibdir=null;
+ private String java_lib=null;
+ private Vector javalibdir_list=null;
+
// Java VM vendor and operating system stuff:
public String jvmVendor = null;
public String jvmVersion = null;
@@ -48,8 +57,8 @@ public class MachineCtrl
public String osArch = null;
public boolean isWin32 = false;
public boolean isWin95 = false;
- public boolean isMacOs = false;
public boolean isMacOs9 = false;
+ public boolean isMacOsX = false;
public boolean isUnix = false;
public int unixFlavor = unixFlavor_Unknown;
static public final int
@@ -58,7 +67,13 @@ public class MachineCtrl
unixFlavor_Solaris = 2,
unixFlavor_Aix = 3,
unixFlavor_Irix = 4,
- unixFlavor_HPUX = 5;
+ unixFlavor_HPUX = 5,
+ unixFlavor_MacOsX = 6;
+ public boolean isOsArchX86=false;
+ public boolean isOsArchPPC = false;
+ public boolean isOsArchSPARC = false;
+ public boolean isOsArchMIPS = false;
+ public boolean isOsArchPARISC = false;
private String pathsep = null;
private String filesep = null;
@@ -128,10 +143,10 @@ public class MachineCtrl
&& (osName.indexOf("windows 95") >= 0)
&& (osVersion.startsWith("4.0")) );
- isMacOs = osName.startsWith("mac os");
- isMacOs9 = osVersion.startsWith("9.");
+ isMacOs9 = osName.startsWith("mac os") && osVersion.startsWith("9.");
+ isMacOsX = osName.startsWith("darwin");
- isUnix = ( (!isWin32) && (!isMacOs) );
+ isUnix = ( (!isWin32) && (!isMacOs9) );
pathsep = System.getProperty("path.separator");
filesep = System.getProperty("file.separator");
@@ -148,12 +163,35 @@ public class MachineCtrl
unixFlavor = unixFlavor_Irix;
else if (osName.indexOf("hp-ux") >= 0)
unixFlavor = unixFlavor_HPUX;
+ else if (osName.indexOf("darwin") >= 0)
+ unixFlavor = unixFlavor_MacOsX;
}
+ if(osArch.indexOf("x86")>=0 ||
+ osArch.indexOf("i86")>=0 ||
+ osArch.indexOf("i786")>=0 ||
+ osArch.indexOf("i686")>=0 ||
+ osArch.indexOf("i586")>=0 ||
+ osArch.indexOf("i486")>=0 ||
+ osArch.indexOf("i386")>=0
+ ) isOsArchX86=true;
+ else
+ isOsArchX86=false;
+
+ isOsArchPPC = osArch.indexOf("ppc")>=0 || osArch.indexOf("powerpc")>=0;
+ isOsArchSPARC = osArch.indexOf("sparc")>=0;
+ isOsArchMIPS = osArch.indexOf("mips")>=0;
+ isOsArchPARISC = osArch.indexOf("ps_risc")>=0;
+
System.out.println("Machine Info:");
System.out.println("\tosName: "+osName);
System.out.println("\tosVersion: "+osVersion);
System.out.println("\tosArch: "+osArch);
+ System.out.println("\t\t isOsArchX86 ="+isOsArchX86);
+ System.out.println("\t\t isOsArchPPC ="+isOsArchPPC);
+ System.out.println("\t\t isOsArchSPARC ="+isOsArchSPARC);
+ System.out.println("\t\t isOsArchMIPS ="+isOsArchMIPS);
+ System.out.println("\t\t isOsArchPARISC ="+isOsArchPARISC);
System.out.println("");
System.out.println("jvmVendor: "+jvmVendor);
System.out.println("jvmVersion: "+jvmVersion+
@@ -359,11 +397,11 @@ public class MachineCtrl
len = ((Integer)m.invoke(kernel32,args)).intValue();
f = new File(new String(buf));
os_lib_dir = f.getAbsolutePath().replace('\\','/');
- browser_natives = os_lib_dir;
+ os_natives = os_lib_dir;
}
catch (Exception e)
{
- browser_natives = null;
+ os_natives = null;
System.out.println(e);
System.out.println("call to get the sys dir failed:\n"+ buf);
}
@@ -399,7 +437,7 @@ public class MachineCtrl
return false;
}
} // if (isWin32)
- else if (isMacOs)
+ else if (isMacOs9)
{
// TODO: Add IE init here for browser_classes and browser_natives directories
// under MacOs.
@@ -414,8 +452,8 @@ public class MachineCtrl
{
if (isWin32)
{
- // Find WINDOWS and WINDOWS\SYSTEM directories for Win9x,
- // or WINNT and WINNT\SYSTE23 directories for WinNT.
+ // Find WINDOWS and WINDOWS\SYSTEM directories for Win9x,
+ // or WINNT and WINNT\SYSTEM23 directories for WinNT.
Process proc = null;
String path = "";
try
@@ -556,6 +594,7 @@ public class MachineCtrl
|| (os_lib_dir.length()
< 1) )
os_lib_dir = thispath2;
+ os_natives = os_lib_dir;
}
}
}
@@ -606,7 +645,7 @@ public class MachineCtrl
String jvmHome = java.lang.System.getProperty("java.home");
- if ( (isWin32) || (isUnix) || (isMacOs) )
+ if ( (isWin32) || (isUnix) )
{
if(DEBUG)
System.out.println("find classpath ...");
@@ -688,30 +727,99 @@ public class MachineCtrl
switch (unixFlavor)
{
case unixFlavor_Linux:
- browser_natives = new String("/usr/lib");
+ os_natives = new String("/usr/lib");
break;
case unixFlavor_Solaris:
- browser_natives = new String("/usr/lib");
+ os_natives = new String("/usr/lib");
break;
case unixFlavor_Aix:
- browser_natives = new String("/usr/lib");
+ os_natives = new String("/usr/lib");
break;
case unixFlavor_Irix:
- browser_natives = new String("/usr/lib");
+ os_natives = new String("/usr/lib");
break;
}
}
- else
- browser_natives = thispath.substring(0,thispath.length()-7) + "bin";
+ else if(os_natives==null||os_natives.length()==0)
+ os_natives = thispath.substring(0,thispath.length()-7) + "bin";
break;
}
}
}
}
- }
- } // if ( (isWin32) || (isUnix) || (isMacOs) )
+ if(jvmHome!=null && jvmHome!="null")
+ {
+ if(isWin32)
+ {
+ if(isOsArchX86)
+ {
+ browser_natives=jvmHome+"/bin";
+ }
+ java_lib="java.dll";
+ }
+ if(isUnix)
+ {
+ if(unixFlavor==unixFlavor_Linux)
+ {
+ if(isOsArchX86)
+ {
+ browser_natives=jvmHome+"/lib/i386";
+ } else if(isOsArchPPC)
+ {
+ browser_natives=jvmHome+"/lib/ppc";
+ }
+ } else if(unixFlavor==unixFlavor_Solaris)
+ {
+ if(isOsArchSPARC)
+ browser_natives=jvmHome+"/lib/sparc";
+ } else if(unixFlavor==unixFlavor_Irix)
+ {
+ if(isOsArchMIPS)
+ browser_natives=jvmHome+"/lib/mips";
+ } else if(unixFlavor==unixFlavor_HPUX)
+ {
+ if(isOsArchPARISC)
+ browser_natives=jvmHome+"/lib/parisc";
+ } else if(unixFlavor==unixFlavor_MacOsX)
+ {
+ if(isOsArchPPC)
+ {
+ browser_natives=jvmHome+"/lib/ppc";
+ }
+ }
+ java_lib="libjava.so";
+ }
+ if(isMacOs9)
+ {
+ if(isOsArchPPC)
+ browser_natives=jvmHome+"/lib/ppc";
+ java_lib="java.dll";
+ }
+ if(browser_natives==null || browser_natives.length()==0)
+ {
+ browser_natives=jvmHome+"/bin";
+ java_lib="java.dll";
+ }
+ javalibdir_list=new Vector();
+ javalibdir_list.addElement(browser_natives);
+ javalibdir_list.addElement(jvmHome+"/bin");
+ javalibdir_list.addElement(jvmHome+"/lib/i686");
+ javalibdir_list.addElement(jvmHome+"/lib/i686/i686/native_threads");
+ javalibdir_list.addElement(jvmHome+"/lib/i686/i686/green_threads");
+ javalibdir_list.addElement(jvmHome+"/lib/i386");
+ javalibdir_list.addElement(jvmHome+"/lib/ppc");
+ javalibdir_list.addElement(jvmHome+"/lib/sparc");
+ javalibdir_list.addElement(jvmHome+"/lib/mips");
+ javalibdir_list.addElement(jvmHome+"/lib/parisc");
+ javalibdir_list.addElement(jvmHome+"/lib/risc");
+ javalibdir=FileTool.libraryExists(this,java_lib,javalibdir_list);
+ if (javalibdir!=null)
+ browser_natives=javalibdir;
+ } // if jvmhome!=null
+ } // if jvmhome-classpath exists !
+ } // if ( (isWin32) || (isUnix) )
/*
- else if (isMacOs)
+ else if (isMacOs9)
{
}
*/
@@ -761,7 +869,7 @@ public class MachineCtrl
}
Panel panMain = new Panel();
- panMain.setLayout(new GridLayout(10,1));
+ panMain.setLayout(new GridLayout(11,1));
if(osVersion!=null && osArch!=null)
panMain.add(new Label("OS: "+osName+" "+osVersion+" "+osArch));
@@ -772,7 +880,7 @@ public class MachineCtrl
panFlow.setLayout(new FlowLayout(FlowLayout.LEFT,0,0));
panFlow.add(new Label("os-dir/os-library-dir:"));
if(os_dir!=null && os_lib_dir!=null)
- panFlow.add(new Label(os_dir.trim()+"/"+os_lib_dir.trim()));
+ panFlow.add(new Label(os_dir.trim()+" / "+os_lib_dir.trim()));
else
panFlow.add(new Label("none/none"));
panMain.add(panFlow);
@@ -783,7 +891,16 @@ public class MachineCtrl
checkboxInstallGLUTFontSupport = new Checkbox("with GLUT-Fonts", true);
checkboxInstallGLUTFontSupport.addItemListener(this);
panGL4JSpecials.add(checkboxInstallGLUTFontSupport);
- panGL4JSpecials.add(new Label("(takes up to 200kBytes)"));
+ panGL4JSpecials.add(new Label("(takes up to 111 kBytes)"));
+ panMain.add(panGL4JSpecials);
+
+ panGL4JSpecials = new Panel();
+ panGL4JSpecials.setLayout(new GridLayout(1,2));
+ installGLFFontSupport = true;
+ checkboxInstallGLFFontSupport = new Checkbox("with GLF-Fonts", true);
+ checkboxInstallGLFFontSupport.addItemListener(this);
+ panGL4JSpecials.add(checkboxInstallGLFFontSupport);
+ panGL4JSpecials.add(new Label("(takes up to 611 kBytes)"));
panMain.add(panGL4JSpecials);
Panel panOS = new Panel();
@@ -794,7 +911,7 @@ public class MachineCtrl
cb1 = new Checkbox("Win95", isWin95);
cb1.setEnabled(false);
panOS.add(cb1);
- cb1 = new Checkbox("MacOS", isMacOs);
+ cb1 = new Checkbox("MacOS9", isMacOs9);
cb1.setEnabled(false);
panOS.add(cb1);
cb1 = new Checkbox("Unix", isUnix);
@@ -805,7 +922,7 @@ public class MachineCtrl
if(isUnix)
{
Panel panOSUnix = new Panel();
- panOSUnix.setLayout(new GridLayout(2,2));
+ panOSUnix.setLayout(new GridLayout(2,3));
cb1 = new Checkbox("GNU/Linux", unixFlavor==unixFlavor_Linux);
cb1.setEnabled(false);
panOSUnix.add(cb1);
@@ -818,6 +935,12 @@ public class MachineCtrl
cb1 = new Checkbox("Irix", unixFlavor==unixFlavor_Irix);
cb1.setEnabled(false);
panOSUnix.add(cb1);
+ cb1 = new Checkbox("HP-UX", unixFlavor==unixFlavor_HPUX);
+ cb1.setEnabled(false);
+ panOSUnix.add(cb1);
+ cb1 = new Checkbox("Darwin/MacOsX", unixFlavor==unixFlavor_MacOsX);
+ cb1.setEnabled(false);
+ panOSUnix.add(cb1);
panMain.add(panOSUnix);
}
@@ -850,16 +973,29 @@ public class MachineCtrl
buttonFileClasses.addActionListener(this);
panFlow.add(buttonFileClasses);
panMain.add(panFlow);
+
panFlow = new Panel();
//panFlow.setLayout(new GridLayout(1,3));
panFlow.setLayout(new FlowLayout(FlowLayout.LEFT));
- panFlow.add(new Label("Native-Lib's-Path:"));
+ panFlow.add(new Label("Java Native-Lib's-Path's:"));
tf_browser_natives = new TextField(browser_natives,60);
tf_browser_natives.addActionListener(this);
panFlow.add(tf_browser_natives);
- buttonFileNatives = new Button("...");
- buttonFileNatives.addActionListener(this);
- panFlow.add(buttonFileNatives);
+ buttonFileNativesBrowser = new Button("...");
+ buttonFileNativesBrowser.addActionListener(this);
+ panFlow.add(buttonFileNativesBrowser);
+ panMain.add(panFlow);
+
+ panFlow = new Panel();
+ //panFlow.setLayout(new GridLayout(1,3));
+ panFlow.setLayout(new FlowLayout(FlowLayout.LEFT));
+ panFlow.add(new Label("OS Native-Lib's-Path's:"));
+ tf_os_natives = new TextField(os_natives,60);
+ tf_os_natives.addActionListener(this);
+ panFlow.add(tf_os_natives);
+ buttonFileNativesOS = new Button("...");
+ buttonFileNativesOS.addActionListener(this);
+ panFlow.add(buttonFileNativesOS);
panMain.add(panFlow);
dialog.add("Center", panMain);
@@ -974,15 +1110,18 @@ public class MachineCtrl
fisdir=false;
try {
- fname = tf_browser_natives.getText().replace('\\','/');
+ fname = tf_browser_natives.getText().replace('\\','/');
+ if(fname!=null && fname.length()>0)
fname = fname.trim();
- f = new File(fname);
+ if(fname!=null && fname.length()>0)
+ {
+ f = new File(fname);
fexist=f.exists();
fisdir=f.isDirectory();
if(f!=null && fexist && fisdir )
{
browser_natives = fname;
- System.out.println("Set Native-Dir to: "+
+ System.out.println("Set Browser-Native-Dir to: "+
browser_natives);
} else {
str = new String ("directory <"+
@@ -998,6 +1137,7 @@ public class MachineCtrl
tf_browser_natives.requestFocus();
tf_browser_natives.getToolkit().beep();
}
+ }
} catch (Exception ex) {
ex.printStackTrace();
str = new String ("EXCEPTION directory <"+
@@ -1013,6 +1153,50 @@ public class MachineCtrl
tf_browser_natives.requestFocus();
tf_browser_natives.getToolkit().beep();
}
+ try {
+ fname = tf_os_natives.getText().replace('\\','/');
+ if(fname!=null && fname.length()>0)
+ fname = fname.trim();
+ if(fname!=null && fname.length()>0)
+ {
+ f = new File(fname);
+ fexist=f.exists();
+ fisdir=f.isDirectory();
+ if(f!=null && fexist && fisdir )
+ {
+ os_natives = fname;
+ System.out.println("Set OS-Native-Dir to: "+
+ os_natives);
+ } else {
+ str = new String ("directory <"+
+ tf_os_natives.getText().trim()+
+ "> is invalid ");
+ if(f!=null) {
+ str+= "( exist="+ fexist +
+ ", isDir="+fisdir+ ")";
+ } else {
+ str+= "( f is NULL )";
+ }
+ ok=false;
+ tf_os_natives.requestFocus();
+ tf_os_natives.getToolkit().beep();
+ }
+ }
+ } catch (Exception ex) {
+ ex.printStackTrace();
+ str = new String ("EXCEPTION directory <"+
+ tf_os_natives.getText().trim()+
+ "> is invalid ");
+ if(f!=null) {
+ str+= "( exist="+ fexist +
+ ", isDir="+fisdir+ ")";
+ } else {
+ str+= "( f is NULL )";
+ }
+ ok=false;
+ tf_os_natives.requestFocus();
+ tf_os_natives.getToolkit().beep();
+ }
if(!ok && str!=null)
{
System.out.println(str);
@@ -1054,14 +1238,22 @@ public class MachineCtrl
fd.show();
tf_browser_classes.setText(fd.getDirectory());
//checkTextFields();
- } else if(src.equals(buttonFileNatives))
+ } else if(src.equals(buttonFileNativesBrowser))
{
FileDialog fd =
- new FileDialog(dialog,"GL4Java Classes Dir",FileDialog.SAVE);
+ new FileDialog(dialog,"GL4Java JVM Natives Dir",FileDialog.SAVE);
fd.setDirectory(tf_browser_natives.getText());
fd.show();
tf_browser_natives.setText(fd.getDirectory());
//checkTextFields();
+ } else if(src.equals(buttonFileNativesOS))
+ {
+ FileDialog fd =
+ new FileDialog(dialog,"GL4Java OS Natives Dir",FileDialog.SAVE);
+ fd.setDirectory(tf_os_natives.getText());
+ fd.show();
+ tf_os_natives.setText(fd.getDirectory());
+ //checkTextFields();
} else if(src.equals(goToJausoftGL4Java) && applet!=null)
{
try {
@@ -1080,6 +1272,11 @@ public class MachineCtrl
installGLUTFontSupport =
checkboxInstallGLUTFontSupport.getState();
}
+ if(checkboxInstallGLFFontSupport.equals(e.getItemSelectable()))
+ {
+ installGLFFontSupport =
+ checkboxInstallGLFFontSupport.getState();
+ }
}
diff --git a/Installer/makeMSIESignedCab.sh b/Installer/makeMSIESignedCab.sh
index 768c362..1ead186 100755
--- a/Installer/makeMSIESignedCab.sh
+++ b/Installer/makeMSIESignedCab.sh
@@ -4,16 +4,16 @@
# The Microsft signing keys were created using the Microsoft makecert and
# cert2spc utilities, as follows:
-# makecert -nscp -r -n CN=GL4JInst GL4JInst.cer -sv GL4JInst.pvk
+# makecert -nscp -r -n CN=GL4JInst GL4JInst281.cer -sv GL4JInst281.pvk
# (when prompted for a password, click "None")
-# cert2spc GL4JInst.cer GL4JInst.spc
+# cert2spc GL4JInst281.cer GL4JInst281.spc
rm -f *.class GL4JInst.cab
-//D/MSJAVASDK/BIN/jvc -nomessage -x- -cp:p .\;..\\CAPSAPI_CLASSES.ZIP *.java
+/MSJVM/BIN/jvc -nomessage -x- -cp:p .\;..\\CAPSAPI_CLASSES.ZIP *.java
. versionundef.sh
-//D/MSJAVASDK/Bin/cabarc N GL4JInst.cab *.class
+/MSJVM/Bin/cabarc N GL4JInst.cab *.class
# signcode -j javasign.dll -jp low -spc GL4JInst.spc -k GL4JInst GL4JInst.cab
-//D/MSJAVASDK/Bin/signcode -j javasign.dll -jp low -spc GL4JInst271.spc -v GL4JInst271.pvk GL4JInst.cab
+/MSJVM/Bin/signcode -j javasign.dll -jp low -spc GL4JInst281.spc -v GL4JInst281.pvk GL4JInst.cab
rm *.class
diff --git a/Installer/makeNetscapeSignedJar-Unix.sh b/Installer/makeNetscapeSignedJar-Unix.sh
index 0cad301..437e7b7 100755
--- a/Installer/makeNetscapeSignedJar-Unix.sh
+++ b/Installer/makeNetscapeSignedJar-Unix.sh
@@ -5,9 +5,9 @@
# The Netscape signing keys were created using the Netscape signtool
# utility, as follows:
# copy key3.db and cert7.db from one of the users directories.
-# signtool -d . -G GL4JInst271
+# signtool -d . -G GL4JInst281
# Enter the following information:
-# certificate common name: GL4JInst271
+# certificate common name: GL4JInst281
# organization: GL4Java Development Team
# organization unit: GL4JInst
# state or province: NRW
@@ -27,7 +27,7 @@ javac -classpath ".:../capsapi_classes.zip" *.java
. versionundef.sh
rm -rf META-INF
-signtool -d . -e .class -k GL4JInst271 -Z GL4JInst_ns.jar -c9 --norecurse .
+signtool -d . -e .class -k GL4JInst281 -Z GL4JInst_ns.jar -c9 --norecurse .
rm -rf META-INF
rm -f key3.db cert7.db *.class
diff --git a/Installer/makefile b/Installer/makefile
new file mode 100755
index 0000000..71cff1b
--- /dev/null
+++ b/Installer/makefile
@@ -0,0 +1,6 @@
+
+copy2jaulocal:
+ cp -a *.txt *.html \
+ ~/projects/jausoft-httpd/Files/Java/1.1.X/GL4Java/Installer
+ cp -a *.cab *.jar *.class *.crt *.policy \
+ ~/projects/jausoft-httpd/Files/Java/1.1.X/GL4Java/Installer
diff --git a/Installer/versiondef.sh b/Installer/versiondef.sh
index ca1295e..88ba6f3 100644
--- a/Installer/versiondef.sh
+++ b/Installer/versiondef.sh
@@ -1,5 +1,5 @@
MAJV=2
-MINV=7
+MINV=8
BUGV=1
RELV=0
diff --git a/Java2.txt b/Java2.txt
index 2617c01..40f5672 100644
--- a/Java2.txt
+++ b/Java2.txt
@@ -55,29 +55,33 @@ Be sure to have:
For Windows32: Java2-Plug-In, Java2, JRE (prefered)
- c:/windows/system/GL4JavaGljMSJDirect.dll
- c:/windows/system/GL4JavaJauGljJNI.dll
- c:/windows/system/GL4JavaJauGljJNI12.dll
- c:/windows/system/GL4JavaJauGljJNI13.dll
-
- or
-
./jre/bin/GL4JavaGljMSJDirect.dll
./jre/bin/GL4JavaJauGljJNI.dll
./jre/bin/GL4JavaJauGljJNI12.dll
./jre/bin/GL4JavaJauGljJNI13.dll
+ ./jre/bin/GL4JavaJauGljJNI14.dll
- For Unix: Java2-Plug-In, Java2, JRE (prefered)
+ or
- /usr/lib/libGL4JavaJauGljJNI.so*
- /usr/lib/libGL4JavaJauGljJNI12.so*
- /usr/lib/libGL4JavaJauGljJNI13.so*
+ c:/windows/system/GL4JavaGljMSJDirect.dll
+ c:/windows/system/GL4JavaJauGljJNI.dll
+ c:/windows/system/GL4JavaJauGljJNI12.dll
+ c:/windows/system/GL4JavaJauGljJNI13.dll
+ c:/windows/system/GL4JavaJauGljJNI14.dll
- or
+ For Unix: Java2-Plug-In, Java2, JRE (prefered)
./jre/lib/ Here are the GLF-Demos for GL4Java >= 2.7.2.0: Here are the GLF-Demos for GL4Java >= 2.8.1.0: To use the Java2 Plug-In (Java2, JRE, Plug-In 1.3), click here ! GLF Font Demo 1
: GLF Font Demo 1 (GLF DEMO)
- GLF Font Demo 2
-: GLF Font Demo 2 with rotation (GLF DEMO)
Here are the GLF Demos for GL4Java >= 2.7.2.0: & Java2 Plug-In 1.3
+ Here are the GLF Demos for GL4Java >= 2.8.1.0: & Java2 Plug-In 1.3
GLF Font Demo 1
: GLF Font Demo 1 (GLF DEMO)
- GLF Font Demo 2
-: GLF Font Demo 2 with rotation (GLF DEMO)
Here are the demos-II for GL4Java >= 2.6.0.0: Here are the demos-II for GL4Java >= 2.8.1.0: To use the Java2 Plug-In (Java2, JRE, Plug-In 1.3), click here ! gears
: gears at 400x400
+ gearsOffScreenDrawImage
+: gears at 400x400
GearsVS
: GearsVS at 400x400
Here are the demos-II for GL4Java >= 2.6.0.0: & Java2 Plug-In 1.3
+ Here are the demos-II for GL4Java >= 2.8.1.0: & Java2 Plug-In 1.3
gears
: gears at 400x400
+ gearsOffScreenDrawImage
+: gears at 400x400
GearsVS
: GearsVS at 400x400
Here are the demos-I for
-GL4Java >= 2.6.0.0: glDemosCvs
+ glLogoCvsApplet
- : The OpenGL Logo alone
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClearIndex )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glClearIndex ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClearColor )(GLclampf, GLclampf, GLclampf, GLclampf);
-
-/**
- * Original Function-Prototype :
- *
extern void glClearColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClear )(GLbitfield);
-
-/**
- * Original Function-Prototype :
- *
extern void glClear ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexMask )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorMask )(GLboolean, GLboolean, GLboolean, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMask ( GLboolean red , GLboolean green , GLboolean blue , GLboolean alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glAlphaFunc )(GLenum, GLclampf);
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFunc ( GLenum func , GLclampf ref ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBlendFunc )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFunc ( GLenum sfactor , GLenum dfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLogicOp )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glLogicOp ( GLenum opcode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCullFace )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glCullFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFrontFace )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glFrontFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPointSize )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPointSize ( GLfloat size ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLineWidth )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glLineWidth ( GLfloat width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLineStipple )(GLint, GLushort);
-
-/**
- * Original Function-Prototype :
- *
extern void glLineStipple ( GLint factor , GLushort pattern ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPolygonMode )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonMode ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPolygonOffset )(GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffset ( GLfloat factor , GLfloat units ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPolygonStipple )(const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonStipple ( const GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetPolygonStipple )(GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPolygonStipple ( GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEdgeFlag )(GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlag ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEdgeFlagv )(const GLboolean *);
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagv ( const GLboolean * flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glScissor )(GLint, GLint, GLsizei, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glScissor ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClipPlane )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glClipPlane ( GLenum plane , const GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetClipPlane )(GLenum, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetClipPlane ( GLenum plane , GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDrawBuffer )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReadBuffer )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glReadBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEnable )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glEnable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDisable )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glDisable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glIsEnabled )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsEnabled ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEnableClientState )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDisableClientState )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetBooleanv )(GLenum, GLboolean *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetBooleanv ( GLenum pname , GLboolean * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetDoublev )(GLenum, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDoublev ( GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetFloatv )(GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFloatv ( GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetIntegerv )(GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetIntegerv ( GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPushAttrib )(GLbitfield);
-
-/**
- * Original Function-Prototype :
- *
extern void glPushAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPopAttrib )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glPopAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPushClientAttrib )(GLbitfield);
-
-/**
- * Original Function-Prototype :
- *
extern void glPushClientAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPopClientAttrib )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glPopClientAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__glRenderMode )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern GLint glRenderMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLenum (CALLBACK * disp__glGetError )(void);
-
-/**
- * Original Function-Prototype :
- *
extern GLenum glGetError ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFinish )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glFinish ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFlush )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glFlush ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glHint )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glHint ( GLenum target , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClearDepth )(GLclampd);
-
-/**
- * Original Function-Prototype :
- *
extern void glClearDepth ( GLclampd depth ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDepthFunc )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthFunc ( GLenum func ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDepthMask )(GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthMask ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDepthRange )(GLclampd, GLclampd);
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthRange ( GLclampd near_val , GLclampd far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClearAccum )(GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glClearAccum ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glAccum )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glAccum ( GLenum op , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMatrixMode )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glOrtho )(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glOrtho ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFrustum )(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glFrustum ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glViewport )(GLint, GLint, GLsizei, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glViewport ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPushMatrix )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glPushMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPopMatrix )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glPopMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadIdentity )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentity ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadMatrixd )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadMatrixf )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultMatrixd )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultMatrixf )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRotated )(GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glRotated ( GLdouble angle , GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRotatef )(GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glRotatef ( GLfloat angle , GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glScaled )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glScaled ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glScalef )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glScalef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTranslated )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslated ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTranslatef )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslatef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glIsList )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeleteLists )(GLuint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteLists ( GLuint list , GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glGenLists )(GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenLists ( GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNewList )(GLuint, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glNewList ( GLuint list , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEndList )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glEndList ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCallList )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glCallList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCallLists )(GLsizei, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCallLists ( GLsizei n , GLenum type , const GLvoid * lists ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glListBase )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glListBase ( GLuint base ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBegin )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glBegin ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEnd )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glEnd ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex2d )(GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex2f )(GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex2i )(GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex2s )(GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex3d )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex3f )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex3i )(GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex3s )(GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex4d )(GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex4f )(GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex4i )(GLint, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex4s )(GLshort, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex2dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex2fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex2iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex2sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex3dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex3fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex3iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex3sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex4dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex4fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex4iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex4sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3b )(GLbyte, GLbyte, GLbyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3b ( GLbyte nx , GLbyte ny , GLbyte nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3d )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3d ( GLdouble nx , GLdouble ny , GLdouble nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3f )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3f ( GLfloat nx , GLfloat ny , GLfloat nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3i )(GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3i ( GLint nx , GLint ny , GLint nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3s )(GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3s ( GLshort nx , GLshort ny , GLshort nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3bv )(const GLbyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexd )(GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexd ( GLdouble c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexf )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexf ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexi )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexi ( GLint c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexs )(GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexs ( GLshort c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexub )(GLubyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexub ( GLubyte c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexdv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexdv ( const GLdouble * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexfv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexfv ( const GLfloat * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexiv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexiv ( const GLint * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexsv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexsv ( const GLshort * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexubv )(const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexubv ( const GLubyte * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3b )(GLbyte, GLbyte, GLbyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3b ( GLbyte red , GLbyte green , GLbyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3d )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3d ( GLdouble red , GLdouble green , GLdouble blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3f )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3f ( GLfloat red , GLfloat green , GLfloat blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3i )(GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3i ( GLint red , GLint green , GLint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3s )(GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3s ( GLshort red , GLshort green , GLshort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3ub )(GLubyte, GLubyte, GLubyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ub ( GLubyte red , GLubyte green , GLubyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3ui )(GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ui ( GLuint red , GLuint green , GLuint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3us )(GLushort, GLushort, GLushort);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3us ( GLushort red , GLushort green , GLushort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4b )(GLbyte, GLbyte, GLbyte, GLbyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4b ( GLbyte red , GLbyte green , GLbyte blue , GLbyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4d )(GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4d ( GLdouble red , GLdouble green , GLdouble blue , GLdouble alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4f )(GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4f ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4i )(GLint, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4i ( GLint red , GLint green , GLint blue , GLint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4s )(GLshort, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4s ( GLshort red , GLshort green , GLshort blue , GLshort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4ub )(GLubyte, GLubyte, GLubyte, GLubyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ub ( GLubyte red , GLubyte green , GLubyte blue , GLubyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4ui )(GLuint, GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ui ( GLuint red , GLuint green , GLuint blue , GLuint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4us )(GLushort, GLushort, GLushort, GLushort);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4us ( GLushort red , GLushort green , GLushort blue , GLushort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3bv )(const GLbyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3ubv )(const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3uiv )(const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3usv )(const GLushort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4bv )(const GLbyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4ubv )(const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4uiv )(const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4usv )(const GLushort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord1d )(GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1d ( GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord1f )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1f ( GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord1i )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1i ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord1s )(GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1s ( GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2d )(GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2d ( GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2f )(GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2f ( GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2i )(GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2i ( GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2s )(GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2s ( GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord3d )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3d ( GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord3f )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3f ( GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord3i )(GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3i ( GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord3s )(GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3s ( GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4d )(GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4d ( GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4f )(GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4f ( GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4i )(GLint, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4i ( GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4s )(GLshort, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4s ( GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord1dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord1fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord1iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord1sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord3dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord3fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord3iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord3sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos2d )(GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos2f )(GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos2i )(GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos2s )(GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos3d )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos3f )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos3i )(GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos3s )(GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos4d )(GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos4f )(GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos4i )(GLint, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos4s )(GLshort, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos2dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos2fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos2iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos2sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos3dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos3fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos3iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos3sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos4dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos4fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos4iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos4sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRectd )(GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glRectd ( GLdouble x1 , GLdouble y1 , GLdouble x2 , GLdouble y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRectf )(GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glRectf ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRecti )(GLint, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glRecti ( GLint x1 , GLint y1 , GLint x2 , GLint y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRects )(GLshort, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glRects ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRectdv )(const GLdouble *, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRectdv ( const GLdouble * v1 , const GLdouble * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRectfv )(const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRectfv ( const GLfloat * v1 , const GLfloat * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRectiv )(const GLint *, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRectiv ( const GLint * v1 , const GLint * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRectsv )(const GLshort *, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRectsv ( const GLshort * v1 , const GLshort * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexPointer )(GLint, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalPointer )(GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorPointer )(GLint, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexPointer )(GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoordPointer )(GLint, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEdgeFlagPointer )(GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointer ( GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetPointerv )(GLenum, GLvoid **);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointerv ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glArrayElement )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElement ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDrawArrays )(GLenum, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArrays ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDrawElements )(GLenum, GLsizei, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawElements ( GLenum mode , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glInterleavedArrays )(GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glInterleavedArrays ( GLenum format , GLsizei stride , const GLvoid * pointer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glShadeModel )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glShadeModel ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLightf )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glLightf ( GLenum light , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLighti )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glLighti ( GLenum light , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLightfv )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLightfv ( GLenum light , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLightiv )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLightiv ( GLenum light , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetLightfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightfv ( GLenum light , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetLightiv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightiv ( GLenum light , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLightModelf )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLightModeli )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeli ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLightModelfv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLightModeliv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeliv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMaterialf )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialf ( GLenum face , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMateriali )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMateriali ( GLenum face , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMaterialfv )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialfv ( GLenum face , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMaterialiv )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialiv ( GLenum face , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMaterialfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialfv ( GLenum face , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMaterialiv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialiv ( GLenum face , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorMaterial )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMaterial ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelZoom )(GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelZoom ( GLfloat xfactor , GLfloat yfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelStoref )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStoref ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelStorei )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStorei ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTransferf )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTransferi )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelMapfv )(GLenum, GLint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapfv ( GLenum map , GLint mapsize , const GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelMapuiv )(GLenum, GLint, const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapuiv ( GLenum map , GLint mapsize , const GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelMapusv )(GLenum, GLint, const GLushort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapusv ( GLenum map , GLint mapsize , const GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetPixelMapfv )(GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapfv ( GLenum map , GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetPixelMapuiv )(GLenum, GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapuiv ( GLenum map , GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetPixelMapusv )(GLenum, GLushort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapusv ( GLenum map , GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBitmap )(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glBitmap ( GLsizei width , GLsizei height , GLfloat xorig , GLfloat yorig , GLfloat xmove , GLfloat ymove , const GLubyte * bitmap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReadPixels )(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReadPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDrawPixels )(GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawPixels ( GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyPixels )(GLint, GLint, GLsizei, GLsizei, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glStencilFunc )(GLenum, GLint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilFunc ( GLenum func , GLint ref , GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glStencilMask )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glStencilOp )(GLenum, GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilOp ( GLenum fail , GLenum zfail , GLenum zpass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClearStencil )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glClearStencil ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexGend )(GLenum, GLenum, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGend ( GLenum coord , GLenum pname , GLdouble param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexGenf )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenf ( GLenum coord , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexGeni )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeni ( GLenum coord , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexGendv )(GLenum, GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGendv ( GLenum coord , GLenum pname , const GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexGenfv )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenfv ( GLenum coord , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexGeniv )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeniv ( GLenum coord , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexGendv )(GLenum, GLenum, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGendv ( GLenum coord , GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexGenfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGenfv ( GLenum coord , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexGeniv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGeniv ( GLenum coord , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexEnvf )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexEnvi )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvi ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexEnvfv )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexEnviv )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnviv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexEnvfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnvfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexEnviv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnviv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexParameterf )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexParameteri )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteri ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexParameterfv )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexParameteriv )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexParameterfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexParameteriv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexLevelParameterfv )(GLenum, GLint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameterfv ( GLenum target , GLint level , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexLevelParameteriv )(GLenum, GLint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameteriv ( GLenum target , GLint level , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexImage1D )(GLenum, GLint, GLint, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage1D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexImage2D )(GLenum, GLint, GLint, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage2D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLsizei height , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexImage )(GLenum, GLint, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexImage ( GLenum target , GLint level , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGenTextures )(GLsizei, GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTextures ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeleteTextures )(GLsizei, const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTextures ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBindTexture )(GLenum, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTexture ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPrioritizeTextures )(GLsizei, const GLuint *, const GLclampf *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTextures ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glAreTexturesResident )(GLsizei, const GLuint *, GLboolean *);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResident ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glIsTexture )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTexture ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexSubImage1D )(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexSubImage2D )(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexImage1D )(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexImage2D )(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexSubImage1D )(GLenum, GLint, GLint, GLint, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexSubImage2D )(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMap1d )(GLenum, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint stride , GLint order , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMap1f )(GLenum, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint stride , GLint order , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMap2d )(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint ustride , GLint uorder , GLdouble v1 , GLdouble v2 , GLint vstride , GLint vorder , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMap2f )(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint ustride , GLint uorder , GLfloat v1 , GLfloat v2 , GLint vstride , GLint vorder , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMapdv )(GLenum, GLenum, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapdv ( GLenum target , GLenum query , GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMapfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapfv ( GLenum target , GLenum query , GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMapiv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapiv ( GLenum target , GLenum query , GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalCoord1d )(GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1d ( GLdouble u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalCoord1f )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1f ( GLfloat u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalCoord1dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalCoord1fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalCoord2d )(GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2d ( GLdouble u , GLdouble v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalCoord2f )(GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2f ( GLfloat u , GLfloat v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalCoord2dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalCoord2fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMapGrid1d )(GLint, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1d ( GLint un , GLdouble u1 , GLdouble u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMapGrid1f )(GLint, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1f ( GLint un , GLfloat u1 , GLfloat u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMapGrid2d )(GLint, GLdouble, GLdouble, GLint, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2d ( GLint un , GLdouble u1 , GLdouble u2 , GLint vn , GLdouble v1 , GLdouble v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMapGrid2f )(GLint, GLfloat, GLfloat, GLint, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2f ( GLint un , GLfloat u1 , GLfloat u2 , GLint vn , GLfloat v1 , GLfloat v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalPoint1 )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint1 ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalPoint2 )(GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint2 ( GLint i , GLint j ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalMesh1 )(GLenum, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh1 ( GLenum mode , GLint i1 , GLint i2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalMesh2 )(GLenum, GLint, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh2 ( GLenum mode , GLint i1 , GLint i2 , GLint j1 , GLint j2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogf )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogi )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogfv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogiv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogiv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFeedbackBuffer )(GLsizei, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFeedbackBuffer ( GLsizei size , GLenum type , GLfloat * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPassThrough )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPassThrough ( GLfloat token ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSelectBuffer )(GLsizei, GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSelectBuffer ( GLsizei size , GLuint * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glInitNames )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glInitNames ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadName )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPushName )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glPushName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPopName )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glPopName ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDrawRangeElements )(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElements ( GLenum mode , GLuint start , GLuint end , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexImage3D )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3D ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexSubImage3D )(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexSubImage3D )(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorTable )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTable ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorSubTable )(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTable ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorTableParameteriv )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorTableParameterfv )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyColorSubTable )(GLenum, GLsizei, GLint, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTable ( GLenum target , GLsizei start , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyColorTable )(GLenum, GLenum, GLint, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTable ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetColorTable )(GLenum, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTable ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetColorTableParameterfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetColorTableParameteriv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBlendEquation )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquation ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBlendColor )(GLclampf, GLclampf, GLclampf, GLclampf);
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glHistogram )(GLenum, GLsizei, GLenum, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogram ( GLenum target , GLsizei width , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glResetHistogram )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogram ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetHistogram )(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogram ( GLenum target , GLboolean reset , GLenum format , GLenum type , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetHistogramParameterfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetHistogramParameteriv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMinmax )(GLenum, GLenum, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmax ( GLenum target , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glResetMinmax )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmax ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMinmax )(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmax ( GLenum target , GLboolean reset , GLenum format , GLenum types , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMinmaxParameterfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMinmaxParameteriv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionFilter1D )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1D ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionFilter2D )(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionParameterf )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterf ( GLenum target , GLenum pname , GLfloat params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionParameterfv )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionParameteri )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteri ( GLenum target , GLenum pname , GLint params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionParameteriv )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyConvolutionFilter1D )(GLenum, GLenum, GLint, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyConvolutionFilter2D )(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetConvolutionFilter )(GLenum, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilter ( GLenum target , GLenum format , GLenum type , GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetConvolutionParameterfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetConvolutionParameteriv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSeparableFilter2D )(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * row , const GLvoid * column ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetSeparableFilter )(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilter ( GLenum target , GLenum format , GLenum type , GLvoid * row , GLvoid * column , GLvoid * span ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glActiveTexture )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClientActiveTexture )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexImage1D )(GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexImage2D )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexImage3D )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexSubImage1D )(GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexSubImage2D )(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexSubImage3D )(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetCompressedTexImage )(GLenum, GLint, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImage ( GLenum target , GLint lod , GLvoid * img ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1d )(GLenum, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1d ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1dv )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1f )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1f ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1fv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1i )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1i ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1iv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1s )(GLenum, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1s ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1sv )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2d )(GLenum, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2d ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2dv )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2f )(GLenum, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2f ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2fv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2i )(GLenum, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2i ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2iv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2s )(GLenum, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2s ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2sv )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3d )(GLenum, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3d ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3dv )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3f )(GLenum, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3f ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3fv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3i )(GLenum, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3i ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3iv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3s )(GLenum, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3s ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3sv )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4d )(GLenum, GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4d ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4dv )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4f )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4f ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4fv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4i )(GLenum, GLint, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4i ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4iv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4s )(GLenum, GLshort, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4s ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4sv )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadTransposeMatrixd )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadTransposeMatrixf )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultTransposeMatrixd )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultTransposeMatrixf )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSampleCoverage )(GLclampf, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverage ( GLclampf value , GLboolean invert ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSamplePass )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePass ( GLenum pass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glActiveTextureARB )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClientActiveTextureARB )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1dARB )(GLenum, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dARB ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1dvARB )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1fARB )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fARB ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1fvARB )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1iARB )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iARB ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1ivARB )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1sARB )(GLenum, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sARB ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1svARB )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2dARB )(GLenum, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dARB ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2dvARB )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2fARB )(GLenum, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fARB ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2fvARB )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2iARB )(GLenum, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iARB ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2ivARB )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2sARB )(GLenum, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sARB ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2svARB )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3dARB )(GLenum, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3dvARB )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3fARB )(GLenum, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3fvARB )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3iARB )(GLenum, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iARB ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3ivARB )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3sARB )(GLenum, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sARB ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3svARB )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4dARB )(GLenum, GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4dvARB )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4fARB )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4fvARB )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4iARB )(GLenum, GLint, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iARB ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4ivARB )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4sARB )(GLenum, GLshort, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sARB ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4svARB )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBlendColorEXT )(GLclampf, GLclampf, GLclampf, GLclampf);
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColorEXT ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPolygonOffsetEXT )(GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffsetEXT ( GLfloat factor , GLfloat bias ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexImage3DEXT )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3DEXT ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexSubImage3DEXT )(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexSubImage3DEXT )(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3DEXT ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGenTexturesEXT )(GLsizei, GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTexturesEXT ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeleteTexturesEXT )(GLsizei, const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTexturesEXT ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBindTextureEXT )(GLenum, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTextureEXT ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPrioritizeTexturesEXT )(GLsizei, const GLuint *, const GLclampf *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTexturesEXT ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glAreTexturesResidentEXT )(GLsizei, const GLuint *, GLboolean *);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResidentEXT ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glIsTextureEXT )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTextureEXT ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexPointerEXT )(GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalPointerEXT )(GLenum, GLsizei, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorPointerEXT )(GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexPointerEXT )(GLenum, GLsizei, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoordPointerEXT )(GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEdgeFlagPointerEXT )(GLsizei, GLsizei, const GLboolean *);
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerEXT ( GLsizei stride , GLsizei count , const GLboolean * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetPointervEXT )(GLenum, GLvoid **);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointervEXT ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glArrayElementEXT )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElementEXT ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDrawArraysEXT )(GLenum, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArraysEXT ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBlendEquationEXT )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquationEXT ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPointParameterfEXT )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfEXT ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPointParameterfvEXT )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvEXT ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPointParameterfSGIS )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfSGIS ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPointParameterfvSGIS )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvSGIS ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorTableEXT )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableEXT ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorSubTableEXT )(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTableEXT ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetColorTableEXT )(GLenum, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableEXT ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetColorTableParameterfvEXT )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvEXT ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetColorTableParameterivEXT )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivEXT ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLockArraysEXT )(GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glLockArraysEXT ( GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glUnlockArraysEXT )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glUnlockArraysEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadTransposeMatrixfARB )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadTransposeMatrixdARB )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultTransposeMatrixfARB )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultTransposeMatrixdARB )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSampleCoverageARB )(GLclampf, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverageARB ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexImage3DARB )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexImage2DARB )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexImage1DARB )(GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1DARB ( GLenum , GLint , GLenum , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexSubImage3DARB )(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage3DARB ( GLenum , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexSubImage2DARB )(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2DARB ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexSubImage1DARB )(GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1DARB ( GLenum , GLint , GLint , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetCompressedTexImageARB )(GLenum, GLint, void *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImageARB ( GLenum , GLint , void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWeightbvARB )(GLint, const GLbyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightbvARB ( GLint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWeightsvARB )(GLint, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightsvARB ( GLint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWeightivARB )(GLint, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightivARB ( GLint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWeightfvARB )(GLint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightfvARB ( GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWeightdvARB )(GLint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightdvARB ( GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWeightubvARB )(GLint, const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWeightusvARB )(GLint, const GLushort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWeightuivARB )(GLint, const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWeightPointerARB )(GLint, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexBlendARB )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCurrentPaletteMatrixARB )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glCurrentPaletteMatrixARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMatrixIndexubvARB )(GLint, const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMatrixIndexusvARB )(GLint, const GLushort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMatrixIndexuivARB )(GLint, const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMatrixIndexPointerARB )(GLint, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexFilterFuncSGIS )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexFilterFuncSGIS ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexFilterFuncSGIS )(GLenum, GLenum, GLsizei, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexFilterFuncSGIS ( GLenum , GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexSubImage1DEXT )(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1DEXT ( GLenum , GLint , GLint , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexSubImage2DEXT )(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexImage1DEXT )(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexImage2DEXT )(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexSubImage1DEXT )(GLenum, GLint, GLint, GLint, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1DEXT ( GLenum , GLint , GLint , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexSubImage2DEXT )(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetHistogramEXT )(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetHistogramParameterfvEXT )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetHistogramParameterivEXT )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMinmaxEXT )(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMinmaxParameterfvEXT )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMinmaxParameterivEXT )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glHistogramEXT )(GLenum, GLsizei, GLenum, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogramEXT ( GLenum , GLsizei , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMinmaxEXT )(GLenum, GLenum, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmaxEXT ( GLenum , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glResetHistogramEXT )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogramEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glResetMinmaxEXT )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmaxEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionFilter1DEXT )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1DEXT ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionFilter2DEXT )(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionParameterfEXT )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionParameterfvEXT )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionParameteriEXT )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionParameterivEXT )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyConvolutionFilter1DEXT )(GLenum, GLenum, GLint, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1DEXT ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyConvolutionFilter2DEXT )(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2DEXT ( GLenum , GLenum , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetConvolutionFilterEXT )(GLenum, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilterEXT ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetConvolutionParameterfvEXT )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetConvolutionParameterivEXT )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetSeparableFilterEXT )(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilterEXT ( GLenum , GLenum , GLenum , GLvoid * , GLvoid * , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSeparableFilter2DEXT )(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorTableSGI )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableSGI ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorTableParameterfvSGI )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfvSGI ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorTableParameterivSGI )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterivSGI ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyColorTableSGI )(GLenum, GLenum, GLint, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTableSGI ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetColorTableSGI )(GLenum, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableSGI ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetColorTableParameterfvSGI )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvSGI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetColorTableParameterivSGI )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivSGI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTexGenSGIX )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenSGIX ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTexGenParameteriSGIS )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameteriSGIS ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTexGenParameterivSGIS )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterivSGIS ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTexGenParameterfSGIS )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfSGIS ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTexGenParameterfvSGIS )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfvSGIS ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetPixelTexGenParameterivSGIS )(GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterivSGIS ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetPixelTexGenParameterfvSGIS )(GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterfvSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexImage4DSGIS )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage4DSGIS ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLsizei , GLint , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexSubImage4DSGIS )(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage4DSGIS ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDetailTexFuncSGIS )(GLenum, GLsizei, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDetailTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetDetailTexFuncSGIS )(GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDetailTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSharpenTexFuncSGIS )(GLenum, GLsizei, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSharpenTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetSharpenTexFuncSGIS )(GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSharpenTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSampleMaskSGIS )(GLclampf, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskSGIS ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSamplePatternSGIS )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternSGIS ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSpriteParameterfSGIX )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSpriteParameterfvSGIX )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSpriteParameteriSGIX )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameteriSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSpriteParameterivSGIX )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPointParameterfARB )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfARB ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPointParameterfvARB )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvARB ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__glGetInstrumentsSGIX )(void);
-
-/**
- * Original Function-Prototype :
- *
extern GLint glGetInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glInstrumentsBufferSGIX )(GLsizei, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glInstrumentsBufferSGIX ( GLsizei , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__glPollInstrumentsSGIX )(GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollInstrumentsSGIX ( GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReadInstrumentsSGIX )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glReadInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glStartInstrumentsSGIX )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glStartInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glStopInstrumentsSGIX )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glStopInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFrameZoomSGIX )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glFrameZoomSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTagSampleBufferSGIX )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glTagSampleBufferSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeformationMap3dSGIX )(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3dSGIX ( GLenum , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeformationMap3fSGIX )(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3fSGIX ( GLenum , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeformSGIX )(GLbitfield);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadIdentityDeformationMapSGIX )(GLbitfield);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentityDeformationMapSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReferencePlaneSGIX )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReferencePlaneSGIX ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFlushRasterSGIX )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushRasterSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogFuncSGIS )(GLsizei, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogFuncSGIS ( GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetFogFuncSGIS )(GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFogFuncSGIS ( GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glImageTransformParameteriHP )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameteriHP ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glImageTransformParameterfHP )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfHP ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glImageTransformParameterivHP )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterivHP ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glImageTransformParameterfvHP )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfvHP ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetImageTransformParameterivHP )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterivHP ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetImageTransformParameterfvHP )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterfvHP ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyColorSubTableEXT )(GLenum, GLsizei, GLint, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTableEXT ( GLenum , GLsizei , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glHintPGI )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glHintPGI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetListParameterfvSGIX )(GLuint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterfvSGIX ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetListParameterivSGIX )(GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterivSGIX ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glListParameterfSGIX )(GLuint, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfSGIX ( GLuint , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glListParameterfvSGIX )(GLuint, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfvSGIX ( GLuint , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glListParameteriSGIX )(GLuint, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameteriSGIX ( GLuint , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glListParameterivSGIX )(GLuint, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterivSGIX ( GLuint , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexMaterialEXT )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexFuncEXT )(GLenum, GLclampf);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexFuncEXT ( GLenum , GLclampf ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCullParameterdvEXT )(GLenum, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterdvEXT ( GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCullParameterfvEXT )(GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterfvEXT ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentColorMaterialSGIX )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentColorMaterialSGIX ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentLightfSGIX )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentLightfvSGIX )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentLightiSGIX )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentLightivSGIX )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentLightModelfSGIX )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentLightModelfvSGIX )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentLightModeliSGIX )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModeliSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentLightModelivSGIX )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentMaterialfSGIX )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentMaterialfvSGIX )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentMaterialiSGIX )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentMaterialivSGIX )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetFragmentLightfvSGIX )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetFragmentLightivSGIX )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetFragmentMaterialfvSGIX )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetFragmentMaterialivSGIX )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLightEnviSGIX )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glLightEnviSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDrawRangeElementsEXT )(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElementsEXT ( GLenum , GLuint , GLuint , GLsizei , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glApplyTextureEXT )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glApplyTextureEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTextureLightEXT )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureLightEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTextureMaterialEXT )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glAsyncMarkerSGIX )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__glFinishAsyncSGIX )(GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint glFinishAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__glPollAsyncSGIX )(GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glGenAsyncMarkersSGIX )(GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenAsyncMarkersSGIX ( GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeleteAsyncMarkersSGIX )(GLuint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteAsyncMarkersSGIX ( GLuint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glIsAsyncMarkerSGIX )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexPointervINTEL )(GLint, GLenum, const GLvoid **);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalPointervINTEL )(GLenum, const GLvoid **);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointervINTEL ( GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorPointervINTEL )(GLint, GLenum, const GLvoid **);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoordPointervINTEL )(GLint, GLenum, const GLvoid **);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTransformParameteriEXT )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTransformParameterfEXT )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTransformParameterivEXT )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTransformParameterfvEXT )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3bEXT )(GLbyte, GLbyte, GLbyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3bvEXT )(const GLbyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3dEXT )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3dvEXT )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3fEXT )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3fvEXT )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3iEXT )(GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3ivEXT )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3sEXT )(GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3svEXT )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3ubEXT )(GLubyte, GLubyte, GLubyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubEXT ( GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3ubvEXT )(const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubvEXT ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3uiEXT )(GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uiEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3uivEXT )(const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uivEXT ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3usEXT )(GLushort, GLushort, GLushort);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usEXT ( GLushort , GLushort , GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3usvEXT )(const GLushort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usvEXT ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColorPointerEXT )(GLint, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerEXT ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTextureNormalEXT )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureNormalEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiDrawArraysEXT )(GLenum, GLint *, GLsizei *, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawArraysEXT ( GLenum , GLint * , GLsizei * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiDrawElementsEXT )(GLenum, const GLsizei *, GLenum, const GLvoid **, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawElementsEXT ( GLenum , const GLsizei * , GLenum , const GLvoid * * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogCoordfEXT )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogCoordfvEXT )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogCoorddEXT )(GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddEXT ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogCoorddvEXT )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogCoordPointerEXT )(GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3bEXT )(GLbyte, GLbyte, GLbyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3bvEXT )(const GLbyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3dEXT )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3dvEXT )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3fEXT )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3fvEXT )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3iEXT )(GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3ivEXT )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3sEXT )(GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3svEXT )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3bEXT )(GLbyte, GLbyte, GLbyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3bvEXT )(const GLbyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3dEXT )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3dvEXT )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3fEXT )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3fvEXT )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3iEXT )(GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3ivEXT )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3sEXT )(GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3svEXT )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangentPointerEXT )(GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangentPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormalPointerEXT )(GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormalPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFinishTextureSUNX )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishTextureSUNX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGlobalAlphaFactorbSUN )(GLbyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorbSUN ( GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGlobalAlphaFactorsSUN )(GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorsSUN ( GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGlobalAlphaFactoriSUN )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoriSUN ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGlobalAlphaFactorfSUN )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorfSUN ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGlobalAlphaFactordSUN )(GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactordSUN ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGlobalAlphaFactorubSUN )(GLubyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGlobalAlphaFactorusSUN )(GLushort);
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGlobalAlphaFactoruiSUN )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoruiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiSUN )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeusSUN )(GLushort);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeubSUN )(GLubyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuivSUN )(const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuivSUN ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeusvSUN )(const GLushort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusvSUN ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeubvSUN )(const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubvSUN ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodePointerSUN )(GLenum, GLsizei, const GLvoid **);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodePointerSUN ( GLenum , GLsizei , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4ubVertex2fSUN )(GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4ubVertex2fvSUN )(const GLubyte *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4ubVertex3fSUN )(GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4ubVertex3fvSUN )(const GLubyte *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3fVertex3fvSUN )(const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3fVertex3fvSUN )(const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4fNormal3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4fNormal3fVertex3fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fVertex3fvSUN )(const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4fVertex4fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4fVertex4fvSUN )(const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fColor4ubVertex3fSUN )(GLfloat, GLfloat, GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fSUN ( GLfloat , GLfloat , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fColor4ubVertex3fvSUN )(const GLfloat *, const GLubyte *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fvSUN ( const GLfloat * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fColor3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fColor3fVertex3fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fNormal3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fNormal3fVertex3fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fColor4fNormal3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fColor4fNormal3fVertex3fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4fColor4fNormal3fVertex4fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4fColor4fNormal3fVertex4fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiVertex3fvSUN )(const GLenum *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fvSUN ( const GLenum * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiColor4ubVertex3fSUN )(GLenum, GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fSUN ( GLenum , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiColor4ubVertex3fvSUN )(const GLenum *, const GLubyte *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fvSUN ( const GLenum * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiColor3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiColor3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiNormal3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiNormal3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiColor4fNormal3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiColor4fNormal3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiTexCoord2fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiTexCoord2fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBlendFuncSeparateEXT )(GLenum, GLenum, GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateEXT ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBlendFuncSeparateINGR )(GLenum, GLenum, GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateINGR ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexWeightfEXT )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexWeightfvEXT )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexWeightPointerEXT )(GLsizei, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightPointerEXT ( GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFlushVertexArrayRangeNV )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushVertexArrayRangeNV ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexArrayRangeNV )(GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexArrayRangeNV ( GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCombinerParameterfvNV )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfvNV ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCombinerParameterfNV )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfNV ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCombinerParameterivNV )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterivNV ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCombinerParameteriNV )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameteriNV ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCombinerInputNV )(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerInputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCombinerOutputNV )(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLboolean, GLboolean, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerOutputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFinalCombinerInputNV )(GLenum, GLenum, GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glFinalCombinerInputNV ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetCombinerInputParameterfvNV )(GLenum, GLenum, GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterfvNV ( GLenum , GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetCombinerInputParameterivNV )(GLenum, GLenum, GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterivNV ( GLenum , GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetCombinerOutputParameterfvNV )(GLenum, GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterfvNV ( GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetCombinerOutputParameterivNV )(GLenum, GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterivNV ( GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetFinalCombinerInputParameterfvNV )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetFinalCombinerInputParameterivNV )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiModeDrawArraysIBM )(GLenum, const GLint *, const GLsizei *, GLsizei, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawArraysIBM ( GLenum , const GLint * , const GLsizei * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiModeDrawElementsIBM )(const GLenum *, const GLsizei *, GLenum, const GLvoid **, GLsizei, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawElementsIBM ( const GLenum * , const GLsizei * , GLenum , const GLvoid * * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorPointerListIBM )(GLint, GLenum, GLint, const GLvoid **, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColorPointerListIBM )(GLint, GLenum, GLint, const GLvoid **, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEdgeFlagPointerListIBM )(GLint, const GLboolean **, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerListIBM ( GLint , const GLboolean * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogCoordPointerListIBM )(GLenum, GLint, const GLvoid **, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexPointerListIBM )(GLenum, GLint, const GLvoid **, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalPointerListIBM )(GLenum, GLint, const GLvoid **, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoordPointerListIBM )(GLint, GLenum, GLint, const GLvoid **, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexPointerListIBM )(GLint, GLenum, GLint, const GLvoid **, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTbufferMask3DFX )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTbufferMask3DFX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSampleMaskEXT )(GLclampf, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskEXT ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSamplePatternEXT )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTextureColorMaskSGIS )(GLboolean, GLboolean, GLboolean, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureColorMaskSGIS ( GLboolean , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIglooInterfaceSGIX )(GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glIglooInterfaceSGIX ( GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGenFencesNV )(GLsizei, GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGenFencesNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeleteFencesNV )(GLsizei, const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFencesNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSetFenceNV )(GLuint, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFenceNV ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glTestFenceNV )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glTestFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFinishFenceNV )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glIsFenceNV )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetFenceivNV )(GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFenceivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMapControlPointsNV )(GLenum, GLuint, GLenum, GLsizei, GLsizei, GLint, GLint, GLboolean, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLint , GLint , GLboolean , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMapParameterivNV )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterivNV ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMapParameterfvNV )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMapControlPointsNV )(GLenum, GLuint, GLenum, GLsizei, GLsizei, GLboolean, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLboolean , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMapParameterivNV )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMapParameterfvNV )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMapAttribParameterivNV )(GLenum, GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMapAttribParameterfvNV )(GLenum, GLuint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalMapsNV )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMapsNV ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCombinerStageParameterfvNV )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerStageParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetCombinerStageParameterfvNV )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerStageParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBindProgramNV )(GLenum, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glBindProgramNV ( GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeleteProgramsNV )(GLsizei, const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glExecuteProgramNV )(GLenum, GLuint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glExecuteProgramNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGenProgramsNV )(GLsizei, GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGenProgramsNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glAreProgramsResidentNV )(GLsizei, const GLuint *, GLboolean *);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreProgramsResidentNV ( GLsizei , const GLuint * , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRequestResidentProgramsNV )(GLsizei, const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRequestResidentProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetProgramParameterfvNV )(GLenum, GLuint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetProgramParameterdvNV )(GLenum, GLuint, GLenum, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterdvNV ( GLenum , GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetProgramivNV )(GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetProgramStringNV )(GLuint, GLenum, GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramStringNV ( GLuint , GLenum , GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTrackMatrixivNV )(GLenum, GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTrackMatrixivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVertexAttribdvNV )(GLuint, GLenum, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribdvNV ( GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVertexAttribfvNV )(GLuint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribfvNV ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVertexAttribivNV )(GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVertexAttribPointervNV )(GLuint, GLenum, GLvoid **);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribPointervNV ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glIsProgramNV )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsProgramNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadProgramNV )(GLenum, GLuint, GLsizei, const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadProgramNV ( GLenum , GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glProgramParameter4fNV )(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fNV ( GLenum , GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glProgramParameter4dNV )(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dNV ( GLenum , GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glProgramParameter4dvNV )(GLenum, GLuint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dvNV ( GLenum , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glProgramParameter4fvNV )(GLenum, GLuint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fvNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glProgramParameters4dvNV )(GLenum, GLuint, GLuint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4dvNV ( GLenum , GLuint , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glProgramParameters4fvNV )(GLenum, GLuint, GLuint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4fvNV ( GLenum , GLuint , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTrackMatrixNV )(GLenum, GLuint, GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glTrackMatrixNV ( GLenum , GLuint , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribPointerNV )(GLuint, GLint, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribPointerNV ( GLuint , GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib1sNV )(GLuint, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1sNV ( GLuint , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib1fNV )(GLuint, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fNV ( GLuint , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib1dNV )(GLuint, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dNV ( GLuint , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib2sNV )(GLuint, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2sNV ( GLuint , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib2fNV )(GLuint, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fNV ( GLuint , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib2dNV )(GLuint, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dNV ( GLuint , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib3sNV )(GLuint, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3sNV ( GLuint , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib3fNV )(GLuint, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fNV ( GLuint , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib3dNV )(GLuint, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dNV ( GLuint , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib4sNV )(GLuint, GLshort, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4sNV ( GLuint , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib4fNV )(GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fNV ( GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib4dNV )(GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dNV ( GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib4ubNV )(GLuint, GLubyte, GLubyte, GLubyte, GLubyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubNV ( GLuint , GLubyte , GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib1svNV )(GLuint, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib1fvNV )(GLuint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib1dvNV )(GLuint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib2svNV )(GLuint, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib2fvNV )(GLuint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib2dvNV )(GLuint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib3svNV )(GLuint, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib3fvNV )(GLuint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib3dvNV )(GLuint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib4svNV )(GLuint, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib4fvNV )(GLuint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib4dvNV )(GLuint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib4ubvNV )(GLuint, const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubvNV ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs1svNV )(GLuint, GLsizei, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs1fvNV )(GLuint, GLsizei, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs1dvNV )(GLuint, GLsizei, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs2svNV )(GLuint, GLsizei, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs2fvNV )(GLuint, GLsizei, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs2dvNV )(GLuint, GLsizei, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs3svNV )(GLuint, GLsizei, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs3fvNV )(GLuint, GLsizei, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs3dvNV )(GLuint, GLsizei, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs4svNV )(GLuint, GLsizei, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs4fvNV )(GLuint, GLsizei, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs4dvNV )(GLuint, GLsizei, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs4ubvNV )(GLuint, GLsizei, const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4ubvNV ( GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexBumpParameterivATI )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterivATI ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexBumpParameterfvATI )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterfvATI ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexBumpParameterivATI )(GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterivATI ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexBumpParameterfvATI )(GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterfvATI ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glGenFragmentShadersATI )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenFragmentShadersATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBindFragmentShaderATI )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glBindFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeleteFragmentShaderATI )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBeginFragmentShaderATI )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEndFragmentShaderATI )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glEndFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPassTexCoordATI )(GLuint, GLuint, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glPassTexCoordATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSampleMapATI )(GLuint, GLuint, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMapATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorFragmentOp1ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorFragmentOp2ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorFragmentOp3ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glAlphaFragmentOp1ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glAlphaFragmentOp2ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glAlphaFragmentOp3ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSetFragmentShaderConstantATI )(GLuint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFragmentShaderConstantATI ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPNTrianglesiATI )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesiATI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPNTrianglesfATI )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesfATI ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glNewObjectBufferATI )(GLsizei, const GLvoid *, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glNewObjectBufferATI ( GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glIsObjectBufferATI )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glUpdateObjectBufferATI )(GLuint, GLuint, GLsizei, const GLvoid *, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glUpdateObjectBufferATI ( GLuint , GLuint , GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetObjectBufferfvATI )(GLuint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetObjectBufferivATI )(GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeleteObjectBufferATI )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glArrayObjectATI )(GLenum, GLint, GLenum, GLsizei, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayObjectATI ( GLenum , GLint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetArrayObjectfvATI )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectfvATI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetArrayObjectivATI )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectivATI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantArrayObjectATI )(GLuint, GLenum, GLsizei, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantArrayObjectATI ( GLuint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVariantArrayObjectfvATI )(GLuint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVariantArrayObjectivATI )(GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBeginVertexShaderEXT )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEndVertexShaderEXT )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glEndVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBindVertexShaderEXT )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glBindVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glGenVertexShadersEXT )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenVertexShadersEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeleteVertexShaderEXT )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glShaderOp1EXT )(GLenum, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp1EXT ( GLenum , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glShaderOp2EXT )(GLenum, GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp2EXT ( GLenum , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glShaderOp3EXT )(GLenum, GLuint, GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp3EXT ( GLenum , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSwizzleEXT )(GLuint, GLuint, GLenum, GLenum, GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glSwizzleEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWriteMaskEXT )(GLuint, GLuint, GLenum, GLenum, GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glWriteMaskEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glInsertComponentEXT )(GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glInsertComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glExtractComponentEXT )(GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glExtractComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glGenSymbolsEXT )(GLenum, GLenum, GLenum, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenSymbolsEXT ( GLenum , GLenum , GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSetInvariantEXT )(GLuint, GLenum, const void *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSetInvariantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSetLocalConstantEXT )(GLuint, GLenum, const void *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSetLocalConstantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantbvEXT )(GLuint, const GLbyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantbvEXT ( GLuint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantsvEXT )(GLuint, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantsvEXT ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantivEXT )(GLuint, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantivEXT ( GLuint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantfvEXT )(GLuint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantfvEXT ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantdvEXT )(GLuint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantdvEXT ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantubvEXT )(GLuint, const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantubvEXT ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantusvEXT )(GLuint, const GLushort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantusvEXT ( GLuint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantuivEXT )(GLuint, const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantuivEXT ( GLuint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantPointerEXT )(GLuint, GLenum, GLuint, const void *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantPointerEXT ( GLuint , GLenum , GLuint , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEnableVariantClientStateEXT )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDisableVariantClientStateEXT )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glBindLightParameterEXT )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindLightParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glBindMaterialParameterEXT )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindMaterialParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glBindTexGenParameterEXT )(GLenum, GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTexGenParameterEXT ( GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glBindTextureUnitParameterEXT )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTextureUnitParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glBindParameterEXT )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindParameterEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glIsVariantEnabledEXT )(GLuint, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsVariantEnabledEXT ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVariantBooleanvEXT )(GLuint, GLenum, GLboolean *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVariantIntegervEXT )(GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVariantFloatvEXT )(GLuint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVariantPointervEXT )(GLuint, GLenum, GLvoid **);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantPointervEXT ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetInvariantBooleanvEXT )(GLuint, GLenum, GLboolean *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetInvariantIntegervEXT )(GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetInvariantFloatvEXT )(GLuint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetLocalConstantBooleanvEXT )(GLuint, GLenum, GLboolean *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetLocalConstantIntegervEXT )(GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetLocalConstantFloatvEXT )(GLuint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream1s )(GLenum, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1s ( GLenum , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream1sv )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream1i )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1i ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream1iv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream1f )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1f ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream1fv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream1d )(GLenum, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1d ( GLenum , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream1dv )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream2s )(GLenum, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2s ( GLenum , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream2sv )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream2i )(GLenum, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2i ( GLenum , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream2iv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream2f )(GLenum, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2f ( GLenum , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream2fv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream2d )(GLenum, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2d ( GLenum , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream2dv )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream3s )(GLenum, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream3sv )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream3i )(GLenum, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream3iv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream3f )(GLenum, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream3fv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream3d )(GLenum, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream3dv )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream4s )(GLenum, GLshort, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4s ( GLenum , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream4sv )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream4i )(GLenum, GLint, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4i ( GLenum , GLint , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream4iv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream4f )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4f ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream4fv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream4d )(GLenum, GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4d ( GLenum , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream4dv )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3b )(GLenum, GLbyte, GLbyte, GLbyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3b ( GLenum , GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3bv )(GLenum, const GLbyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3bv ( GLenum , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3s )(GLenum, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3sv )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3i )(GLenum, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3iv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3f )(GLenum, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3fv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3d )(GLenum, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3dv )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClientActiveVertexStream )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveVertexStream ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexBlendEnvi )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvi ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexBlendEnvf )(GLenum, GLfloat);
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/C2J/gl-disp-var-auto.hc b/C2J/gl-disp-var-auto.hc
index 421ffc5..2a79409 100644
--- a/C2J/gl-disp-var-auto.hc
+++ b/C2J/gl-disp-var-auto.hc
@@ -4,1967 +4,1967 @@
* Reading from file: gl-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFuncJauJNI !
*/
-
+
void (CALLBACK * disp__glClearIndex )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glClearColor )(GLclampf, GLclampf, GLclampf, GLclampf) = NULL;
-
+
void (CALLBACK * disp__glClear )(GLbitfield) = NULL;
-
+
void (CALLBACK * disp__glIndexMask )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glColorMask )(GLboolean, GLboolean, GLboolean, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glAlphaFunc )(GLenum, GLclampf) = NULL;
-
+
void (CALLBACK * disp__glBlendFunc )(GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glLogicOp )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glCullFace )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glFrontFace )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glPointSize )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glLineWidth )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glLineStipple )(GLint, GLushort) = NULL;
-
+
void (CALLBACK * disp__glPolygonMode )(GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glPolygonOffset )(GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glPolygonStipple )(const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glGetPolygonStipple )(GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glEdgeFlag )(GLboolean) = NULL;
-
+
void (CALLBACK * disp__glEdgeFlagv )(const GLboolean *) = NULL;
-
+
void (CALLBACK * disp__glScissor )(GLint, GLint, GLsizei, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glClipPlane )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glGetClipPlane )(GLenum, GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glDrawBuffer )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glReadBuffer )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glEnable )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glDisable )(GLenum) = NULL;
-
+
GLboolean (CALLBACK * disp__glIsEnabled )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glEnableClientState )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glDisableClientState )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glGetBooleanv )(GLenum, GLboolean *) = NULL;
-
+
void (CALLBACK * disp__glGetDoublev )(GLenum, GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glGetFloatv )(GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetIntegerv )(GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glPushAttrib )(GLbitfield) = NULL;
-
+
void (CALLBACK * disp__glPopAttrib )(void) = NULL;
-
+
void (CALLBACK * disp__glPushClientAttrib )(GLbitfield) = NULL;
-
+
void (CALLBACK * disp__glPopClientAttrib )(void) = NULL;
-
+
GLint (CALLBACK * disp__glRenderMode )(GLenum) = NULL;
-
+
GLenum (CALLBACK * disp__glGetError )(void) = NULL;
-
+
void (CALLBACK * disp__glFinish )(void) = NULL;
-
+
void (CALLBACK * disp__glFlush )(void) = NULL;
-
+
void (CALLBACK * disp__glHint )(GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glClearDepth )(GLclampd) = NULL;
-
+
void (CALLBACK * disp__glDepthFunc )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glDepthMask )(GLboolean) = NULL;
-
+
void (CALLBACK * disp__glDepthRange )(GLclampd, GLclampd) = NULL;
-
+
void (CALLBACK * disp__glClearAccum )(GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glAccum )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMatrixMode )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glOrtho )(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glFrustum )(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glViewport )(GLint, GLint, GLsizei, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glPushMatrix )(void) = NULL;
-
+
void (CALLBACK * disp__glPopMatrix )(void) = NULL;
-
+
void (CALLBACK * disp__glLoadIdentity )(void) = NULL;
-
+
void (CALLBACK * disp__glLoadMatrixd )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glLoadMatrixf )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultMatrixd )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultMatrixf )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glRotated )(GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glRotatef )(GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glScaled )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glScalef )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTranslated )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glTranslatef )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
GLboolean (CALLBACK * disp__glIsList )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glDeleteLists )(GLuint, GLsizei) = NULL;
-
+
GLuint (CALLBACK * disp__glGenLists )(GLsizei) = NULL;
-
+
void (CALLBACK * disp__glNewList )(GLuint, GLenum) = NULL;
-
+
void (CALLBACK * disp__glEndList )(void) = NULL;
-
+
void (CALLBACK * disp__glCallList )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glCallLists )(GLsizei, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glListBase )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glBegin )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glEnd )(void) = NULL;
-
+
void (CALLBACK * disp__glVertex2d )(GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertex2f )(GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertex2i )(GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glVertex2s )(GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertex3d )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertex3f )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertex3i )(GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glVertex3s )(GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertex4d )(GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertex4f )(GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertex4i )(GLint, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glVertex4s )(GLshort, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertex2dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertex2fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertex2iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glVertex2sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertex3dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertex3fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertex3iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glVertex3sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertex4dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertex4fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertex4iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glVertex4sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glNormal3b )(GLbyte, GLbyte, GLbyte) = NULL;
-
+
void (CALLBACK * disp__glNormal3d )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glNormal3f )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glNormal3i )(GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glNormal3s )(GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glNormal3bv )(const GLbyte *) = NULL;
-
+
void (CALLBACK * disp__glNormal3dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glNormal3fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glNormal3iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glNormal3sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glIndexd )(GLdouble) = NULL;
-
+
void (CALLBACK * disp__glIndexf )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glIndexi )(GLint) = NULL;
-
+
void (CALLBACK * disp__glIndexs )(GLshort) = NULL;
-
+
void (CALLBACK * disp__glIndexub )(GLubyte) = NULL;
-
+
void (CALLBACK * disp__glIndexdv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glIndexfv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glIndexiv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glIndexsv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glIndexubv )(const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glColor3b )(GLbyte, GLbyte, GLbyte) = NULL;
-
+
void (CALLBACK * disp__glColor3d )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glColor3f )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glColor3i )(GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glColor3s )(GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glColor3ub )(GLubyte, GLubyte, GLubyte) = NULL;
-
+
void (CALLBACK * disp__glColor3ui )(GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glColor3us )(GLushort, GLushort, GLushort) = NULL;
-
+
void (CALLBACK * disp__glColor4b )(GLbyte, GLbyte, GLbyte, GLbyte) = NULL;
-
+
void (CALLBACK * disp__glColor4d )(GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glColor4f )(GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glColor4i )(GLint, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glColor4s )(GLshort, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glColor4ub )(GLubyte, GLubyte, GLubyte, GLubyte) = NULL;
-
+
void (CALLBACK * disp__glColor4ui )(GLuint, GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glColor4us )(GLushort, GLushort, GLushort, GLushort) = NULL;
-
+
void (CALLBACK * disp__glColor3bv )(const GLbyte *) = NULL;
-
+
void (CALLBACK * disp__glColor3dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glColor3fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glColor3iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glColor3sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glColor3ubv )(const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glColor3uiv )(const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glColor3usv )(const GLushort *) = NULL;
-
+
void (CALLBACK * disp__glColor4bv )(const GLbyte *) = NULL;
-
+
void (CALLBACK * disp__glColor4dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glColor4fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glColor4iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glColor4sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glColor4ubv )(const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glColor4uiv )(const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glColor4usv )(const GLushort *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord1d )(GLdouble) = NULL;
-
+
void (CALLBACK * disp__glTexCoord1f )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord1i )(GLint) = NULL;
-
+
void (CALLBACK * disp__glTexCoord1s )(GLshort) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2d )(GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2f )(GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2i )(GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2s )(GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glTexCoord3d )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glTexCoord3f )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord3i )(GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glTexCoord3s )(GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4d )(GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4f )(GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4i )(GLint, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4s )(GLshort, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glTexCoord1dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord1fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord1iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord1sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord3dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord3fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord3iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord3sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos2d )(GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glRasterPos2f )(GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glRasterPos2i )(GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glRasterPos2s )(GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glRasterPos3d )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glRasterPos3f )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glRasterPos3i )(GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glRasterPos3s )(GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glRasterPos4d )(GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glRasterPos4f )(GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glRasterPos4i )(GLint, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glRasterPos4s )(GLshort, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glRasterPos2dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos2fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos2iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos2sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos3dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos3fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos3iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos3sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos4dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos4fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos4iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos4sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glRectd )(GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glRectf )(GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glRecti )(GLint, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glRects )(GLshort, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glRectdv )(const GLdouble *, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glRectfv )(const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glRectiv )(const GLint *, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glRectsv )(const GLshort *, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexPointer )(GLint, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glNormalPointer )(GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glColorPointer )(GLint, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glIndexPointer )(GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTexCoordPointer )(GLint, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glEdgeFlagPointer )(GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetPointerv )(GLenum, GLvoid **) = NULL;
-
+
void (CALLBACK * disp__glArrayElement )(GLint) = NULL;
-
+
void (CALLBACK * disp__glDrawArrays )(GLenum, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glDrawElements )(GLenum, GLsizei, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glInterleavedArrays )(GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glShadeModel )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glLightf )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glLighti )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glLightfv )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glLightiv )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetLightfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetLightiv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glLightModelf )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glLightModeli )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glLightModelfv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glLightModeliv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMaterialf )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMateriali )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glMaterialfv )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMaterialiv )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetMaterialfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetMaterialiv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glColorMaterial )(GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glPixelZoom )(GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glPixelStoref )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glPixelStorei )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glPixelTransferf )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glPixelTransferi )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glPixelMapfv )(GLenum, GLint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glPixelMapuiv )(GLenum, GLint, const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glPixelMapusv )(GLenum, GLint, const GLushort *) = NULL;
-
+
void (CALLBACK * disp__glGetPixelMapfv )(GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetPixelMapuiv )(GLenum, GLuint *) = NULL;
-
+
void (CALLBACK * disp__glGetPixelMapusv )(GLenum, GLushort *) = NULL;
-
+
void (CALLBACK * disp__glBitmap )(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glReadPixels )(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glDrawPixels )(GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCopyPixels )(GLint, GLint, GLsizei, GLsizei, GLenum) = NULL;
-
+
void (CALLBACK * disp__glStencilFunc )(GLenum, GLint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glStencilMask )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glStencilOp )(GLenum, GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glClearStencil )(GLint) = NULL;
-
+
void (CALLBACK * disp__glTexGend )(GLenum, GLenum, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glTexGenf )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexGeni )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glTexGendv )(GLenum, GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glTexGenfv )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexGeniv )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetTexGendv )(GLenum, GLenum, GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glGetTexGenfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetTexGeniv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glTexEnvf )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexEnvi )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glTexEnvfv )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexEnviv )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetTexEnvfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetTexEnviv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glTexParameterf )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexParameteri )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glTexParameterfv )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexParameteriv )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetTexParameterfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetTexParameteriv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetTexLevelParameterfv )(GLenum, GLint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetTexLevelParameteriv )(GLenum, GLint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glTexImage1D )(GLenum, GLint, GLint, GLsizei, GLint, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTexImage2D )(GLenum, GLint, GLint, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetTexImage )(GLenum, GLint, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGenTextures )(GLsizei, GLuint *) = NULL;
-
+
void (CALLBACK * disp__glDeleteTextures )(GLsizei, const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glBindTexture )(GLenum, GLuint) = NULL;
-
+
void (CALLBACK * disp__glPrioritizeTextures )(GLsizei, const GLuint *, const GLclampf *) = NULL;
-
+
GLboolean (CALLBACK * disp__glAreTexturesResident )(GLsizei, const GLuint *, GLboolean *) = NULL;
-
+
GLboolean (CALLBACK * disp__glIsTexture )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glTexSubImage1D )(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTexSubImage2D )(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCopyTexImage1D )(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint) = NULL;
-
+
void (CALLBACK * disp__glCopyTexImage2D )(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint) = NULL;
-
+
void (CALLBACK * disp__glCopyTexSubImage1D )(GLenum, GLint, GLint, GLint, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glCopyTexSubImage2D )(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glMap1d )(GLenum, GLdouble, GLdouble, GLint, GLint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMap1f )(GLenum, GLfloat, GLfloat, GLint, GLint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMap2d )(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMap2f )(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetMapdv )(GLenum, GLenum, GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glGetMapfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetMapiv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glEvalCoord1d )(GLdouble) = NULL;
-
+
void (CALLBACK * disp__glEvalCoord1f )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glEvalCoord1dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glEvalCoord1fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glEvalCoord2d )(GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glEvalCoord2f )(GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glEvalCoord2dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glEvalCoord2fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMapGrid1d )(GLint, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMapGrid1f )(GLint, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMapGrid2d )(GLint, GLdouble, GLdouble, GLint, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMapGrid2f )(GLint, GLfloat, GLfloat, GLint, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glEvalPoint1 )(GLint) = NULL;
-
+
void (CALLBACK * disp__glEvalPoint2 )(GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glEvalMesh1 )(GLenum, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glEvalMesh2 )(GLenum, GLint, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glFogf )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glFogi )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glFogfv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glFogiv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glFeedbackBuffer )(GLsizei, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glPassThrough )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glSelectBuffer )(GLsizei, GLuint *) = NULL;
-
+
void (CALLBACK * disp__glInitNames )(void) = NULL;
-
+
void (CALLBACK * disp__glLoadName )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glPushName )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glPopName )(void) = NULL;
-
+
void (CALLBACK * disp__glDrawRangeElements )(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTexImage3D )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTexSubImage3D )(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCopyTexSubImage3D )(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glColorTable )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glColorSubTable )(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glColorTableParameteriv )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glColorTableParameterfv )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glCopyColorSubTable )(GLenum, GLsizei, GLint, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glCopyColorTable )(GLenum, GLenum, GLint, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glGetColorTable )(GLenum, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetColorTableParameterfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetColorTableParameteriv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glBlendEquation )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glBlendColor )(GLclampf, GLclampf, GLclampf, GLclampf) = NULL;
-
+
void (CALLBACK * disp__glHistogram )(GLenum, GLsizei, GLenum, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glResetHistogram )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glGetHistogram )(GLenum, GLboolean, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetHistogramParameterfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetHistogramParameteriv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glMinmax )(GLenum, GLenum, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glResetMinmax )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glGetMinmax )(GLenum, GLboolean, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetMinmaxParameterfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetMinmaxParameteriv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glConvolutionFilter1D )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glConvolutionFilter2D )(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glConvolutionParameterf )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glConvolutionParameterfv )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glConvolutionParameteri )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glConvolutionParameteriv )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glCopyConvolutionFilter1D )(GLenum, GLenum, GLint, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glCopyConvolutionFilter2D )(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glGetConvolutionFilter )(GLenum, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetConvolutionParameterfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetConvolutionParameteriv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glSeparableFilter2D )(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetSeparableFilter )(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glActiveTexture )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glClientActiveTexture )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexImage1D )(GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexImage2D )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexImage3D )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexSubImage1D )(GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexSubImage2D )(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexSubImage3D )(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetCompressedTexImage )(GLenum, GLint, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1d )(GLenum, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1dv )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1f )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1fv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1i )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1iv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1s )(GLenum, GLshort) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1sv )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2d )(GLenum, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2dv )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2f )(GLenum, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2fv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2i )(GLenum, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2iv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2s )(GLenum, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2sv )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3d )(GLenum, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3dv )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3f )(GLenum, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3fv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3i )(GLenum, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3iv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3s )(GLenum, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3sv )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4d )(GLenum, GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4dv )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4f )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4fv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4i )(GLenum, GLint, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4iv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4s )(GLenum, GLshort, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4sv )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glLoadTransposeMatrixd )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glLoadTransposeMatrixf )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultTransposeMatrixd )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultTransposeMatrixf )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glSampleCoverage )(GLclampf, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glSamplePass )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glActiveTextureARB )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glClientActiveTextureARB )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1dARB )(GLenum, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1dvARB )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1fARB )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1fvARB )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1iARB )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1ivARB )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1sARB )(GLenum, GLshort) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1svARB )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2dARB )(GLenum, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2dvARB )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2fARB )(GLenum, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2fvARB )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2iARB )(GLenum, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2ivARB )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2sARB )(GLenum, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2svARB )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3dARB )(GLenum, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3dvARB )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3fARB )(GLenum, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3fvARB )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3iARB )(GLenum, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3ivARB )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3sARB )(GLenum, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3svARB )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4dARB )(GLenum, GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4dvARB )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4fARB )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4fvARB )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4iARB )(GLenum, GLint, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4ivARB )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4sARB )(GLenum, GLshort, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4svARB )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glBlendColorEXT )(GLclampf, GLclampf, GLclampf, GLclampf) = NULL;
-
+
void (CALLBACK * disp__glPolygonOffsetEXT )(GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexImage3DEXT )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTexSubImage3DEXT )(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCopyTexSubImage3DEXT )(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glGenTexturesEXT )(GLsizei, GLuint *) = NULL;
-
+
void (CALLBACK * disp__glDeleteTexturesEXT )(GLsizei, const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glBindTextureEXT )(GLenum, GLuint) = NULL;
-
+
void (CALLBACK * disp__glPrioritizeTexturesEXT )(GLsizei, const GLuint *, const GLclampf *) = NULL;
-
+
GLboolean (CALLBACK * disp__glAreTexturesResidentEXT )(GLsizei, const GLuint *, GLboolean *) = NULL;
-
+
GLboolean (CALLBACK * disp__glIsTextureEXT )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glVertexPointerEXT )(GLint, GLenum, GLsizei, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glNormalPointerEXT )(GLenum, GLsizei, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glColorPointerEXT )(GLint, GLenum, GLsizei, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glIndexPointerEXT )(GLenum, GLsizei, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTexCoordPointerEXT )(GLint, GLenum, GLsizei, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glEdgeFlagPointerEXT )(GLsizei, GLsizei, const GLboolean *) = NULL;
-
+
void (CALLBACK * disp__glGetPointervEXT )(GLenum, GLvoid **) = NULL;
-
+
void (CALLBACK * disp__glArrayElementEXT )(GLint) = NULL;
-
+
void (CALLBACK * disp__glDrawArraysEXT )(GLenum, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glBlendEquationEXT )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glPointParameterfEXT )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glPointParameterfvEXT )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glPointParameterfSGIS )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glPointParameterfvSGIS )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glColorTableEXT )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glColorSubTableEXT )(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetColorTableEXT )(GLenum, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetColorTableParameterfvEXT )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetColorTableParameterivEXT )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glLockArraysEXT )(GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glUnlockArraysEXT )(void) = NULL;
-
+
void (CALLBACK * disp__glLoadTransposeMatrixfARB )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glLoadTransposeMatrixdARB )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultTransposeMatrixfARB )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultTransposeMatrixdARB )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glSampleCoverageARB )(GLclampf, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexImage3DARB )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexImage2DARB )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexImage1DARB )(GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexSubImage3DARB )(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexSubImage2DARB )(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexSubImage1DARB )(GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetCompressedTexImageARB )(GLenum, GLint, void *) = NULL;
-
+
void (CALLBACK * disp__glWeightbvARB )(GLint, const GLbyte *) = NULL;
-
+
void (CALLBACK * disp__glWeightsvARB )(GLint, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glWeightivARB )(GLint, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glWeightfvARB )(GLint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glWeightdvARB )(GLint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glWeightubvARB )(GLint, const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glWeightusvARB )(GLint, const GLushort *) = NULL;
-
+
void (CALLBACK * disp__glWeightuivARB )(GLint, const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glWeightPointerARB )(GLint, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glVertexBlendARB )(GLint) = NULL;
-
+
void (CALLBACK * disp__glCurrentPaletteMatrixARB )(GLint) = NULL;
-
+
void (CALLBACK * disp__glMatrixIndexubvARB )(GLint, const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glMatrixIndexusvARB )(GLint, const GLushort *) = NULL;
-
+
void (CALLBACK * disp__glMatrixIndexuivARB )(GLint, const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glMatrixIndexPointerARB )(GLint, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetTexFilterFuncSGIS )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexFilterFuncSGIS )(GLenum, GLenum, GLsizei, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexSubImage1DEXT )(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTexSubImage2DEXT )(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCopyTexImage1DEXT )(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint) = NULL;
-
+
void (CALLBACK * disp__glCopyTexImage2DEXT )(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint) = NULL;
-
+
void (CALLBACK * disp__glCopyTexSubImage1DEXT )(GLenum, GLint, GLint, GLint, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glCopyTexSubImage2DEXT )(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glGetHistogramEXT )(GLenum, GLboolean, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetHistogramParameterfvEXT )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetHistogramParameterivEXT )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetMinmaxEXT )(GLenum, GLboolean, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetMinmaxParameterfvEXT )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetMinmaxParameterivEXT )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glHistogramEXT )(GLenum, GLsizei, GLenum, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glMinmaxEXT )(GLenum, GLenum, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glResetHistogramEXT )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glResetMinmaxEXT )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glConvolutionFilter1DEXT )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glConvolutionFilter2DEXT )(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glConvolutionParameterfEXT )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glConvolutionParameterfvEXT )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glConvolutionParameteriEXT )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glConvolutionParameterivEXT )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glCopyConvolutionFilter1DEXT )(GLenum, GLenum, GLint, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glCopyConvolutionFilter2DEXT )(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glGetConvolutionFilterEXT )(GLenum, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetConvolutionParameterfvEXT )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetConvolutionParameterivEXT )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetSeparableFilterEXT )(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glSeparableFilter2DEXT )(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glColorTableSGI )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glColorTableParameterfvSGI )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glColorTableParameterivSGI )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glCopyColorTableSGI )(GLenum, GLenum, GLint, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glGetColorTableSGI )(GLenum, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetColorTableParameterfvSGI )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetColorTableParameterivSGI )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glPixelTexGenSGIX )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glPixelTexGenParameteriSGIS )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glPixelTexGenParameterivSGIS )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glPixelTexGenParameterfSGIS )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glPixelTexGenParameterfvSGIS )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetPixelTexGenParameterivSGIS )(GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetPixelTexGenParameterfvSGIS )(GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexImage4DSGIS )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTexSubImage4DSGIS )(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glDetailTexFuncSGIS )(GLenum, GLsizei, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetDetailTexFuncSGIS )(GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glSharpenTexFuncSGIS )(GLenum, GLsizei, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetSharpenTexFuncSGIS )(GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glSampleMaskSGIS )(GLclampf, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glSamplePatternSGIS )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glSpriteParameterfSGIX )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glSpriteParameterfvSGIX )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glSpriteParameteriSGIX )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glSpriteParameterivSGIX )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glPointParameterfARB )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glPointParameterfvARB )(GLenum, const GLfloat *) = NULL;
-
+
GLint (CALLBACK * disp__glGetInstrumentsSGIX )(void) = NULL;
-
+
void (CALLBACK * disp__glInstrumentsBufferSGIX )(GLsizei, GLint *) = NULL;
-
+
GLint (CALLBACK * disp__glPollInstrumentsSGIX )(GLint *) = NULL;
-
+
void (CALLBACK * disp__glReadInstrumentsSGIX )(GLint) = NULL;
-
+
void (CALLBACK * disp__glStartInstrumentsSGIX )(void) = NULL;
-
+
void (CALLBACK * disp__glStopInstrumentsSGIX )(GLint) = NULL;
-
+
void (CALLBACK * disp__glFrameZoomSGIX )(GLint) = NULL;
-
+
void (CALLBACK * disp__glTagSampleBufferSGIX )(void) = NULL;
-
+
void (CALLBACK * disp__glDeformationMap3dSGIX )(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glDeformationMap3fSGIX )(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glDeformSGIX )(GLbitfield) = NULL;
-
+
void (CALLBACK * disp__glLoadIdentityDeformationMapSGIX )(GLbitfield) = NULL;
-
+
void (CALLBACK * disp__glReferencePlaneSGIX )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glFlushRasterSGIX )(void) = NULL;
-
+
void (CALLBACK * disp__glFogFuncSGIS )(GLsizei, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetFogFuncSGIS )(GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glImageTransformParameteriHP )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glImageTransformParameterfHP )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glImageTransformParameterivHP )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glImageTransformParameterfvHP )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetImageTransformParameterivHP )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetImageTransformParameterfvHP )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glCopyColorSubTableEXT )(GLenum, GLsizei, GLint, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glHintPGI )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glGetListParameterfvSGIX )(GLuint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetListParameterivSGIX )(GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glListParameterfSGIX )(GLuint, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glListParameterfvSGIX )(GLuint, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glListParameteriSGIX )(GLuint, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glListParameterivSGIX )(GLuint, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glIndexMaterialEXT )(GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glIndexFuncEXT )(GLenum, GLclampf) = NULL;
-
+
void (CALLBACK * disp__glCullParameterdvEXT )(GLenum, GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glCullParameterfvEXT )(GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glFragmentColorMaterialSGIX )(GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glFragmentLightfSGIX )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glFragmentLightfvSGIX )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glFragmentLightiSGIX )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glFragmentLightivSGIX )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glFragmentLightModelfSGIX )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glFragmentLightModelfvSGIX )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glFragmentLightModeliSGIX )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glFragmentLightModelivSGIX )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glFragmentMaterialfSGIX )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glFragmentMaterialfvSGIX )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glFragmentMaterialiSGIX )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glFragmentMaterialivSGIX )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetFragmentLightfvSGIX )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetFragmentLightivSGIX )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetFragmentMaterialfvSGIX )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetFragmentMaterialivSGIX )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glLightEnviSGIX )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glDrawRangeElementsEXT )(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glApplyTextureEXT )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glTextureLightEXT )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glTextureMaterialEXT )(GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glAsyncMarkerSGIX )(GLuint) = NULL;
-
+
GLint (CALLBACK * disp__glFinishAsyncSGIX )(GLuint *) = NULL;
-
+
GLint (CALLBACK * disp__glPollAsyncSGIX )(GLuint *) = NULL;
-
+
GLuint (CALLBACK * disp__glGenAsyncMarkersSGIX )(GLsizei) = NULL;
-
+
void (CALLBACK * disp__glDeleteAsyncMarkersSGIX )(GLuint, GLsizei) = NULL;
-
+
GLboolean (CALLBACK * disp__glIsAsyncMarkerSGIX )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glVertexPointervINTEL )(GLint, GLenum, const GLvoid **) = NULL;
-
+
void (CALLBACK * disp__glNormalPointervINTEL )(GLenum, const GLvoid **) = NULL;
-
+
void (CALLBACK * disp__glColorPointervINTEL )(GLint, GLenum, const GLvoid **) = NULL;
-
+
void (CALLBACK * disp__glTexCoordPointervINTEL )(GLint, GLenum, const GLvoid **) = NULL;
-
+
void (CALLBACK * disp__glPixelTransformParameteriEXT )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glPixelTransformParameterfEXT )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glPixelTransformParameterivEXT )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glPixelTransformParameterfvEXT )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3bEXT )(GLbyte, GLbyte, GLbyte) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3bvEXT )(const GLbyte *) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3dEXT )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3dvEXT )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3fEXT )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3fvEXT )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3iEXT )(GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3ivEXT )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3sEXT )(GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3svEXT )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3ubEXT )(GLubyte, GLubyte, GLubyte) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3ubvEXT )(const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3uiEXT )(GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3uivEXT )(const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3usEXT )(GLushort, GLushort, GLushort) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3usvEXT )(const GLushort *) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColorPointerEXT )(GLint, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTextureNormalEXT )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glMultiDrawArraysEXT )(GLenum, GLint *, GLsizei *, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glMultiDrawElementsEXT )(GLenum, const GLsizei *, GLenum, const GLvoid **, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glFogCoordfEXT )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glFogCoordfvEXT )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glFogCoorddEXT )(GLdouble) = NULL;
-
+
void (CALLBACK * disp__glFogCoorddvEXT )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glFogCoordPointerEXT )(GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTangent3bEXT )(GLbyte, GLbyte, GLbyte) = NULL;
-
+
void (CALLBACK * disp__glTangent3bvEXT )(const GLbyte *) = NULL;
-
+
void (CALLBACK * disp__glTangent3dEXT )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glTangent3dvEXT )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glTangent3fEXT )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTangent3fvEXT )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTangent3iEXT )(GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glTangent3ivEXT )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glTangent3sEXT )(GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glTangent3svEXT )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glBinormal3bEXT )(GLbyte, GLbyte, GLbyte) = NULL;
-
+
void (CALLBACK * disp__glBinormal3bvEXT )(const GLbyte *) = NULL;
-
+
void (CALLBACK * disp__glBinormal3dEXT )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glBinormal3dvEXT )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glBinormal3fEXT )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glBinormal3fvEXT )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glBinormal3iEXT )(GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glBinormal3ivEXT )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glBinormal3sEXT )(GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glBinormal3svEXT )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glTangentPointerEXT )(GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glBinormalPointerEXT )(GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glFinishTextureSUNX )(void) = NULL;
-
+
void (CALLBACK * disp__glGlobalAlphaFactorbSUN )(GLbyte) = NULL;
-
+
void (CALLBACK * disp__glGlobalAlphaFactorsSUN )(GLshort) = NULL;
-
+
void (CALLBACK * disp__glGlobalAlphaFactoriSUN )(GLint) = NULL;
-
+
void (CALLBACK * disp__glGlobalAlphaFactorfSUN )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glGlobalAlphaFactordSUN )(GLdouble) = NULL;
-
+
void (CALLBACK * disp__glGlobalAlphaFactorubSUN )(GLubyte) = NULL;
-
+
void (CALLBACK * disp__glGlobalAlphaFactorusSUN )(GLushort) = NULL;
-
+
void (CALLBACK * disp__glGlobalAlphaFactoruiSUN )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiSUN )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeusSUN )(GLushort) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeubSUN )(GLubyte) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuivSUN )(const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeusvSUN )(const GLushort *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeubvSUN )(const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodePointerSUN )(GLenum, GLsizei, const GLvoid **) = NULL;
-
+
void (CALLBACK * disp__glColor4ubVertex2fSUN )(GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glColor4ubVertex2fvSUN )(const GLubyte *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glColor4ubVertex3fSUN )(GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glColor4ubVertex3fvSUN )(const GLubyte *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glColor3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glColor3fVertex3fvSUN )(const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glNormal3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glNormal3fVertex3fvSUN )(const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glColor4fNormal3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glColor4fNormal3fVertex3fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fVertex3fvSUN )(const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4fVertex4fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4fVertex4fvSUN )(const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fColor4ubVertex3fSUN )(GLfloat, GLfloat, GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fColor4ubVertex3fvSUN )(const GLfloat *, const GLubyte *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fColor3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fColor3fVertex3fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fNormal3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fNormal3fVertex3fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fColor4fNormal3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fColor4fNormal3fVertex3fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4fColor4fNormal3fVertex4fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4fColor4fNormal3fVertex4fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiVertex3fvSUN )(const GLenum *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiColor4ubVertex3fSUN )(GLenum, GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiColor4ubVertex3fvSUN )(const GLenum *, const GLubyte *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiColor3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiColor3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiNormal3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiNormal3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiColor4fNormal3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiColor4fNormal3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiTexCoord2fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiTexCoord2fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glBlendFuncSeparateEXT )(GLenum, GLenum, GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glBlendFuncSeparateINGR )(GLenum, GLenum, GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glVertexWeightfEXT )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertexWeightfvEXT )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexWeightPointerEXT )(GLsizei, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glFlushVertexArrayRangeNV )(void) = NULL;
-
+
void (CALLBACK * disp__glVertexArrayRangeNV )(GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCombinerParameterfvNV )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glCombinerParameterfNV )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glCombinerParameterivNV )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glCombinerParameteriNV )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glCombinerInputNV )(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glCombinerOutputNV )(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLboolean, GLboolean, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glFinalCombinerInputNV )(GLenum, GLenum, GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glGetCombinerInputParameterfvNV )(GLenum, GLenum, GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetCombinerInputParameterivNV )(GLenum, GLenum, GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetCombinerOutputParameterfvNV )(GLenum, GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetCombinerOutputParameterivNV )(GLenum, GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetFinalCombinerInputParameterfvNV )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetFinalCombinerInputParameterivNV )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glMultiModeDrawArraysIBM )(GLenum, const GLint *, const GLsizei *, GLsizei, GLint) = NULL;
-
+
void (CALLBACK * disp__glMultiModeDrawElementsIBM )(const GLenum *, const GLsizei *, GLenum, const GLvoid **, GLsizei, GLint) = NULL;
-
+
void (CALLBACK * disp__glColorPointerListIBM )(GLint, GLenum, GLint, const GLvoid **, GLint) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColorPointerListIBM )(GLint, GLenum, GLint, const GLvoid **, GLint) = NULL;
-
+
void (CALLBACK * disp__glEdgeFlagPointerListIBM )(GLint, const GLboolean **, GLint) = NULL;
-
+
void (CALLBACK * disp__glFogCoordPointerListIBM )(GLenum, GLint, const GLvoid **, GLint) = NULL;
-
+
void (CALLBACK * disp__glIndexPointerListIBM )(GLenum, GLint, const GLvoid **, GLint) = NULL;
-
+
void (CALLBACK * disp__glNormalPointerListIBM )(GLenum, GLint, const GLvoid **, GLint) = NULL;
-
+
void (CALLBACK * disp__glTexCoordPointerListIBM )(GLint, GLenum, GLint, const GLvoid **, GLint) = NULL;
-
+
void (CALLBACK * disp__glVertexPointerListIBM )(GLint, GLenum, GLint, const GLvoid **, GLint) = NULL;
-
+
void (CALLBACK * disp__glTbufferMask3DFX )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glSampleMaskEXT )(GLclampf, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glSamplePatternEXT )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glTextureColorMaskSGIS )(GLboolean, GLboolean, GLboolean, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glIglooInterfaceSGIX )(GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGenFencesNV )(GLsizei, GLuint *) = NULL;
-
+
void (CALLBACK * disp__glDeleteFencesNV )(GLsizei, const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glSetFenceNV )(GLuint, GLenum) = NULL;
-
+
GLboolean (CALLBACK * disp__glTestFenceNV )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glFinishFenceNV )(GLuint) = NULL;
-
+
GLboolean (CALLBACK * disp__glIsFenceNV )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glGetFenceivNV )(GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glMapControlPointsNV )(GLenum, GLuint, GLenum, GLsizei, GLsizei, GLint, GLint, GLboolean, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glMapParameterivNV )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMapParameterfvNV )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetMapControlPointsNV )(GLenum, GLuint, GLenum, GLsizei, GLsizei, GLboolean, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetMapParameterivNV )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetMapParameterfvNV )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetMapAttribParameterivNV )(GLenum, GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetMapAttribParameterfvNV )(GLenum, GLuint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glEvalMapsNV )(GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glCombinerStageParameterfvNV )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetCombinerStageParameterfvNV )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glBindProgramNV )(GLenum, GLuint) = NULL;
-
+
void (CALLBACK * disp__glDeleteProgramsNV )(GLsizei, const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glExecuteProgramNV )(GLenum, GLuint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGenProgramsNV )(GLsizei, GLuint *) = NULL;
-
+
GLboolean (CALLBACK * disp__glAreProgramsResidentNV )(GLsizei, const GLuint *, GLboolean *) = NULL;
-
+
void (CALLBACK * disp__glRequestResidentProgramsNV )(GLsizei, const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glGetProgramParameterfvNV )(GLenum, GLuint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetProgramParameterdvNV )(GLenum, GLuint, GLenum, GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glGetProgramivNV )(GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetProgramStringNV )(GLuint, GLenum, GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glGetTrackMatrixivNV )(GLenum, GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetVertexAttribdvNV )(GLuint, GLenum, GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glGetVertexAttribfvNV )(GLuint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetVertexAttribivNV )(GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetVertexAttribPointervNV )(GLuint, GLenum, GLvoid **) = NULL;
-
+
GLboolean (CALLBACK * disp__glIsProgramNV )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glLoadProgramNV )(GLenum, GLuint, GLsizei, const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glProgramParameter4fNV )(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glProgramParameter4dNV )(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glProgramParameter4dvNV )(GLenum, GLuint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glProgramParameter4fvNV )(GLenum, GLuint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glProgramParameters4dvNV )(GLenum, GLuint, GLuint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glProgramParameters4fvNV )(GLenum, GLuint, GLuint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTrackMatrixNV )(GLenum, GLuint, GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribPointerNV )(GLuint, GLint, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib1sNV )(GLuint, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib1fNV )(GLuint, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib1dNV )(GLuint, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib2sNV )(GLuint, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib2fNV )(GLuint, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib2dNV )(GLuint, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib3sNV )(GLuint, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib3fNV )(GLuint, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib3dNV )(GLuint, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib4sNV )(GLuint, GLshort, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib4fNV )(GLuint, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib4dNV )(GLuint, GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib4ubNV )(GLuint, GLubyte, GLubyte, GLubyte, GLubyte) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib1svNV )(GLuint, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib1fvNV )(GLuint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib1dvNV )(GLuint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib2svNV )(GLuint, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib2fvNV )(GLuint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib2dvNV )(GLuint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib3svNV )(GLuint, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib3fvNV )(GLuint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib3dvNV )(GLuint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib4svNV )(GLuint, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib4fvNV )(GLuint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib4dvNV )(GLuint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib4ubvNV )(GLuint, const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs1svNV )(GLuint, GLsizei, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs1fvNV )(GLuint, GLsizei, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs1dvNV )(GLuint, GLsizei, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs2svNV )(GLuint, GLsizei, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs2fvNV )(GLuint, GLsizei, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs2dvNV )(GLuint, GLsizei, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs3svNV )(GLuint, GLsizei, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs3fvNV )(GLuint, GLsizei, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs3dvNV )(GLuint, GLsizei, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs4svNV )(GLuint, GLsizei, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs4fvNV )(GLuint, GLsizei, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs4dvNV )(GLuint, GLsizei, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs4ubvNV )(GLuint, GLsizei, const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glTexBumpParameterivATI )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glTexBumpParameterfvATI )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetTexBumpParameterivATI )(GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetTexBumpParameterfvATI )(GLenum, GLfloat *) = NULL;
-
+
GLuint (CALLBACK * disp__glGenFragmentShadersATI )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glBindFragmentShaderATI )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glDeleteFragmentShaderATI )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glBeginFragmentShaderATI )(void) = NULL;
-
+
void (CALLBACK * disp__glEndFragmentShaderATI )(void) = NULL;
-
+
void (CALLBACK * disp__glPassTexCoordATI )(GLuint, GLuint, GLenum) = NULL;
-
+
void (CALLBACK * disp__glSampleMapATI )(GLuint, GLuint, GLenum) = NULL;
-
+
void (CALLBACK * disp__glColorFragmentOp1ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glColorFragmentOp2ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glColorFragmentOp3ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glAlphaFragmentOp1ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glAlphaFragmentOp2ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glAlphaFragmentOp3ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glSetFragmentShaderConstantATI )(GLuint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glPNTrianglesiATI )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glPNTrianglesfATI )(GLenum, GLfloat) = NULL;
-
+
GLuint (CALLBACK * disp__glNewObjectBufferATI )(GLsizei, const GLvoid *, GLenum) = NULL;
-
+
GLboolean (CALLBACK * disp__glIsObjectBufferATI )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glUpdateObjectBufferATI )(GLuint, GLuint, GLsizei, const GLvoid *, GLenum) = NULL;
-
+
void (CALLBACK * disp__glGetObjectBufferfvATI )(GLuint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetObjectBufferivATI )(GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glDeleteObjectBufferATI )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glArrayObjectATI )(GLenum, GLint, GLenum, GLsizei, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glGetArrayObjectfvATI )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetArrayObjectivATI )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glVariantArrayObjectATI )(GLuint, GLenum, GLsizei, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glGetVariantArrayObjectfvATI )(GLuint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetVariantArrayObjectivATI )(GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glBeginVertexShaderEXT )(void) = NULL;
-
+
void (CALLBACK * disp__glEndVertexShaderEXT )(void) = NULL;
-
+
void (CALLBACK * disp__glBindVertexShaderEXT )(GLuint) = NULL;
-
+
GLuint (CALLBACK * disp__glGenVertexShadersEXT )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glDeleteVertexShaderEXT )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glShaderOp1EXT )(GLenum, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glShaderOp2EXT )(GLenum, GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glShaderOp3EXT )(GLenum, GLuint, GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glSwizzleEXT )(GLuint, GLuint, GLenum, GLenum, GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glWriteMaskEXT )(GLuint, GLuint, GLenum, GLenum, GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glInsertComponentEXT )(GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glExtractComponentEXT )(GLuint, GLuint, GLuint) = NULL;
-
+
GLuint (CALLBACK * disp__glGenSymbolsEXT )(GLenum, GLenum, GLenum, GLuint) = NULL;
-
+
void (CALLBACK * disp__glSetInvariantEXT )(GLuint, GLenum, const void *) = NULL;
-
+
void (CALLBACK * disp__glSetLocalConstantEXT )(GLuint, GLenum, const void *) = NULL;
-
+
void (CALLBACK * disp__glVariantbvEXT )(GLuint, const GLbyte *) = NULL;
-
+
void (CALLBACK * disp__glVariantsvEXT )(GLuint, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVariantivEXT )(GLuint, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glVariantfvEXT )(GLuint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVariantdvEXT )(GLuint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVariantubvEXT )(GLuint, const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glVariantusvEXT )(GLuint, const GLushort *) = NULL;
-
+
void (CALLBACK * disp__glVariantuivEXT )(GLuint, const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glVariantPointerEXT )(GLuint, GLenum, GLuint, const void *) = NULL;
-
+
void (CALLBACK * disp__glEnableVariantClientStateEXT )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glDisableVariantClientStateEXT )(GLuint) = NULL;
-
+
GLuint (CALLBACK * disp__glBindLightParameterEXT )(GLenum, GLenum) = NULL;
-
+
GLuint (CALLBACK * disp__glBindMaterialParameterEXT )(GLenum, GLenum) = NULL;
-
+
GLuint (CALLBACK * disp__glBindTexGenParameterEXT )(GLenum, GLenum, GLenum) = NULL;
-
+
GLuint (CALLBACK * disp__glBindTextureUnitParameterEXT )(GLenum, GLenum) = NULL;
-
+
GLuint (CALLBACK * disp__glBindParameterEXT )(GLenum) = NULL;
-
+
GLboolean (CALLBACK * disp__glIsVariantEnabledEXT )(GLuint, GLenum) = NULL;
-
+
void (CALLBACK * disp__glGetVariantBooleanvEXT )(GLuint, GLenum, GLboolean *) = NULL;
-
+
void (CALLBACK * disp__glGetVariantIntegervEXT )(GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetVariantFloatvEXT )(GLuint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetVariantPointervEXT )(GLuint, GLenum, GLvoid **) = NULL;
-
+
void (CALLBACK * disp__glGetInvariantBooleanvEXT )(GLuint, GLenum, GLboolean *) = NULL;
-
+
void (CALLBACK * disp__glGetInvariantIntegervEXT )(GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetInvariantFloatvEXT )(GLuint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetLocalConstantBooleanvEXT )(GLuint, GLenum, GLboolean *) = NULL;
-
+
void (CALLBACK * disp__glGetLocalConstantIntegervEXT )(GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetLocalConstantFloatvEXT )(GLuint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream1s )(GLenum, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertexStream1sv )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream1i )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glVertexStream1iv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream1f )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertexStream1fv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream1d )(GLenum, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertexStream1dv )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream2s )(GLenum, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertexStream2sv )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream2i )(GLenum, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glVertexStream2iv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream2f )(GLenum, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertexStream2fv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream2d )(GLenum, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertexStream2dv )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream3s )(GLenum, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertexStream3sv )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream3i )(GLenum, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glVertexStream3iv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream3f )(GLenum, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertexStream3fv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream3d )(GLenum, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertexStream3dv )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream4s )(GLenum, GLshort, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertexStream4sv )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream4i )(GLenum, GLint, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glVertexStream4iv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream4f )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertexStream4fv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream4d )(GLenum, GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertexStream4dv )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3b )(GLenum, GLbyte, GLbyte, GLbyte) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3bv )(GLenum, const GLbyte *) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3s )(GLenum, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3sv )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3i )(GLenum, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3iv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3f )(GLenum, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3fv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3d )(GLenum, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3dv )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glClientActiveVertexStream )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glVertexBlendEnvi )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glVertexBlendEnvf )(GLenum, GLfloat) = NULL;
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/C2J/gl-enum-auto.java b/C2J/gl-enum-auto.java
index 2790bbe..f7a4b7e 100644
--- a/C2J/gl-enum-auto.java
+++ b/C2J/gl-enum-auto.java
@@ -4,2328 +4,2328 @@
* 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/C2J/gl-funcnames.skel b/C2J/gl-funcnames.skel
index af5ccec..0ce148d 100644
--- a/C2J/gl-funcnames.skel
+++ b/C2J/gl-funcnames.skel
@@ -4,986 +4,986 @@
* 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. */
diff --git a/C2J/gl-proto-auto-14.java b/C2J/gl-proto-auto-14.java
index abcd9ee..289364a 100644
--- a/C2J/gl-proto-auto-14.java
+++ b/C2J/gl-proto-auto-14.java
@@ -4,524 +4,524 @@
* Reading from file: gl-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvf ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClearIndex (
float c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClearIndex ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClearColor (
float red,
float green,
float blue,
float alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClearColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClear (
int mask
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClear ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexMask (
int mask
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorMask (
boolean red,
boolean green,
boolean blue,
boolean alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMask ( GLboolean red , GLboolean green , GLboolean blue , GLboolean alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glAlphaFunc (
int func,
float ref
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFunc ( GLenum func , GLclampf ref ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBlendFunc (
int sfactor,
int dfactor
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFunc ( GLenum sfactor , GLenum dfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLogicOp (
int opcode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLogicOp ( GLenum opcode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCullFace (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCullFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFrontFace (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFrontFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPointSize (
float size
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPointSize ( GLfloat size ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLineWidth (
float width
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLineWidth ( GLfloat width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLineStipple (
int factor,
short pattern
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLineStipple ( GLint factor , GLushort pattern ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPolygonMode (
int face,
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonMode ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPolygonOffset (
float factor,
float units
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffset ( GLfloat factor , GLfloat units ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPolygonStipple (
byte[] mask
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonStipple ( const GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetPolygonStipple (
byte[] mask
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPolygonStipple ( GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEdgeFlag (
boolean flag
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlag ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEdgeFlagv (
boolean[] flag
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagv ( const GLboolean * flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glScissor (
int x,
int y,
int width,
int height
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glScissor ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClipPlane (
int plane,
double[] equation
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClipPlane ( GLenum plane , const GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetClipPlane (
int plane,
double[] equation
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetClipPlane ( GLenum plane , GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDrawBuffer (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReadBuffer (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReadBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEnable (
int cap
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEnable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDisable (
int cap
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDisable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glIsEnabled (
int cap
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsEnabled ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEnableClientState (
int cap
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDisableClientState (
int cap
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetBooleanv (
int pname,
boolean[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetBooleanv ( GLenum pname , GLboolean * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetDoublev (
int pname,
double[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDoublev ( GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetFloatv (
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFloatv ( GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetIntegerv (
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetIntegerv ( GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPushAttrib (
int mask
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPushAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPopAttrib (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPopAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPushClientAttrib (
int mask
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPushClientAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPopClientAttrib (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPopClientAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glRenderMode (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint glRenderMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glGetError (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLenum glGetError ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFinish (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFinish ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFlush (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFlush ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glHint (
int target,
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glHint ( GLenum target , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClearDepth (
double depth
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClearDepth ( GLclampd depth ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDepthFunc (
int func
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthFunc ( GLenum func ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDepthMask (
boolean flag
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthMask ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDepthRange (
double near_val,
double far_val
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthRange ( GLclampd near_val , GLclampd far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClearAccum (
float red,
float green,
float blue,
float alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClearAccum ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glAccum (
int op,
float value
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glAccum ( GLenum op , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMatrixMode (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glOrtho (
double left,
double right,
@@ -530,13 +530,13 @@
double near_val,
double far_val
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glOrtho ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFrustum (
double left,
double right,
@@ -545,228 +545,228 @@
double near_val,
double far_val
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFrustum ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glViewport (
int x,
int y,
int width,
int height
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glViewport ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPushMatrix (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPushMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPopMatrix (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPopMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadIdentity (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentity ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadMatrixd (
double[] m
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadMatrixf (
float[] m
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultMatrixd (
double[] m
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultMatrixf (
float[] m
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRotated (
double angle,
double x,
double y,
double z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRotated ( GLdouble angle , GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRotatef (
float angle,
float x,
float y,
float z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRotatef ( GLfloat angle , GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glScaled (
double x,
double y,
double z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glScaled ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glScalef (
float x,
float y,
float z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glScalef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTranslated (
double x,
double y,
double z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslated ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTranslatef (
float x,
float y,
float z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslatef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glIsList (
int list
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeleteLists (
int list,
int range
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteLists ( GLuint list , GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glGenLists (
int range
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenLists ( GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNewList (
int list,
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNewList ( GLuint list , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEndList (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEndList ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCallList (
int list
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCallList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCallLists (
int n,
int type,
@@ -807,1580 +807,1580 @@
int type,
Buffer lists
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCallLists ( GLsizei n , GLenum type , const GLvoid * lists ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glListBase (
int base
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glListBase ( GLuint base ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBegin (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBegin ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEnd (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEnd ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex2d (
double x,
double y
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex2f (
float x,
float y
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex2i (
int x,
int y
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex2s (
short x,
short y
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex3d (
double x,
double y,
double z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex3f (
float x,
float y,
float z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex3i (
int x,
int y,
int z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex3s (
short x,
short y,
short z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex4d (
double x,
double y,
double z,
double w
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex4f (
float x,
float y,
float z,
float w
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex4i (
int x,
int y,
int z,
int w
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex4s (
short x,
short y,
short z,
short w
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex2dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex2fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex2iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex2sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex3dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex3fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex3iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex3sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex4dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex4fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex4iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex4sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3b (
byte nx,
byte ny,
byte nz
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3b ( GLbyte nx , GLbyte ny , GLbyte nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3d (
double nx,
double ny,
double nz
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3d ( GLdouble nx , GLdouble ny , GLdouble nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3f (
float nx,
float ny,
float nz
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3f ( GLfloat nx , GLfloat ny , GLfloat nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3i (
int nx,
int ny,
int nz
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3i ( GLint nx , GLint ny , GLint nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3s (
short nx,
short ny,
short nz
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3s ( GLshort nx , GLshort ny , GLshort nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3bv (
byte[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexd (
double c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexd ( GLdouble c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexf (
float c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexf ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexi (
int c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexi ( GLint c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexs (
short c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexs ( GLshort c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexub (
byte c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexub ( GLubyte c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexdv (
double[] c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexdv ( const GLdouble * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexfv (
float[] c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexfv ( const GLfloat * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexiv (
int[] c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexiv ( const GLint * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexsv (
short[] c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexsv ( const GLshort * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexubv (
byte[] c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexubv ( const GLubyte * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3b (
byte red,
byte green,
byte blue
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3b ( GLbyte red , GLbyte green , GLbyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3d (
double red,
double green,
double blue
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3d ( GLdouble red , GLdouble green , GLdouble blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3f (
float red,
float green,
float blue
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3f ( GLfloat red , GLfloat green , GLfloat blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3i (
int red,
int green,
int blue
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3i ( GLint red , GLint green , GLint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3s (
short red,
short green,
short blue
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3s ( GLshort red , GLshort green , GLshort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3ub (
byte red,
byte green,
byte blue
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ub ( GLubyte red , GLubyte green , GLubyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3ui (
int red,
int green,
int blue
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ui ( GLuint red , GLuint green , GLuint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3us (
short red,
short green,
short blue
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3us ( GLushort red , GLushort green , GLushort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4b (
byte red,
byte green,
byte blue,
byte alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4b ( GLbyte red , GLbyte green , GLbyte blue , GLbyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4d (
double red,
double green,
double blue,
double alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4d ( GLdouble red , GLdouble green , GLdouble blue , GLdouble alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4f (
float red,
float green,
float blue,
float alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4f ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4i (
int red,
int green,
int blue,
int alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4i ( GLint red , GLint green , GLint blue , GLint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4s (
short red,
short green,
short blue,
short alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4s ( GLshort red , GLshort green , GLshort blue , GLshort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4ub (
byte red,
byte green,
byte blue,
byte alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ub ( GLubyte red , GLubyte green , GLubyte blue , GLubyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4ui (
int red,
int green,
int blue,
int alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ui ( GLuint red , GLuint green , GLuint blue , GLuint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4us (
short red,
short green,
short blue,
short alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4us ( GLushort red , GLushort green , GLushort blue , GLushort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3bv (
byte[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3ubv (
byte[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3uiv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3usv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4bv (
byte[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4ubv (
byte[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4uiv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4usv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord1d (
double s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1d ( GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord1f (
float s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1f ( GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord1i (
int s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1i ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord1s (
short s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1s ( GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2d (
double s,
double t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2d ( GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2f (
float s,
float t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2f ( GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2i (
int s,
int t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2i ( GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2s (
short s,
short t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2s ( GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord3d (
double s,
double t,
double r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3d ( GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord3f (
float s,
float t,
float r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3f ( GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord3i (
int s,
int t,
int r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3i ( GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord3s (
short s,
short t,
short r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3s ( GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4d (
double s,
double t,
double r,
double q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4d ( GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4f (
float s,
float t,
float r,
float q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4f ( GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4i (
int s,
int t,
int r,
int q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4i ( GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4s (
short s,
short t,
short r,
short q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4s ( GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord1dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord1fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord1iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord1sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord3dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord3fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord3iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord3sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos2d (
double x,
double y
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos2f (
float x,
float y
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos2i (
int x,
int y
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos2s (
short x,
short y
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos3d (
double x,
double y,
double z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos3f (
float x,
float y,
float z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos3i (
int x,
int y,
int z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos3s (
short x,
short y,
short z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos4d (
double x,
double y,
double z,
double w
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos4f (
float x,
float y,
float z,
float w
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos4i (
int x,
int y,
int z,
int w
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos4s (
short x,
short y,
short z,
short w
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos2dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos2fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos2iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos2sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos3dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos3fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos3iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos3sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos4dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos4fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos4iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos4sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRectd (
double x1,
double y1,
double x2,
double y2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRectd ( GLdouble x1 , GLdouble y1 , GLdouble x2 , GLdouble y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRectf (
float x1,
float y1,
float x2,
float y2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRectf ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRecti (
int x1,
int y1,
int x2,
int y2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRecti ( GLint x1 , GLint y1 , GLint x2 , GLint y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRects (
short x1,
short y1,
short x2,
short y2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRects ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRectdv (
double[] v1,
double[] v2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRectdv ( const GLdouble * v1 , const GLdouble * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRectfv (
float[] v1,
float[] v2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRectfv ( const GLfloat * v1 , const GLfloat * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRectiv (
int[] v1,
int[] v2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRectiv ( const GLint * v1 , const GLint * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRectsv (
short[] v1,
short[] v2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRectsv ( const GLshort * v1 , const GLshort * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexPointer (
int size,
int type,
@@ -2429,13 +2429,13 @@
int stride,
Buffer ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalPointer (
int type,
int stride,
@@ -2476,13 +2476,13 @@
int stride,
Buffer ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorPointer (
int size,
int type,
@@ -2531,13 +2531,13 @@
int stride,
Buffer ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexPointer (
int type,
int stride,
@@ -2578,13 +2578,13 @@
int stride,
Buffer ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoordPointer (
int size,
int type,
@@ -2633,13 +2633,13 @@
int stride,
Buffer ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEdgeFlagPointer (
int stride,
byte[] ptr
@@ -2672,13 +2672,13 @@
int stride,
Buffer ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointer ( GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetPointerv (
int pname,
byte[][] params
@@ -2707,35 +2707,35 @@
int pname,
long[][] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointerv ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glArrayElement (
int i
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElement ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDrawArrays (
int mode,
int first,
int count
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArrays ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDrawElements (
int mode,
int count,
@@ -2784,13 +2784,13 @@
int type,
Buffer indices
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawElements ( GLenum mode , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glInterleavedArrays (
int format,
int stride,
@@ -2831,346 +2831,346 @@
int stride,
Buffer pointer
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glInterleavedArrays ( GLenum format , GLsizei stride , const GLvoid * pointer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glShadeModel (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glShadeModel ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLightf (
int light,
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLightf ( GLenum light , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLighti (
int light,
int pname,
int param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLighti ( GLenum light , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLightfv (
int light,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLightfv ( GLenum light , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLightiv (
int light,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLightiv ( GLenum light , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetLightfv (
int light,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightfv ( GLenum light , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetLightiv (
int light,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightiv ( GLenum light , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLightModelf (
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLightModeli (
int pname,
int param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeli ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLightModelfv (
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLightModeliv (
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeliv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMaterialf (
int face,
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialf ( GLenum face , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMateriali (
int face,
int pname,
int param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMateriali ( GLenum face , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMaterialfv (
int face,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialfv ( GLenum face , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMaterialiv (
int face,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialiv ( GLenum face , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMaterialfv (
int face,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialfv ( GLenum face , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMaterialiv (
int face,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialiv ( GLenum face , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorMaterial (
int face,
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMaterial ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelZoom (
float xfactor,
float yfactor
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelZoom ( GLfloat xfactor , GLfloat yfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelStoref (
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStoref ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelStorei (
int pname,
int param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStorei ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTransferf (
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTransferi (
int pname,
int param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelMapfv (
int map,
int mapsize,
float[] values
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapfv ( GLenum map , GLint mapsize , const GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelMapuiv (
int map,
int mapsize,
int[] values
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapuiv ( GLenum map , GLint mapsize , const GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelMapusv (
int map,
int mapsize,
short[] values
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapusv ( GLenum map , GLint mapsize , const GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetPixelMapfv (
int map,
float[] values
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapfv ( GLenum map , GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetPixelMapuiv (
int map,
int[] values
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapuiv ( GLenum map , GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetPixelMapusv (
int map,
short[] values
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapusv ( GLenum map , GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBitmap (
int width,
int height,
@@ -3180,13 +3180,13 @@
float ymove,
byte[] bitmap
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBitmap ( GLsizei width , GLsizei height , GLfloat xorig , GLfloat yorig , GLfloat xmove , GLfloat ymove , const GLubyte * bitmap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReadPixels (
int x,
int y,
@@ -3259,13 +3259,13 @@
int type,
Buffer pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReadPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDrawPixels (
int width,
int height,
@@ -3322,13 +3322,13 @@
int type,
Buffer pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawPixels ( GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyPixels (
int x,
int y,
@@ -3336,335 +3336,335 @@
int height,
int type
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glStencilFunc (
int func,
int ref,
int mask
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilFunc ( GLenum func , GLint ref , GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glStencilMask (
int mask
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glStencilOp (
int fail,
int zfail,
int zpass
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilOp ( GLenum fail , GLenum zfail , GLenum zpass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClearStencil (
int s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClearStencil ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexGend (
int coord,
int pname,
double param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGend ( GLenum coord , GLenum pname , GLdouble param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexGenf (
int coord,
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenf ( GLenum coord , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexGeni (
int coord,
int pname,
int param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeni ( GLenum coord , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexGendv (
int coord,
int pname,
double[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGendv ( GLenum coord , GLenum pname , const GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexGenfv (
int coord,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenfv ( GLenum coord , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexGeniv (
int coord,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeniv ( GLenum coord , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexGendv (
int coord,
int pname,
double[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGendv ( GLenum coord , GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexGenfv (
int coord,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGenfv ( GLenum coord , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexGeniv (
int coord,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGeniv ( GLenum coord , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexEnvf (
int target,
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexEnvi (
int target,
int pname,
int param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvi ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexEnvfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexEnviv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnviv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexEnvfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnvfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexEnviv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnviv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexParameterf (
int target,
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexParameteri (
int target,
int pname,
int param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteri ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexParameterfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexParameteriv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexParameterfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexParameteriv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexLevelParameterfv (
int target,
int level,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameterfv ( GLenum target , GLint level , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexLevelParameteriv (
int target,
int level,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameteriv ( GLenum target , GLint level , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexImage1D (
int target,
int level,
@@ -3745,13 +3745,13 @@
int type,
Buffer pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage1D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexImage2D (
int target,
int level,
@@ -3840,13 +3840,13 @@
int type,
Buffer pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage2D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLsizei height , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexImage (
int target,
int level,
@@ -3903,80 +3903,80 @@
int type,
Buffer pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexImage ( GLenum target , GLint level , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGenTextures (
int n,
int[] textures
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTextures ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeleteTextures (
int n,
int[] textures
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTextures ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBindTexture (
int target,
int texture
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTexture ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPrioritizeTextures (
int n,
int[] textures,
float[] priorities
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTextures ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glAreTexturesResident (
int n,
int[] textures,
boolean[] residences
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResident ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glIsTexture (
int texture
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTexture ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexSubImage1D (
int target,
int level,
@@ -4049,13 +4049,13 @@
int type,
Buffer pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexSubImage2D (
int target,
int level,
@@ -4144,13 +4144,13 @@
int type,
Buffer pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexImage1D (
int target,
int level,
@@ -4160,13 +4160,13 @@
int width,
int border
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexImage2D (
int target,
int level,
@@ -4177,13 +4177,13 @@
int height,
int border
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexSubImage1D (
int target,
int level,
@@ -4192,13 +4192,13 @@
int y,
int width
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexSubImage2D (
int target,
int level,
@@ -4209,13 +4209,13 @@
int width,
int height
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMap1d (
int target,
double u1,
@@ -4224,13 +4224,13 @@
int order,
double[] points
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint stride , GLint order , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMap1f (
int target,
float u1,
@@ -4239,13 +4239,13 @@
int order,
float[] points
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint stride , GLint order , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMap2d (
int target,
double u1,
@@ -4258,13 +4258,13 @@
int vorder,
double[] points
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint ustride , GLint uorder , GLdouble v1 , GLdouble v2 , GLint vstride , GLint vorder , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMap2f (
int target,
float u1,
@@ -4277,155 +4277,155 @@
int vorder,
float[] points
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint ustride , GLint uorder , GLfloat v1 , GLfloat v2 , GLint vstride , GLint vorder , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMapdv (
int target,
int query,
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapdv ( GLenum target , GLenum query , GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMapfv (
int target,
int query,
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapfv ( GLenum target , GLenum query , GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMapiv (
int target,
int query,
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapiv ( GLenum target , GLenum query , GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalCoord1d (
double u
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1d ( GLdouble u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalCoord1f (
float u
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1f ( GLfloat u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalCoord1dv (
double[] u
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalCoord1fv (
float[] u
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalCoord2d (
double u,
double v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2d ( GLdouble u , GLdouble v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalCoord2f (
float u,
float v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2f ( GLfloat u , GLfloat v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalCoord2dv (
double[] u
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalCoord2fv (
float[] u
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMapGrid1d (
int un,
double u1,
double u2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1d ( GLint un , GLdouble u1 , GLdouble u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMapGrid1f (
int un,
float u1,
float u2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1f ( GLint un , GLfloat u1 , GLfloat u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMapGrid2d (
int un,
double u1,
@@ -4434,13 +4434,13 @@
double v1,
double v2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2d ( GLint un , GLdouble u1 , GLdouble u2 , GLint vn , GLdouble v1 , GLdouble v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMapGrid2f (
int un,
float u1,
@@ -4449,46 +4449,46 @@
float v1,
float v2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2f ( GLint un , GLfloat u1 , GLfloat u2 , GLint vn , GLfloat v1 , GLfloat v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalPoint1 (
int i
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint1 ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalPoint2 (
int i,
int j
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint2 ( GLint i , GLint j ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalMesh1 (
int mode,
int i1,
int i2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh1 ( GLenum mode , GLint i1 , GLint i2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalMesh2 (
int mode,
int i1,
@@ -4496,128 +4496,128 @@
int j1,
int j2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh2 ( GLenum mode , GLint i1 , GLint i2 , GLint j1 , GLint j2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogf (
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogi (
int pname,
int param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogfv (
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogiv (
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogiv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFeedbackBuffer (
int size,
int type,
float[] buffer
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFeedbackBuffer ( GLsizei size , GLenum type , GLfloat * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPassThrough (
float token
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPassThrough ( GLfloat token ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSelectBuffer (
int size,
int[] buffer
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSelectBuffer ( GLsizei size , GLuint * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glInitNames (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glInitNames ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadName (
int name
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPushName (
int name
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPushName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPopName (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPopName ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDrawRangeElements (
int mode,
int start,
@@ -4682,13 +4682,13 @@
int type,
Buffer indices
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElements ( GLenum mode , GLuint start , GLuint end , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexImage3D (
int target,
int level,
@@ -4785,13 +4785,13 @@
int type,
Buffer pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3D ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexSubImage3D (
int target,
int level,
@@ -4896,13 +4896,13 @@
int type,
Buffer pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexSubImage3D (
int target,
int level,
@@ -4914,13 +4914,13 @@
int width,
int height
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorTable (
int target,
int internalformat,
@@ -4985,13 +4985,13 @@
int type,
Buffer table
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTable ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorSubTable (
int target,
int start,
@@ -5056,37 +5056,37 @@
int type,
Buffer data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTable ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorTableParameteriv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorTableParameterfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyColorSubTable (
int target,
int start,
@@ -5094,13 +5094,13 @@
int y,
int width
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTable ( GLenum target , GLsizei start , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyColorTable (
int target,
int internalformat,
@@ -5108,13 +5108,13 @@
int y,
int width
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTable ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetColorTable (
int target,
int format,
@@ -5163,83 +5163,83 @@
int type,
Buffer table
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTable ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetColorTableParameterfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetColorTableParameteriv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBlendEquation (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquation ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBlendColor (
float red,
float green,
float blue,
float alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glHistogram (
int target,
int width,
int internalformat,
boolean sink
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogram ( GLenum target , GLsizei width , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glResetHistogram (
int target
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogram ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetHistogram (
int target,
boolean reset,
@@ -5296,59 +5296,59 @@
int type,
Buffer values
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogram ( GLenum target , GLboolean reset , GLenum format , GLenum type , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetHistogramParameterfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetHistogramParameteriv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMinmax (
int target,
int internalformat,
boolean sink
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmax ( GLenum target , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glResetMinmax (
int target
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmax ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMinmax (
int target,
boolean reset,
@@ -5405,37 +5405,37 @@
int types,
Buffer values
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmax ( GLenum target , GLboolean reset , GLenum format , GLenum types , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMinmaxParameterfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMinmaxParameteriv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionFilter1D (
int target,
int internalformat,
@@ -5500,13 +5500,13 @@
int type,
Buffer image
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1D ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionFilter2D (
int target,
int internalformat,
@@ -5579,61 +5579,61 @@
int type,
Buffer image
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionParameterf (
int target,
int pname,
float params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterf ( GLenum target , GLenum pname , GLfloat params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionParameterfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionParameteri (
int target,
int pname,
int params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteri ( GLenum target , GLenum pname , GLint params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionParameteriv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyConvolutionFilter1D (
int target,
int internalformat,
@@ -5641,13 +5641,13 @@
int y,
int width
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyConvolutionFilter2D (
int target,
int internalformat,
@@ -5656,13 +5656,13 @@
int width,
int height
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetConvolutionFilter (
int target,
int format,
@@ -5711,37 +5711,37 @@
int type,
Buffer image
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilter ( GLenum target , GLenum format , GLenum type , GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetConvolutionParameterfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetConvolutionParameteriv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSeparableFilter2D (
int target,
int internalformat,
@@ -5822,13 +5822,13 @@
Buffer row,
Buffer column
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * row , const GLvoid * column ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetSeparableFilter (
int target,
int format,
@@ -5893,33 +5893,33 @@
Buffer column,
Buffer span
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilter ( GLenum target , GLenum format , GLenum type , GLvoid * row , GLvoid * column , GLvoid * span ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glActiveTexture (
int texture
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClientActiveTexture (
int texture
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexImage1D (
int target,
int level,
@@ -5992,13 +5992,13 @@
int imageSize,
Buffer data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexImage2D (
int target,
int level,
@@ -6079,13 +6079,13 @@
int imageSize,
Buffer data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexImage3D (
int target,
int level,
@@ -6174,13 +6174,13 @@
int imageSize,
Buffer data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexSubImage1D (
int target,
int level,
@@ -6253,13 +6253,13 @@
int imageSize,
Buffer data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexSubImage2D (
int target,
int level,
@@ -6348,13 +6348,13 @@
int imageSize,
Buffer data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexSubImage3D (
int target,
int level,
@@ -6459,13 +6459,13 @@
int imageSize,
Buffer data
) ;
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetCompressedTexImage (
int target,
int lod,
@@ -6506,289 +6506,289 @@
int lod,
Buffer img
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImage ( GLenum target , GLint lod , GLvoid * img ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1d (
int target,
double s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1d ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1dv (
int target,
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1f (
int target,
float s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1f ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1fv (
int target,
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1i (
int target,
int s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1i ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1iv (
int target,
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1s (
int target,
short s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1s ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1sv (
int target,
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2d (
int target,
double s,
double t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2d ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2dv (
int target,
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2f (
int target,
float s,
float t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2f ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2fv (
int target,
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2i (
int target,
int s,
int t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2i ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2iv (
int target,
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2s (
int target,
short s,
short t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2s ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2sv (
int target,
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3d (
int target,
double s,
double t,
double r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3d ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3dv (
int target,
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3f (
int target,
float s,
float t,
float r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3f ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3fv (
int target,
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3i (
int target,
int s,
int t,
int r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3i ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3iv (
int target,
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3s (
int target,
short s,
short t,
short r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3s ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3sv (
int target,
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4d (
int target,
double s,
@@ -6796,24 +6796,24 @@
double r,
double q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4d ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4dv (
int target,
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4f (
int target,
float s,
@@ -6821,24 +6821,24 @@
float r,
float q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4f ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4fv (
int target,
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4i (
int target,
int s,
@@ -6846,24 +6846,24 @@
int r,
int q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4i ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4iv (
int target,
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4s (
int target,
short s,
@@ -6871,381 +6871,381 @@
short r,
short q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4s ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4sv (
int target,
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadTransposeMatrixd (
double[] m
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadTransposeMatrixf (
float[] m
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultTransposeMatrixd (
double[] m
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultTransposeMatrixf (
float[] m
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSampleCoverage (
float value,
boolean invert
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverage ( GLclampf value , GLboolean invert ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSamplePass (
int pass
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePass ( GLenum pass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glActiveTextureARB (
int texture
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClientActiveTextureARB (
int texture
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1dARB (
int target,
double s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dARB ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1dvARB (
int target,
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1fARB (
int target,
float s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fARB ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1fvARB (
int target,
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1iARB (
int target,
int s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iARB ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1ivARB (
int target,
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1sARB (
int target,
short s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sARB ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1svARB (
int target,
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2dARB (
int target,
double s,
double t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dARB ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2dvARB (
int target,
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2fARB (
int target,
float s,
float t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fARB ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2fvARB (
int target,
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2iARB (
int target,
int s,
int t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iARB ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2ivARB (
int target,
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2sARB (
int target,
short s,
short t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sARB ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2svARB (
int target,
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3dARB (
int target,
double s,
double t,
double r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3dvARB (
int target,
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3fARB (
int target,
float s,
float t,
float r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3fvARB (
int target,
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3iARB (
int target,
int s,
int t,
int r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iARB ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3ivARB (
int target,
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3sARB (
int target,
short s,
short t,
short r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sARB ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3svARB (
int target,
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4dARB (
int target,
double s,
@@ -7253,24 +7253,24 @@
double r,
double q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4dvARB (
int target,
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4fARB (
int target,
float s,
@@ -7278,24 +7278,24 @@
float r,
float q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4fvARB (
int target,
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4iARB (
int target,
int s,
@@ -7303,24 +7303,24 @@
int r,
int q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iARB ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4ivARB (
int target,
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4sARB (
int target,
short s,
@@ -7328,48 +7328,48 @@
short r,
short q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sARB ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4svARB (
int target,
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBlendColorEXT (
float red,
float green,
float blue,
float alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColorEXT ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPolygonOffsetEXT (
float factor,
float bias
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffsetEXT ( GLfloat factor , GLfloat bias ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexImage3DEXT (
int target,
int level,
@@ -7466,13 +7466,13 @@
int type,
Buffer pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3DEXT ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexSubImage3DEXT (
int target,
int level,
@@ -7577,13 +7577,13 @@
int type,
Buffer pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexSubImage3DEXT (
int target,
int level,
@@ -7595,80 +7595,80 @@
int width,
int height
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3DEXT ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGenTexturesEXT (
int n,
int[] textures
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTexturesEXT ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeleteTexturesEXT (
int n,
int[] textures
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTexturesEXT ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBindTextureEXT (
int target,
int texture
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTextureEXT ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPrioritizeTexturesEXT (
int n,
int[] textures,
float[] priorities
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTexturesEXT ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glAreTexturesResidentEXT (
int n,
int[] textures,
boolean[] residences
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResidentEXT ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glIsTextureEXT (
int texture
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTextureEXT ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexPointerEXT (
int size,
int type,
@@ -7725,13 +7725,13 @@
int count,
Buffer ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalPointerEXT (
int type,
int stride,
@@ -7780,13 +7780,13 @@
int count,
Buffer ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorPointerEXT (
int size,
int type,
@@ -7843,13 +7843,13 @@
int count,
Buffer ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexPointerEXT (
int type,
int stride,
@@ -7898,13 +7898,13 @@
int count,
Buffer ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoordPointerEXT (
int size,
int type,
@@ -7961,25 +7961,25 @@
int count,
Buffer ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEdgeFlagPointerEXT (
int stride,
int count,
boolean[] ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerEXT ( GLsizei stride , GLsizei count , const GLboolean * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetPointervEXT (
int pname,
byte[][] params
@@ -8008,89 +8008,89 @@
int pname,
long[][] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointervEXT ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glArrayElementEXT (
int i
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElementEXT ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDrawArraysEXT (
int mode,
int first,
int count
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArraysEXT ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBlendEquationEXT (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquationEXT ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPointParameterfEXT (
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfEXT ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPointParameterfvEXT (
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvEXT ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPointParameterfSGIS (
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfSGIS ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPointParameterfvSGIS (
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvSGIS ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorTableEXT (
int target,
int internalformat,
@@ -8155,13 +8155,13 @@
int type,
Buffer table
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableEXT ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorSubTableEXT (
int target,
int start,
@@ -8226,13 +8226,13 @@
int type,
Buffer data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTableEXT ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetColorTableEXT (
int target,
int format,
@@ -8281,108 +8281,108 @@
int type,
Buffer table
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableEXT ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetColorTableParameterfvEXT (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvEXT ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetColorTableParameterivEXT (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivEXT ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLockArraysEXT (
int first,
int count
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLockArraysEXT ( GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glUnlockArraysEXT (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glUnlockArraysEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadTransposeMatrixfARB (
float[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadTransposeMatrixdARB (
double[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultTransposeMatrixfARB (
float[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultTransposeMatrixdARB (
double[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSampleCoverageARB (
float arg0,
boolean arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverageARB ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexImage3DARB (
int arg0,
int arg1,
@@ -8471,13 +8471,13 @@
int arg7,
Buffer arg8
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexImage2DARB (
int arg0,
int arg1,
@@ -8558,13 +8558,13 @@
int arg6,
Buffer arg7
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexImage1DARB (
int arg0,
int arg1,
@@ -8637,13 +8637,13 @@
int arg5,
Buffer arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1DARB ( GLenum , GLint , GLenum , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexSubImage3DARB (
int arg0,
int arg1,
@@ -8748,13 +8748,13 @@
int arg9,
Buffer arg10
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage3DARB ( GLenum , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexSubImage2DARB (
int arg0,
int arg1,
@@ -8843,13 +8843,13 @@
int arg7,
Buffer arg8
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2DARB ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexSubImage1DARB (
int arg0,
int arg1,
@@ -8922,13 +8922,13 @@
int arg5,
Buffer arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1DARB ( GLenum , GLint , GLint , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetCompressedTexImageARB (
int arg0,
int arg1,
@@ -8969,101 +8969,101 @@
int arg1,
Buffer arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImageARB ( GLenum , GLint , void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWeightbvARB (
int arg0,
byte[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightbvARB ( GLint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWeightsvARB (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightsvARB ( GLint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWeightivARB (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightivARB ( GLint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWeightfvARB (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightfvARB ( GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWeightdvARB (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightdvARB ( GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWeightubvARB (
int arg0,
byte[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWeightusvARB (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWeightuivARB (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWeightPointerARB (
int arg0,
int arg1,
@@ -9112,66 +9112,66 @@
int arg2,
Buffer arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexBlendARB (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCurrentPaletteMatrixARB (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCurrentPaletteMatrixARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMatrixIndexubvARB (
int arg0,
byte[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMatrixIndexusvARB (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMatrixIndexuivARB (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMatrixIndexPointerARB (
int arg0,
int arg1,
@@ -9220,38 +9220,38 @@
int arg2,
Buffer arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexFilterFuncSGIS (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexFilterFuncSGIS ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexFilterFuncSGIS (
int arg0,
int arg1,
int arg2,
float[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexFilterFuncSGIS ( GLenum , GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexSubImage1DEXT (
int arg0,
int arg1,
@@ -9324,13 +9324,13 @@
int arg5,
Buffer arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1DEXT ( GLenum , GLint , GLint , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexSubImage2DEXT (
int arg0,
int arg1,
@@ -9419,13 +9419,13 @@
int arg7,
Buffer arg8
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexImage1DEXT (
int arg0,
int arg1,
@@ -9435,13 +9435,13 @@
int arg5,
int arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexImage2DEXT (
int arg0,
int arg1,
@@ -9452,13 +9452,13 @@
int arg6,
int arg7
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexSubImage1DEXT (
int arg0,
int arg1,
@@ -9467,13 +9467,13 @@
int arg4,
int arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1DEXT ( GLenum , GLint , GLint , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexSubImage2DEXT (
int arg0,
int arg1,
@@ -9484,13 +9484,13 @@
int arg6,
int arg7
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetHistogramEXT (
int arg0,
boolean arg1,
@@ -9547,37 +9547,37 @@
int arg3,
Buffer arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetHistogramParameterfvEXT (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetHistogramParameterivEXT (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMinmaxEXT (
int arg0,
boolean arg1,
@@ -9634,82 +9634,82 @@
int arg3,
Buffer arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMinmaxParameterfvEXT (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMinmaxParameterivEXT (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glHistogramEXT (
int arg0,
int arg1,
int arg2,
boolean arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogramEXT ( GLenum , GLsizei , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMinmaxEXT (
int arg0,
int arg1,
boolean arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmaxEXT ( GLenum , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glResetHistogramEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogramEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glResetMinmaxEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmaxEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionFilter1DEXT (
int arg0,
int arg1,
@@ -9774,13 +9774,13 @@
int arg4,
Buffer arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1DEXT ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionFilter2DEXT (
int arg0,
int arg1,
@@ -9853,61 +9853,61 @@
int arg5,
Buffer arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionParameterfEXT (
int arg0,
int arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionParameterfvEXT (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionParameteriEXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionParameterivEXT (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyConvolutionFilter1DEXT (
int arg0,
int arg1,
@@ -9915,13 +9915,13 @@
int arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1DEXT ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyConvolutionFilter2DEXT (
int arg0,
int arg1,
@@ -9930,13 +9930,13 @@
int arg4,
int arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2DEXT ( GLenum , GLenum , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetConvolutionFilterEXT (
int arg0,
int arg1,
@@ -9985,37 +9985,37 @@
int arg2,
Buffer arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilterEXT ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetConvolutionParameterfvEXT (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetConvolutionParameterivEXT (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetSeparableFilterEXT (
int arg0,
int arg1,
@@ -10080,13 +10080,13 @@
Buffer arg4,
Buffer arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilterEXT ( GLenum , GLenum , GLenum , GLvoid * , GLvoid * , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSeparableFilter2DEXT (
int arg0,
int arg1,
@@ -10167,13 +10167,13 @@
Buffer arg6,
Buffer arg7
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorTableSGI (
int arg0,
int arg1,
@@ -10238,37 +10238,37 @@
int arg4,
Buffer arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableSGI ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorTableParameterfvSGI (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfvSGI ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorTableParameterivSGI (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterivSGI ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyColorTableSGI (
int arg0,
int arg1,
@@ -10276,13 +10276,13 @@
int arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTableSGI ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetColorTableSGI (
int arg0,
int arg1,
@@ -10331,113 +10331,113 @@
int arg2,
Buffer arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableSGI ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetColorTableParameterfvSGI (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvSGI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetColorTableParameterivSGI (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivSGI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTexGenSGIX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenSGIX ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTexGenParameteriSGIS (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameteriSGIS ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTexGenParameterivSGIS (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterivSGIS ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTexGenParameterfSGIS (
int arg0,
float arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfSGIS ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTexGenParameterfvSGIS (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfvSGIS ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetPixelTexGenParameterivSGIS (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterivSGIS ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetPixelTexGenParameterfvSGIS (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterfvSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexImage4DSGIS (
int arg0,
int arg1,
@@ -10542,13 +10542,13 @@
int arg9,
Buffer arg10
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage4DSGIS ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLsizei , GLint , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexSubImage4DSGIS (
int arg0,
int arg1,
@@ -10669,224 +10669,224 @@
int arg11,
Buffer arg12
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage4DSGIS ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDetailTexFuncSGIS (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDetailTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetDetailTexFuncSGIS (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDetailTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSharpenTexFuncSGIS (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSharpenTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetSharpenTexFuncSGIS (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSharpenTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSampleMaskSGIS (
float arg0,
boolean arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskSGIS ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSamplePatternSGIS (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternSGIS ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSpriteParameterfSGIX (
int arg0,
float arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSpriteParameterfvSGIX (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSpriteParameteriSGIX (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameteriSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSpriteParameterivSGIX (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPointParameterfARB (
int arg0,
float arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfARB ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPointParameterfvARB (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvARB ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glGetInstrumentsSGIX (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint glGetInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glInstrumentsBufferSGIX (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glInstrumentsBufferSGIX ( GLsizei , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glPollInstrumentsSGIX (
int[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollInstrumentsSGIX ( GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReadInstrumentsSGIX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReadInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glStartInstrumentsSGIX (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glStartInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glStopInstrumentsSGIX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glStopInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFrameZoomSGIX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFrameZoomSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTagSampleBufferSGIX (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTagSampleBufferSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeformationMap3dSGIX (
int arg0,
double arg1,
@@ -10903,13 +10903,13 @@
int arg12,
double[] arg13
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3dSGIX ( GLenum , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeformationMap3fSGIX (
int arg0,
float arg1,
@@ -10926,145 +10926,145 @@
int arg12,
float[] arg13
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3fSGIX ( GLenum , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeformSGIX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadIdentityDeformationMapSGIX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentityDeformationMapSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReferencePlaneSGIX (
double[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReferencePlaneSGIX ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFlushRasterSGIX (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushRasterSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogFuncSGIS (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogFuncSGIS ( GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetFogFuncSGIS (
float[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFogFuncSGIS ( GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glImageTransformParameteriHP (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameteriHP ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glImageTransformParameterfHP (
int arg0,
int arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfHP ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glImageTransformParameterivHP (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterivHP ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glImageTransformParameterfvHP (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfvHP ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetImageTransformParameterivHP (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterivHP ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetImageTransformParameterfvHP (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterfvHP ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyColorSubTableEXT (
int arg0,
int arg1,
@@ -11072,350 +11072,350 @@
int arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTableEXT ( GLenum , GLsizei , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glHintPGI (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glHintPGI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetListParameterfvSGIX (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterfvSGIX ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetListParameterivSGIX (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterivSGIX ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glListParameterfSGIX (
int arg0,
int arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfSGIX ( GLuint , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glListParameterfvSGIX (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfvSGIX ( GLuint , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glListParameteriSGIX (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameteriSGIX ( GLuint , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glListParameterivSGIX (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterivSGIX ( GLuint , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexMaterialEXT (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexFuncEXT (
int arg0,
float arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexFuncEXT ( GLenum , GLclampf ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCullParameterdvEXT (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterdvEXT ( GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCullParameterfvEXT (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterfvEXT ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentColorMaterialSGIX (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentColorMaterialSGIX ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentLightfSGIX (
int arg0,
int arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentLightfvSGIX (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentLightiSGIX (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentLightivSGIX (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentLightModelfSGIX (
int arg0,
float arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentLightModelfvSGIX (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentLightModeliSGIX (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModeliSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentLightModelivSGIX (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentMaterialfSGIX (
int arg0,
int arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentMaterialfvSGIX (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentMaterialiSGIX (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentMaterialivSGIX (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetFragmentLightfvSGIX (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetFragmentLightivSGIX (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetFragmentMaterialfvSGIX (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetFragmentMaterialivSGIX (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLightEnviSGIX (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLightEnviSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDrawRangeElementsEXT (
int arg0,
int arg1,
@@ -11480,105 +11480,105 @@
int arg4,
Buffer arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElementsEXT ( GLenum , GLuint , GLuint , GLsizei , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glApplyTextureEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glApplyTextureEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTextureLightEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureLightEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTextureMaterialEXT (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glAsyncMarkerSGIX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glFinishAsyncSGIX (
int[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint glFinishAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glPollAsyncSGIX (
int[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glGenAsyncMarkersSGIX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenAsyncMarkersSGIX ( GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeleteAsyncMarkersSGIX (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteAsyncMarkersSGIX ( GLuint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glIsAsyncMarkerSGIX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexPointervINTEL (
int arg0,
int arg1,
@@ -11614,13 +11614,13 @@
int arg1,
long[][] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalPointervINTEL (
int arg0,
byte[][] arg1
@@ -11649,13 +11649,13 @@
int arg0,
long[][] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointervINTEL ( GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorPointervINTEL (
int arg0,
int arg1,
@@ -11691,13 +11691,13 @@
int arg1,
long[][] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoordPointervINTEL (
int arg0,
int arg1,
@@ -11733,237 +11733,237 @@
int arg1,
long[][] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTransformParameteriEXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTransformParameterfEXT (
int arg0,
int arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTransformParameterivEXT (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTransformParameterfvEXT (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3bEXT (
byte arg0,
byte arg1,
byte arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3bvEXT (
byte[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3dEXT (
double arg0,
double arg1,
double arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3dvEXT (
double[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3fEXT (
float arg0,
float arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3fvEXT (
float[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3iEXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3ivEXT (
int[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3sEXT (
short arg0,
short arg1,
short arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3svEXT (
short[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3ubEXT (
byte arg0,
byte arg1,
byte arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubEXT ( GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3ubvEXT (
byte[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubvEXT ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3uiEXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uiEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3uivEXT (
int[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uivEXT ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3usEXT (
short arg0,
short arg1,
short arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usEXT ( GLushort , GLushort , GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3usvEXT (
short[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usvEXT ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColorPointerEXT (
int arg0,
int arg1,
@@ -12012,36 +12012,36 @@
int arg2,
Buffer arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerEXT ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTextureNormalEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureNormalEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiDrawArraysEXT (
int arg0,
int[] arg1,
int[] arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawArraysEXT ( GLenum , GLint * , GLsizei * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiDrawElementsEXT (
int arg0,
int[] arg1,
@@ -12091,53 +12091,53 @@
long[][] arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawElementsEXT ( GLenum , const GLsizei * , GLenum , const GLvoid * * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogCoordfEXT (
float arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogCoordfvEXT (
float[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogCoorddEXT (
double arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddEXT ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogCoorddvEXT (
double[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogCoordPointerEXT (
int arg0,
int arg1,
@@ -12178,233 +12178,233 @@
int arg1,
Buffer arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3bEXT (
byte arg0,
byte arg1,
byte arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3bvEXT (
byte[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3dEXT (
double arg0,
double arg1,
double arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3dvEXT (
double[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3fEXT (
float arg0,
float arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3fvEXT (
float[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3iEXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3ivEXT (
int[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3sEXT (
short arg0,
short arg1,
short arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3svEXT (
short[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3bEXT (
byte arg0,
byte arg1,
byte arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3bvEXT (
byte[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3dEXT (
double arg0,
double arg1,
double arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3dvEXT (
double[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3fEXT (
float arg0,
float arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3fvEXT (
float[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3iEXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3ivEXT (
int[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3sEXT (
short arg0,
short arg1,
short arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3svEXT (
short[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangentPointerEXT (
int arg0,
int arg1,
@@ -12445,13 +12445,13 @@
int arg1,
Buffer arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangentPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormalPointerEXT (
int arg0,
int arg1,
@@ -12492,162 +12492,162 @@
int arg1,
Buffer arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormalPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFinishTextureSUNX (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishTextureSUNX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGlobalAlphaFactorbSUN (
byte arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorbSUN ( GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGlobalAlphaFactorsSUN (
short arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorsSUN ( GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGlobalAlphaFactoriSUN (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoriSUN ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGlobalAlphaFactorfSUN (
float arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorfSUN ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGlobalAlphaFactordSUN (
double arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactordSUN ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGlobalAlphaFactorubSUN (
byte arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGlobalAlphaFactorusSUN (
short arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGlobalAlphaFactoruiSUN (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoruiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiSUN (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeusSUN (
short arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeubSUN (
byte arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuivSUN (
int[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuivSUN ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeusvSUN (
short[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusvSUN ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeubvSUN (
byte[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubvSUN ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodePointerSUN (
int arg0,
int arg1,
@@ -12683,13 +12683,13 @@
int arg1,
long[][] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodePointerSUN ( GLenum , GLsizei , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4ubVertex2fSUN (
byte arg0,
byte arg1,
@@ -12698,24 +12698,24 @@
float arg4,
float arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4ubVertex2fvSUN (
byte[] arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4ubVertex3fSUN (
byte arg0,
byte arg1,
@@ -12725,24 +12725,24 @@
float arg5,
float arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4ubVertex3fvSUN (
byte[] arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3fVertex3fSUN (
float arg0,
float arg1,
@@ -12751,24 +12751,24 @@
float arg4,
float arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3fVertex3fvSUN (
float[] arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3fVertex3fSUN (
float arg0,
float arg1,
@@ -12777,24 +12777,24 @@
float arg4,
float arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3fVertex3fvSUN (
float[] arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4fNormal3fVertex3fSUN (
float arg0,
float arg1,
@@ -12807,25 +12807,25 @@
float arg8,
float arg9
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4fNormal3fVertex3fvSUN (
float[] arg0,
float[] arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fVertex3fSUN (
float arg0,
float arg1,
@@ -12833,24 +12833,24 @@
float arg3,
float arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fVertex3fvSUN (
float[] arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4fVertex4fSUN (
float arg0,
float arg1,
@@ -12861,24 +12861,24 @@
float arg6,
float arg7
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4fVertex4fvSUN (
float[] arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fColor4ubVertex3fSUN (
float arg0,
float arg1,
@@ -12890,25 +12890,25 @@
float arg7,
float arg8
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fSUN ( GLfloat , GLfloat , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fColor4ubVertex3fvSUN (
float[] arg0,
byte[] arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fvSUN ( const GLfloat * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fColor3fVertex3fSUN (
float arg0,
float arg1,
@@ -12919,25 +12919,25 @@
float arg6,
float arg7
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fColor3fVertex3fvSUN (
float[] arg0,
float[] arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fNormal3fVertex3fSUN (
float arg0,
float arg1,
@@ -12948,25 +12948,25 @@
float arg6,
float arg7
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fNormal3fVertex3fvSUN (
float[] arg0,
float[] arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fColor4fNormal3fVertex3fSUN (
float arg0,
float arg1,
@@ -12981,26 +12981,26 @@
float arg10,
float arg11
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fColor4fNormal3fVertex3fvSUN (
float[] arg0,
float[] arg1,
float[] arg2,
float[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4fColor4fNormal3fVertex4fSUN (
float arg0,
float arg1,
@@ -13018,50 +13018,50 @@
float arg13,
float arg14
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4fColor4fNormal3fVertex4fvSUN (
float[] arg0,
float[] arg1,
float[] arg2,
float[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiVertex3fSUN (
int arg0,
float arg1,
float arg2,
float arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiVertex3fvSUN (
int[] arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fvSUN ( const GLenum * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiColor4ubVertex3fSUN (
int arg0,
byte arg1,
@@ -13072,25 +13072,25 @@
float arg6,
float arg7
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fSUN ( GLenum , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiColor4ubVertex3fvSUN (
int[] arg0,
byte[] arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fvSUN ( const GLenum * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiColor3fVertex3fSUN (
int arg0,
float arg1,
@@ -13100,25 +13100,25 @@
float arg5,
float arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiColor3fVertex3fvSUN (
int[] arg0,
float[] arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiNormal3fVertex3fSUN (
int arg0,
float arg1,
@@ -13128,25 +13128,25 @@
float arg5,
float arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiNormal3fVertex3fvSUN (
int[] arg0,
float[] arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiColor4fNormal3fVertex3fSUN (
int arg0,
float arg1,
@@ -13160,26 +13160,26 @@
float arg9,
float arg10
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiColor4fNormal3fVertex3fvSUN (
int[] arg0,
float[] arg1,
float[] arg2,
float[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiTexCoord2fVertex3fSUN (
int arg0,
float arg1,
@@ -13188,25 +13188,25 @@
float arg4,
float arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiTexCoord2fVertex3fvSUN (
int[] arg0,
float[] arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (
int arg0,
float arg1,
@@ -13218,26 +13218,26 @@
float arg7,
float arg8
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (
int[] arg0,
float[] arg1,
float[] arg2,
float[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (
int arg0,
float arg1,
@@ -13253,13 +13253,13 @@
float arg11,
float arg12
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (
int[] arg0,
float[] arg1,
@@ -13267,59 +13267,59 @@
float[] arg3,
float[] arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBlendFuncSeparateEXT (
int arg0,
int arg1,
int arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateEXT ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBlendFuncSeparateINGR (
int arg0,
int arg1,
int arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateINGR ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexWeightfEXT (
float arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexWeightfvEXT (
float[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexWeightPointerEXT (
int arg0,
int arg1,
@@ -13368,22 +13368,22 @@
int arg2,
Buffer arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightPointerEXT ( GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFlushVertexArrayRangeNV (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushVertexArrayRangeNV ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexArrayRangeNV (
int arg0,
byte[] arg1
@@ -13416,57 +13416,57 @@
int arg0,
Buffer arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexArrayRangeNV ( GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCombinerParameterfvNV (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfvNV ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCombinerParameterfNV (
int arg0,
float arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfNV ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCombinerParameterivNV (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterivNV ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCombinerParameteriNV (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameteriNV ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCombinerInputNV (
int arg0,
int arg1,
@@ -13475,13 +13475,13 @@
int arg4,
int arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerInputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCombinerOutputNV (
int arg0,
int arg1,
@@ -13494,26 +13494,26 @@
boolean arg8,
boolean arg9
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerOutputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFinalCombinerInputNV (
int arg0,
int arg1,
int arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFinalCombinerInputNV ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetCombinerInputParameterfvNV (
int arg0,
int arg1,
@@ -13521,13 +13521,13 @@
int arg3,
float[] arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterfvNV ( GLenum , GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetCombinerInputParameterivNV (
int arg0,
int arg1,
@@ -13535,63 +13535,63 @@
int arg3,
int[] arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterivNV ( GLenum , GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetCombinerOutputParameterfvNV (
int arg0,
int arg1,
int arg2,
float[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterfvNV ( GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetCombinerOutputParameterivNV (
int arg0,
int arg1,
int arg2,
int[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterivNV ( GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetFinalCombinerInputParameterfvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetFinalCombinerInputParameterivNV (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiModeDrawArraysIBM (
int arg0,
int[] arg1,
@@ -13599,13 +13599,13 @@
int arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawArraysIBM ( GLenum , const GLint * , const GLsizei * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiModeDrawElementsIBM (
int[] arg0,
int[] arg1,
@@ -13662,13 +13662,13 @@
int arg4,
int arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawElementsIBM ( const GLenum * , const GLsizei * , GLenum , const GLvoid * * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorPointerListIBM (
int arg0,
int arg1,
@@ -13718,13 +13718,13 @@
long[][] arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColorPointerListIBM (
int arg0,
int arg1,
@@ -13774,25 +13774,25 @@
long[][] arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEdgeFlagPointerListIBM (
int arg0,
boolean[][] arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerListIBM ( GLint , const GLboolean * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogCoordPointerListIBM (
int arg0,
int arg1,
@@ -13835,13 +13835,13 @@
long[][] arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexPointerListIBM (
int arg0,
int arg1,
@@ -13884,13 +13884,13 @@
long[][] arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalPointerListIBM (
int arg0,
int arg1,
@@ -13933,13 +13933,13 @@
long[][] arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoordPointerListIBM (
int arg0,
int arg1,
@@ -13989,13 +13989,13 @@
long[][] arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexPointerListIBM (
int arg0,
int arg1,
@@ -14045,57 +14045,57 @@
long[][] arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTbufferMask3DFX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTbufferMask3DFX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSampleMaskEXT (
float arg0,
boolean arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskEXT ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSamplePatternEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTextureColorMaskSGIS (
boolean arg0,
boolean arg1,
boolean arg2,
boolean arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureColorMaskSGIS ( GLboolean , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIglooInterfaceSGIX (
int arg0,
byte[] arg1
@@ -14128,88 +14128,88 @@
int arg0,
Buffer arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIglooInterfaceSGIX ( GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGenFencesNV (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGenFencesNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeleteFencesNV (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFencesNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSetFenceNV (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFenceNV ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glTestFenceNV (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glTestFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFinishFenceNV (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glIsFenceNV (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetFenceivNV (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFenceivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMapControlPointsNV (
int arg0,
int arg1,
@@ -14298,37 +14298,37 @@
boolean arg7,
Buffer arg8
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLint , GLint , GLboolean , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMapParameterivNV (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterivNV ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMapParameterfvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMapControlPointsNV (
int arg0,
int arg1,
@@ -14401,265 +14401,265 @@
boolean arg5,
Buffer arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLboolean , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMapParameterivNV (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMapParameterfvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMapAttribParameterivNV (
int arg0,
int arg1,
int arg2,
int[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMapAttribParameterfvNV (
int arg0,
int arg1,
int arg2,
float[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalMapsNV (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMapsNV ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCombinerStageParameterfvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerStageParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetCombinerStageParameterfvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerStageParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBindProgramNV (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBindProgramNV ( GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeleteProgramsNV (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glExecuteProgramNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glExecuteProgramNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGenProgramsNV (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGenProgramsNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glAreProgramsResidentNV (
int arg0,
int[] arg1,
boolean[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreProgramsResidentNV ( GLsizei , const GLuint * , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRequestResidentProgramsNV (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRequestResidentProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetProgramParameterfvNV (
int arg0,
int arg1,
int arg2,
float[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetProgramParameterdvNV (
int arg0,
int arg1,
int arg2,
double[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterdvNV ( GLenum , GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetProgramivNV (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetProgramStringNV (
int arg0,
int arg1,
byte[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramStringNV ( GLuint , GLenum , GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTrackMatrixivNV (
int arg0,
int arg1,
int arg2,
int[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTrackMatrixivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVertexAttribdvNV (
int arg0,
int arg1,
double[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribdvNV ( GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVertexAttribfvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribfvNV ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVertexAttribivNV (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVertexAttribPointervNV (
int arg0,
int arg1,
@@ -14695,36 +14695,36 @@
int arg1,
long[][] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribPointervNV ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glIsProgramNV (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsProgramNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadProgramNV (
int arg0,
int arg1,
int arg2,
byte[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadProgramNV ( GLenum , GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glProgramParameter4fNV (
int arg0,
int arg1,
@@ -14733,13 +14733,13 @@
float arg4,
float arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fNV ( GLenum , GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glProgramParameter4dNV (
int arg0,
int arg1,
@@ -14748,76 +14748,76 @@
double arg4,
double arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dNV ( GLenum , GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glProgramParameter4dvNV (
int arg0,
int arg1,
double[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dvNV ( GLenum , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glProgramParameter4fvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fvNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glProgramParameters4dvNV (
int arg0,
int arg1,
int arg2,
double[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4dvNV ( GLenum , GLuint , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glProgramParameters4fvNV (
int arg0,
int arg1,
int arg2,
float[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4fvNV ( GLenum , GLuint , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTrackMatrixNV (
int arg0,
int arg1,
int arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTrackMatrixNV ( GLenum , GLuint , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribPointerNV (
int arg0,
int arg1,
@@ -14874,121 +14874,121 @@
int arg3,
Buffer arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribPointerNV ( GLuint , GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib1sNV (
int arg0,
short arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1sNV ( GLuint , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib1fNV (
int arg0,
float arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fNV ( GLuint , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib1dNV (
int arg0,
double arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dNV ( GLuint , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib2sNV (
int arg0,
short arg1,
short arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2sNV ( GLuint , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib2fNV (
int arg0,
float arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fNV ( GLuint , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib2dNV (
int arg0,
double arg1,
double arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dNV ( GLuint , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib3sNV (
int arg0,
short arg1,
short arg2,
short arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3sNV ( GLuint , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib3fNV (
int arg0,
float arg1,
float arg2,
float arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fNV ( GLuint , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib3dNV (
int arg0,
double arg1,
double arg2,
double arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dNV ( GLuint , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib4sNV (
int arg0,
short arg1,
@@ -14996,13 +14996,13 @@
short arg3,
short arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4sNV ( GLuint , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib4fNV (
int arg0,
float arg1,
@@ -15010,13 +15010,13 @@
float arg3,
float arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fNV ( GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib4dNV (
int arg0,
double arg1,
@@ -15024,13 +15024,13 @@
double arg3,
double arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dNV ( GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib4ubNV (
int arg0,
byte arg1,
@@ -15038,428 +15038,428 @@
byte arg3,
byte arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubNV ( GLuint , GLubyte , GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib1svNV (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib1fvNV (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib1dvNV (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib2svNV (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib2fvNV (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib2dvNV (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib3svNV (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib3fvNV (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib3dvNV (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib4svNV (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib4fvNV (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib4dvNV (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib4ubvNV (
int arg0,
byte[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubvNV ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs1svNV (
int arg0,
int arg1,
short[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs1fvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs1dvNV (
int arg0,
int arg1,
double[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs2svNV (
int arg0,
int arg1,
short[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs2fvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs2dvNV (
int arg0,
int arg1,
double[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs3svNV (
int arg0,
int arg1,
short[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs3fvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs3dvNV (
int arg0,
int arg1,
double[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs4svNV (
int arg0,
int arg1,
short[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs4fvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs4dvNV (
int arg0,
int arg1,
double[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs4ubvNV (
int arg0,
int arg1,
byte[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4ubvNV ( GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexBumpParameterivATI (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterivATI ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexBumpParameterfvATI (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterfvATI ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexBumpParameterivATI (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterivATI ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexBumpParameterfvATI (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterfvATI ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glGenFragmentShadersATI (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenFragmentShadersATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBindFragmentShaderATI (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBindFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeleteFragmentShaderATI (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBeginFragmentShaderATI (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEndFragmentShaderATI (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEndFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPassTexCoordATI (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPassTexCoordATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSampleMapATI (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMapATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorFragmentOp1ATI (
int arg0,
int arg1,
@@ -15469,13 +15469,13 @@
int arg5,
int arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorFragmentOp2ATI (
int arg0,
int arg1,
@@ -15488,13 +15488,13 @@
int arg8,
int arg9
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorFragmentOp3ATI (
int arg0,
int arg1,
@@ -15510,13 +15510,13 @@
int arg11,
int arg12
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glAlphaFragmentOp1ATI (
int arg0,
int arg1,
@@ -15525,13 +15525,13 @@
int arg4,
int arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glAlphaFragmentOp2ATI (
int arg0,
int arg1,
@@ -15543,13 +15543,13 @@
int arg7,
int arg8
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glAlphaFragmentOp3ATI (
int arg0,
int arg1,
@@ -15564,46 +15564,46 @@
int arg10,
int arg11
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSetFragmentShaderConstantATI (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFragmentShaderConstantATI ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPNTrianglesiATI (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesiATI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPNTrianglesfATI (
int arg0,
float arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesfATI ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glNewObjectBufferATI (
int arg0,
byte[] arg1,
@@ -15644,23 +15644,23 @@
Buffer arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glNewObjectBufferATI ( GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glIsObjectBufferATI (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glUpdateObjectBufferATI (
int arg0,
int arg1,
@@ -15717,47 +15717,47 @@
Buffer arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glUpdateObjectBufferATI ( GLuint , GLuint , GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetObjectBufferfvATI (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetObjectBufferivATI (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeleteObjectBufferATI (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glArrayObjectATI (
int arg0,
int arg1,
@@ -15766,37 +15766,37 @@
int arg4,
int arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayObjectATI ( GLenum , GLint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetArrayObjectfvATI (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectfvATI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetArrayObjectivATI (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectivATI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantArrayObjectATI (
int arg0,
int arg1,
@@ -15804,110 +15804,110 @@
int arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantArrayObjectATI ( GLuint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVariantArrayObjectfvATI (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVariantArrayObjectivATI (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBeginVertexShaderEXT (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEndVertexShaderEXT (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEndVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBindVertexShaderEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBindVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glGenVertexShadersEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenVertexShadersEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeleteVertexShaderEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glShaderOp1EXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp1EXT ( GLenum , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glShaderOp2EXT (
int arg0,
int arg1,
int arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp2EXT ( GLenum , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glShaderOp3EXT (
int arg0,
int arg1,
@@ -15915,13 +15915,13 @@
int arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp3EXT ( GLenum , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSwizzleEXT (
int arg0,
int arg1,
@@ -15930,13 +15930,13 @@
int arg4,
int arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSwizzleEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWriteMaskEXT (
int arg0,
int arg1,
@@ -15945,50 +15945,50 @@
int arg4,
int arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWriteMaskEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glInsertComponentEXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glInsertComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glExtractComponentEXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glExtractComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glGenSymbolsEXT (
int arg0,
int arg1,
int arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenSymbolsEXT ( GLenum , GLenum , GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSetInvariantEXT (
int arg0,
int arg1,
@@ -16029,13 +16029,13 @@
int arg1,
Buffer arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSetInvariantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSetLocalConstantEXT (
int arg0,
int arg1,
@@ -16076,101 +16076,101 @@
int arg1,
Buffer arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSetLocalConstantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantbvEXT (
int arg0,
byte[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantbvEXT ( GLuint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantsvEXT (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantsvEXT ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantivEXT (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantivEXT ( GLuint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantfvEXT (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantfvEXT ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantdvEXT (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantdvEXT ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantubvEXT (
int arg0,
byte[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantubvEXT ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantusvEXT (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantusvEXT ( GLuint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantuivEXT (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantuivEXT ( GLuint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantPointerEXT (
int arg0,
int arg1,
@@ -16219,135 +16219,135 @@
int arg2,
Buffer arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantPointerEXT ( GLuint , GLenum , GLuint , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEnableVariantClientStateEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDisableVariantClientStateEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glBindLightParameterEXT (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindLightParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glBindMaterialParameterEXT (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindMaterialParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glBindTexGenParameterEXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTexGenParameterEXT ( GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glBindTextureUnitParameterEXT (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTextureUnitParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glBindParameterEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindParameterEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glIsVariantEnabledEXT (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsVariantEnabledEXT ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVariantBooleanvEXT (
int arg0,
int arg1,
boolean[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVariantIntegervEXT (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVariantFloatvEXT (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVariantPointervEXT (
int arg0,
int arg1,
@@ -16383,361 +16383,361 @@
int arg1,
long[][] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantPointervEXT ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetInvariantBooleanvEXT (
int arg0,
int arg1,
boolean[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetInvariantIntegervEXT (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetInvariantFloatvEXT (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetLocalConstantBooleanvEXT (
int arg0,
int arg1,
boolean[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetLocalConstantIntegervEXT (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetLocalConstantFloatvEXT (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream1s (
int arg0,
short arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1s ( GLenum , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream1sv (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream1i (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1i ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream1iv (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream1f (
int arg0,
float arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1f ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream1fv (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream1d (
int arg0,
double arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1d ( GLenum , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream1dv (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream2s (
int arg0,
short arg1,
short arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2s ( GLenum , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream2sv (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream2i (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2i ( GLenum , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream2iv (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream2f (
int arg0,
float arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2f ( GLenum , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream2fv (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream2d (
int arg0,
double arg1,
double arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2d ( GLenum , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream2dv (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream3s (
int arg0,
short arg1,
short arg2,
short arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream3sv (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream3i (
int arg0,
int arg1,
int arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream3iv (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream3f (
int arg0,
float arg1,
float arg2,
float arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream3fv (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream3d (
int arg0,
double arg1,
double arg2,
double arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream3dv (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream4s (
int arg0,
short arg1,
@@ -16745,24 +16745,24 @@
short arg3,
short arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4s ( GLenum , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream4sv (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream4i (
int arg0,
int arg1,
@@ -16770,24 +16770,24 @@
int arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4i ( GLenum , GLint , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream4iv (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream4f (
int arg0,
float arg1,
@@ -16795,24 +16795,24 @@
float arg3,
float arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4f ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream4fv (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream4d (
int arg0,
double arg1,
@@ -16820,168 +16820,168 @@
double arg3,
double arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4d ( GLenum , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream4dv (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3b (
int arg0,
byte arg1,
byte arg2,
byte arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3b ( GLenum , GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3bv (
int arg0,
byte[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3bv ( GLenum , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3s (
int arg0,
short arg1,
short arg2,
short arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3sv (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3i (
int arg0,
int arg1,
int arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3iv (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3f (
int arg0,
float arg1,
float arg2,
float arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3fv (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3d (
int arg0,
double arg1,
double arg2,
double arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3dv (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClientActiveVertexStream (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveVertexStream ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexBlendEnvi (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvi ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
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/C2J/gl-proto-auto.java b/C2J/gl-proto-auto.java
index 33f28e6..37ca329 100644
--- a/C2J/gl-proto-auto.java
+++ b/C2J/gl-proto-auto.java
@@ -4,524 +4,524 @@
* Reading from file: gl-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvf ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClearIndex (
float c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClearIndex ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClearColor (
float red,
float green,
float blue,
float alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClearColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClear (
int mask
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClear ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexMask (
int mask
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorMask (
boolean red,
boolean green,
boolean blue,
boolean alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMask ( GLboolean red , GLboolean green , GLboolean blue , GLboolean alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glAlphaFunc (
int func,
float ref
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFunc ( GLenum func , GLclampf ref ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBlendFunc (
int sfactor,
int dfactor
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFunc ( GLenum sfactor , GLenum dfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLogicOp (
int opcode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLogicOp ( GLenum opcode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCullFace (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCullFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFrontFace (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFrontFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPointSize (
float size
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPointSize ( GLfloat size ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLineWidth (
float width
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLineWidth ( GLfloat width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLineStipple (
int factor,
short pattern
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLineStipple ( GLint factor , GLushort pattern ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPolygonMode (
int face,
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonMode ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPolygonOffset (
float factor,
float units
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffset ( GLfloat factor , GLfloat units ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPolygonStipple (
byte[] mask
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonStipple ( const GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetPolygonStipple (
byte[] mask
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPolygonStipple ( GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEdgeFlag (
boolean flag
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlag ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEdgeFlagv (
boolean[] flag
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagv ( const GLboolean * flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glScissor (
int x,
int y,
int width,
int height
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glScissor ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClipPlane (
int plane,
double[] equation
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClipPlane ( GLenum plane , const GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetClipPlane (
int plane,
double[] equation
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetClipPlane ( GLenum plane , GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDrawBuffer (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReadBuffer (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReadBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEnable (
int cap
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEnable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDisable (
int cap
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDisable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glIsEnabled (
int cap
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsEnabled ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEnableClientState (
int cap
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDisableClientState (
int cap
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetBooleanv (
int pname,
boolean[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetBooleanv ( GLenum pname , GLboolean * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetDoublev (
int pname,
double[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDoublev ( GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetFloatv (
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFloatv ( GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetIntegerv (
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetIntegerv ( GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPushAttrib (
int mask
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPushAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPopAttrib (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPopAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPushClientAttrib (
int mask
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPushClientAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPopClientAttrib (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPopClientAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glRenderMode (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint glRenderMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glGetError (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLenum glGetError ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFinish (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFinish ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFlush (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFlush ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glHint (
int target,
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glHint ( GLenum target , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClearDepth (
double depth
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClearDepth ( GLclampd depth ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDepthFunc (
int func
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthFunc ( GLenum func ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDepthMask (
boolean flag
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthMask ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDepthRange (
double near_val,
double far_val
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthRange ( GLclampd near_val , GLclampd far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClearAccum (
float red,
float green,
float blue,
float alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClearAccum ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glAccum (
int op,
float value
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glAccum ( GLenum op , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMatrixMode (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glOrtho (
double left,
double right,
@@ -530,13 +530,13 @@
double near_val,
double far_val
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glOrtho ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFrustum (
double left,
double right,
@@ -545,228 +545,228 @@
double near_val,
double far_val
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFrustum ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glViewport (
int x,
int y,
int width,
int height
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glViewport ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPushMatrix (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPushMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPopMatrix (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPopMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadIdentity (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentity ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadMatrixd (
double[] m
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadMatrixf (
float[] m
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultMatrixd (
double[] m
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultMatrixf (
float[] m
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRotated (
double angle,
double x,
double y,
double z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRotated ( GLdouble angle , GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRotatef (
float angle,
float x,
float y,
float z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRotatef ( GLfloat angle , GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glScaled (
double x,
double y,
double z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glScaled ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glScalef (
float x,
float y,
float z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glScalef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTranslated (
double x,
double y,
double z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslated ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTranslatef (
float x,
float y,
float z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslatef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glIsList (
int list
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeleteLists (
int list,
int range
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteLists ( GLuint list , GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glGenLists (
int range
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenLists ( GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNewList (
int list,
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNewList ( GLuint list , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEndList (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEndList ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCallList (
int list
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCallList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCallLists (
int n,
int type,
@@ -802,1580 +802,1580 @@
int type,
long[] lists
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCallLists ( GLsizei n , GLenum type , const GLvoid * lists ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glListBase (
int base
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glListBase ( GLuint base ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBegin (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBegin ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEnd (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEnd ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex2d (
double x,
double y
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex2f (
float x,
float y
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex2i (
int x,
int y
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex2s (
short x,
short y
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex3d (
double x,
double y,
double z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex3f (
float x,
float y,
float z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex3i (
int x,
int y,
int z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex3s (
short x,
short y,
short z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex4d (
double x,
double y,
double z,
double w
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex4f (
float x,
float y,
float z,
float w
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex4i (
int x,
int y,
int z,
int w
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex4s (
short x,
short y,
short z,
short w
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex2dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex2fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex2iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex2sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex3dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex3fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex3iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex3sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex4dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex4fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex4iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertex4sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3b (
byte nx,
byte ny,
byte nz
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3b ( GLbyte nx , GLbyte ny , GLbyte nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3d (
double nx,
double ny,
double nz
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3d ( GLdouble nx , GLdouble ny , GLdouble nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3f (
float nx,
float ny,
float nz
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3f ( GLfloat nx , GLfloat ny , GLfloat nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3i (
int nx,
int ny,
int nz
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3i ( GLint nx , GLint ny , GLint nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3s (
short nx,
short ny,
short nz
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3s ( GLshort nx , GLshort ny , GLshort nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3bv (
byte[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexd (
double c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexd ( GLdouble c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexf (
float c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexf ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexi (
int c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexi ( GLint c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexs (
short c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexs ( GLshort c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexub (
byte c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexub ( GLubyte c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexdv (
double[] c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexdv ( const GLdouble * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexfv (
float[] c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexfv ( const GLfloat * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexiv (
int[] c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexiv ( const GLint * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexsv (
short[] c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexsv ( const GLshort * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexubv (
byte[] c
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexubv ( const GLubyte * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3b (
byte red,
byte green,
byte blue
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3b ( GLbyte red , GLbyte green , GLbyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3d (
double red,
double green,
double blue
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3d ( GLdouble red , GLdouble green , GLdouble blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3f (
float red,
float green,
float blue
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3f ( GLfloat red , GLfloat green , GLfloat blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3i (
int red,
int green,
int blue
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3i ( GLint red , GLint green , GLint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3s (
short red,
short green,
short blue
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3s ( GLshort red , GLshort green , GLshort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3ub (
byte red,
byte green,
byte blue
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ub ( GLubyte red , GLubyte green , GLubyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3ui (
int red,
int green,
int blue
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ui ( GLuint red , GLuint green , GLuint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3us (
short red,
short green,
short blue
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3us ( GLushort red , GLushort green , GLushort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4b (
byte red,
byte green,
byte blue,
byte alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4b ( GLbyte red , GLbyte green , GLbyte blue , GLbyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4d (
double red,
double green,
double blue,
double alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4d ( GLdouble red , GLdouble green , GLdouble blue , GLdouble alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4f (
float red,
float green,
float blue,
float alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4f ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4i (
int red,
int green,
int blue,
int alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4i ( GLint red , GLint green , GLint blue , GLint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4s (
short red,
short green,
short blue,
short alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4s ( GLshort red , GLshort green , GLshort blue , GLshort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4ub (
byte red,
byte green,
byte blue,
byte alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ub ( GLubyte red , GLubyte green , GLubyte blue , GLubyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4ui (
int red,
int green,
int blue,
int alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ui ( GLuint red , GLuint green , GLuint blue , GLuint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4us (
short red,
short green,
short blue,
short alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4us ( GLushort red , GLushort green , GLushort blue , GLushort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3bv (
byte[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3ubv (
byte[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3uiv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3usv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4bv (
byte[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4ubv (
byte[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4uiv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4usv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord1d (
double s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1d ( GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord1f (
float s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1f ( GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord1i (
int s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1i ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord1s (
short s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1s ( GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2d (
double s,
double t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2d ( GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2f (
float s,
float t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2f ( GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2i (
int s,
int t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2i ( GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2s (
short s,
short t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2s ( GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord3d (
double s,
double t,
double r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3d ( GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord3f (
float s,
float t,
float r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3f ( GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord3i (
int s,
int t,
int r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3i ( GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord3s (
short s,
short t,
short r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3s ( GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4d (
double s,
double t,
double r,
double q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4d ( GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4f (
float s,
float t,
float r,
float q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4f ( GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4i (
int s,
int t,
int r,
int q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4i ( GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4s (
short s,
short t,
short r,
short q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4s ( GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord1dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord1fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord1iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord1sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord3dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord3fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord3iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord3sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos2d (
double x,
double y
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos2f (
float x,
float y
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos2i (
int x,
int y
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos2s (
short x,
short y
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos3d (
double x,
double y,
double z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos3f (
float x,
float y,
float z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos3i (
int x,
int y,
int z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos3s (
short x,
short y,
short z
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos4d (
double x,
double y,
double z,
double w
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos4f (
float x,
float y,
float z,
float w
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos4i (
int x,
int y,
int z,
int w
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos4s (
short x,
short y,
short z,
short w
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos2dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos2fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos2iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos2sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos3dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos3fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos3iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos3sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos4dv (
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos4fv (
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos4iv (
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRasterPos4sv (
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRectd (
double x1,
double y1,
double x2,
double y2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRectd ( GLdouble x1 , GLdouble y1 , GLdouble x2 , GLdouble y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRectf (
float x1,
float y1,
float x2,
float y2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRectf ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRecti (
int x1,
int y1,
int x2,
int y2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRecti ( GLint x1 , GLint y1 , GLint x2 , GLint y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRects (
short x1,
short y1,
short x2,
short y2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRects ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRectdv (
double[] v1,
double[] v2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRectdv ( const GLdouble * v1 , const GLdouble * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRectfv (
float[] v1,
float[] v2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRectfv ( const GLfloat * v1 , const GLfloat * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRectiv (
int[] v1,
int[] v2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRectiv ( const GLint * v1 , const GLint * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRectsv (
short[] v1,
short[] v2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRectsv ( const GLshort * v1 , const GLshort * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexPointer (
int size,
int type,
@@ -2418,13 +2418,13 @@
int stride,
long[] ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalPointer (
int type,
int stride,
@@ -2460,13 +2460,13 @@
int stride,
long[] ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorPointer (
int size,
int type,
@@ -2509,13 +2509,13 @@
int stride,
long[] ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexPointer (
int type,
int stride,
@@ -2551,13 +2551,13 @@
int stride,
long[] ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoordPointer (
int size,
int type,
@@ -2600,13 +2600,13 @@
int stride,
long[] ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEdgeFlagPointer (
int stride,
byte[] ptr
@@ -2635,13 +2635,13 @@
int stride,
long[] ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointer ( GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetPointerv (
int pname,
byte[][] params
@@ -2670,35 +2670,35 @@
int pname,
long[][] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointerv ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glArrayElement (
int i
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElement ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDrawArrays (
int mode,
int first,
int count
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArrays ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDrawElements (
int mode,
int count,
@@ -2741,13 +2741,13 @@
int type,
long[] indices
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawElements ( GLenum mode , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glInterleavedArrays (
int format,
int stride,
@@ -2783,346 +2783,346 @@
int stride,
long[] pointer
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glInterleavedArrays ( GLenum format , GLsizei stride , const GLvoid * pointer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glShadeModel (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glShadeModel ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLightf (
int light,
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLightf ( GLenum light , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLighti (
int light,
int pname,
int param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLighti ( GLenum light , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLightfv (
int light,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLightfv ( GLenum light , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLightiv (
int light,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLightiv ( GLenum light , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetLightfv (
int light,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightfv ( GLenum light , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetLightiv (
int light,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightiv ( GLenum light , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLightModelf (
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLightModeli (
int pname,
int param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeli ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLightModelfv (
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLightModeliv (
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeliv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMaterialf (
int face,
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialf ( GLenum face , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMateriali (
int face,
int pname,
int param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMateriali ( GLenum face , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMaterialfv (
int face,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialfv ( GLenum face , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMaterialiv (
int face,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialiv ( GLenum face , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMaterialfv (
int face,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialfv ( GLenum face , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMaterialiv (
int face,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialiv ( GLenum face , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorMaterial (
int face,
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMaterial ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelZoom (
float xfactor,
float yfactor
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelZoom ( GLfloat xfactor , GLfloat yfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelStoref (
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStoref ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelStorei (
int pname,
int param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStorei ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTransferf (
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTransferi (
int pname,
int param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelMapfv (
int map,
int mapsize,
float[] values
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapfv ( GLenum map , GLint mapsize , const GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelMapuiv (
int map,
int mapsize,
int[] values
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapuiv ( GLenum map , GLint mapsize , const GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelMapusv (
int map,
int mapsize,
short[] values
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapusv ( GLenum map , GLint mapsize , const GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetPixelMapfv (
int map,
float[] values
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapfv ( GLenum map , GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetPixelMapuiv (
int map,
int[] values
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapuiv ( GLenum map , GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetPixelMapusv (
int map,
short[] values
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapusv ( GLenum map , GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBitmap (
int width,
int height,
@@ -3132,13 +3132,13 @@
float ymove,
byte[] bitmap
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBitmap ( GLsizei width , GLsizei height , GLfloat xorig , GLfloat yorig , GLfloat xmove , GLfloat ymove , const GLubyte * bitmap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReadPixels (
int x,
int y,
@@ -3202,13 +3202,13 @@
int type,
long[] pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReadPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDrawPixels (
int width,
int height,
@@ -3258,13 +3258,13 @@
int type,
long[] pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawPixels ( GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyPixels (
int x,
int y,
@@ -3272,335 +3272,335 @@
int height,
int type
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glStencilFunc (
int func,
int ref,
int mask
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilFunc ( GLenum func , GLint ref , GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glStencilMask (
int mask
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glStencilOp (
int fail,
int zfail,
int zpass
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilOp ( GLenum fail , GLenum zfail , GLenum zpass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClearStencil (
int s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClearStencil ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexGend (
int coord,
int pname,
double param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGend ( GLenum coord , GLenum pname , GLdouble param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexGenf (
int coord,
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenf ( GLenum coord , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexGeni (
int coord,
int pname,
int param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeni ( GLenum coord , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexGendv (
int coord,
int pname,
double[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGendv ( GLenum coord , GLenum pname , const GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexGenfv (
int coord,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenfv ( GLenum coord , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexGeniv (
int coord,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeniv ( GLenum coord , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexGendv (
int coord,
int pname,
double[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGendv ( GLenum coord , GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexGenfv (
int coord,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGenfv ( GLenum coord , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexGeniv (
int coord,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGeniv ( GLenum coord , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexEnvf (
int target,
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexEnvi (
int target,
int pname,
int param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvi ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexEnvfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexEnviv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnviv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexEnvfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnvfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexEnviv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnviv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexParameterf (
int target,
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexParameteri (
int target,
int pname,
int param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteri ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexParameterfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexParameteriv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexParameterfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexParameteriv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexLevelParameterfv (
int target,
int level,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameterfv ( GLenum target , GLint level , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexLevelParameteriv (
int target,
int level,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameteriv ( GLenum target , GLint level , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexImage1D (
int target,
int level,
@@ -3671,13 +3671,13 @@
int type,
long[] pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage1D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexImage2D (
int target,
int level,
@@ -3755,13 +3755,13 @@
int type,
long[] pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage2D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLsizei height , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexImage (
int target,
int level,
@@ -3811,80 +3811,80 @@
int type,
long[] pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexImage ( GLenum target , GLint level , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGenTextures (
int n,
int[] textures
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTextures ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeleteTextures (
int n,
int[] textures
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTextures ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBindTexture (
int target,
int texture
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTexture ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPrioritizeTextures (
int n,
int[] textures,
float[] priorities
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTextures ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glAreTexturesResident (
int n,
int[] textures,
boolean[] residences
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResident ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glIsTexture (
int texture
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTexture ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexSubImage1D (
int target,
int level,
@@ -3948,13 +3948,13 @@
int type,
long[] pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexSubImage2D (
int target,
int level,
@@ -4032,13 +4032,13 @@
int type,
long[] pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexImage1D (
int target,
int level,
@@ -4048,13 +4048,13 @@
int width,
int border
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexImage2D (
int target,
int level,
@@ -4065,13 +4065,13 @@
int height,
int border
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexSubImage1D (
int target,
int level,
@@ -4080,13 +4080,13 @@
int y,
int width
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexSubImage2D (
int target,
int level,
@@ -4097,13 +4097,13 @@
int width,
int height
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMap1d (
int target,
double u1,
@@ -4112,13 +4112,13 @@
int order,
double[] points
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint stride , GLint order , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMap1f (
int target,
float u1,
@@ -4127,13 +4127,13 @@
int order,
float[] points
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint stride , GLint order , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMap2d (
int target,
double u1,
@@ -4146,13 +4146,13 @@
int vorder,
double[] points
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint ustride , GLint uorder , GLdouble v1 , GLdouble v2 , GLint vstride , GLint vorder , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMap2f (
int target,
float u1,
@@ -4165,155 +4165,155 @@
int vorder,
float[] points
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint ustride , GLint uorder , GLfloat v1 , GLfloat v2 , GLint vstride , GLint vorder , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMapdv (
int target,
int query,
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapdv ( GLenum target , GLenum query , GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMapfv (
int target,
int query,
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapfv ( GLenum target , GLenum query , GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMapiv (
int target,
int query,
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapiv ( GLenum target , GLenum query , GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalCoord1d (
double u
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1d ( GLdouble u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalCoord1f (
float u
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1f ( GLfloat u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalCoord1dv (
double[] u
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalCoord1fv (
float[] u
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalCoord2d (
double u,
double v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2d ( GLdouble u , GLdouble v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalCoord2f (
float u,
float v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2f ( GLfloat u , GLfloat v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalCoord2dv (
double[] u
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalCoord2fv (
float[] u
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMapGrid1d (
int un,
double u1,
double u2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1d ( GLint un , GLdouble u1 , GLdouble u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMapGrid1f (
int un,
float u1,
float u2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1f ( GLint un , GLfloat u1 , GLfloat u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMapGrid2d (
int un,
double u1,
@@ -4322,13 +4322,13 @@
double v1,
double v2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2d ( GLint un , GLdouble u1 , GLdouble u2 , GLint vn , GLdouble v1 , GLdouble v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMapGrid2f (
int un,
float u1,
@@ -4337,46 +4337,46 @@
float v1,
float v2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2f ( GLint un , GLfloat u1 , GLfloat u2 , GLint vn , GLfloat v1 , GLfloat v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalPoint1 (
int i
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint1 ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalPoint2 (
int i,
int j
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint2 ( GLint i , GLint j ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalMesh1 (
int mode,
int i1,
int i2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh1 ( GLenum mode , GLint i1 , GLint i2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalMesh2 (
int mode,
int i1,
@@ -4384,128 +4384,128 @@
int j1,
int j2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh2 ( GLenum mode , GLint i1 , GLint i2 , GLint j1 , GLint j2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogf (
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogi (
int pname,
int param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogfv (
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogiv (
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogiv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFeedbackBuffer (
int size,
int type,
float[] buffer
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFeedbackBuffer ( GLsizei size , GLenum type , GLfloat * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPassThrough (
float token
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPassThrough ( GLfloat token ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSelectBuffer (
int size,
int[] buffer
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSelectBuffer ( GLsizei size , GLuint * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glInitNames (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glInitNames ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadName (
int name
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPushName (
int name
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPushName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPopName (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPopName ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDrawRangeElements (
int mode,
int start,
@@ -4562,13 +4562,13 @@
int type,
long[] indices
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElements ( GLenum mode , GLuint start , GLuint end , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexImage3D (
int target,
int level,
@@ -4653,13 +4653,13 @@
int type,
long[] pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3D ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexSubImage3D (
int target,
int level,
@@ -4751,13 +4751,13 @@
int type,
long[] pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexSubImage3D (
int target,
int level,
@@ -4769,13 +4769,13 @@
int width,
int height
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorTable (
int target,
int internalformat,
@@ -4832,13 +4832,13 @@
int type,
long[] table
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTable ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorSubTable (
int target,
int start,
@@ -4895,37 +4895,37 @@
int type,
long[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTable ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorTableParameteriv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorTableParameterfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyColorSubTable (
int target,
int start,
@@ -4933,13 +4933,13 @@
int y,
int width
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTable ( GLenum target , GLsizei start , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyColorTable (
int target,
int internalformat,
@@ -4947,13 +4947,13 @@
int y,
int width
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTable ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetColorTable (
int target,
int format,
@@ -4996,83 +4996,83 @@
int type,
long[] table
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTable ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetColorTableParameterfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetColorTableParameteriv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBlendEquation (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquation ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBlendColor (
float red,
float green,
float blue,
float alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glHistogram (
int target,
int width,
int internalformat,
boolean sink
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogram ( GLenum target , GLsizei width , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glResetHistogram (
int target
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogram ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetHistogram (
int target,
boolean reset,
@@ -5122,59 +5122,59 @@
int type,
long[] values
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogram ( GLenum target , GLboolean reset , GLenum format , GLenum type , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetHistogramParameterfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetHistogramParameteriv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMinmax (
int target,
int internalformat,
boolean sink
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmax ( GLenum target , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glResetMinmax (
int target
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmax ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMinmax (
int target,
boolean reset,
@@ -5224,37 +5224,37 @@
int types,
long[] values
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmax ( GLenum target , GLboolean reset , GLenum format , GLenum types , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMinmaxParameterfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMinmaxParameteriv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionFilter1D (
int target,
int internalformat,
@@ -5311,13 +5311,13 @@
int type,
long[] image
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1D ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionFilter2D (
int target,
int internalformat,
@@ -5381,61 +5381,61 @@
int type,
long[] image
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionParameterf (
int target,
int pname,
float params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterf ( GLenum target , GLenum pname , GLfloat params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionParameterfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionParameteri (
int target,
int pname,
int params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteri ( GLenum target , GLenum pname , GLint params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionParameteriv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyConvolutionFilter1D (
int target,
int internalformat,
@@ -5443,13 +5443,13 @@
int y,
int width
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyConvolutionFilter2D (
int target,
int internalformat,
@@ -5458,13 +5458,13 @@
int width,
int height
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetConvolutionFilter (
int target,
int format,
@@ -5507,37 +5507,37 @@
int type,
long[] image
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilter ( GLenum target , GLenum format , GLenum type , GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetConvolutionParameterfv (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetConvolutionParameteriv (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSeparableFilter2D (
int target,
int internalformat,
@@ -5608,13 +5608,13 @@
long[] row,
long[] column
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * row , const GLvoid * column ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetSeparableFilter (
int target,
int format,
@@ -5671,33 +5671,33 @@
long[] column,
long[] span
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilter ( GLenum target , GLenum format , GLenum type , GLvoid * row , GLvoid * column , GLvoid * span ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glActiveTexture (
int texture
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClientActiveTexture (
int texture
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexImage1D (
int target,
int level,
@@ -5761,13 +5761,13 @@
int imageSize,
long[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexImage2D (
int target,
int level,
@@ -5838,13 +5838,13 @@
int imageSize,
long[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexImage3D (
int target,
int level,
@@ -5922,13 +5922,13 @@
int imageSize,
long[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexSubImage1D (
int target,
int level,
@@ -5992,13 +5992,13 @@
int imageSize,
long[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexSubImage2D (
int target,
int level,
@@ -6076,13 +6076,13 @@
int imageSize,
long[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexSubImage3D (
int target,
int level,
@@ -6174,13 +6174,13 @@
int imageSize,
long[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetCompressedTexImage (
int target,
int lod,
@@ -6216,289 +6216,289 @@
int lod,
long[] img
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImage ( GLenum target , GLint lod , GLvoid * img ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1d (
int target,
double s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1d ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1dv (
int target,
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1f (
int target,
float s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1f ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1fv (
int target,
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1i (
int target,
int s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1i ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1iv (
int target,
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1s (
int target,
short s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1s ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1sv (
int target,
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2d (
int target,
double s,
double t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2d ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2dv (
int target,
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2f (
int target,
float s,
float t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2f ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2fv (
int target,
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2i (
int target,
int s,
int t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2i ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2iv (
int target,
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2s (
int target,
short s,
short t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2s ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2sv (
int target,
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3d (
int target,
double s,
double t,
double r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3d ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3dv (
int target,
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3f (
int target,
float s,
float t,
float r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3f ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3fv (
int target,
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3i (
int target,
int s,
int t,
int r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3i ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3iv (
int target,
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3s (
int target,
short s,
short t,
short r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3s ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3sv (
int target,
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4d (
int target,
double s,
@@ -6506,24 +6506,24 @@
double r,
double q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4d ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4dv (
int target,
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4f (
int target,
float s,
@@ -6531,24 +6531,24 @@
float r,
float q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4f ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4fv (
int target,
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4i (
int target,
int s,
@@ -6556,24 +6556,24 @@
int r,
int q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4i ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4iv (
int target,
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4s (
int target,
short s,
@@ -6581,381 +6581,381 @@
short r,
short q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4s ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4sv (
int target,
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadTransposeMatrixd (
double[] m
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadTransposeMatrixf (
float[] m
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultTransposeMatrixd (
double[] m
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultTransposeMatrixf (
float[] m
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSampleCoverage (
float value,
boolean invert
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverage ( GLclampf value , GLboolean invert ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSamplePass (
int pass
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePass ( GLenum pass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glActiveTextureARB (
int texture
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClientActiveTextureARB (
int texture
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1dARB (
int target,
double s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dARB ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1dvARB (
int target,
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1fARB (
int target,
float s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fARB ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1fvARB (
int target,
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1iARB (
int target,
int s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iARB ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1ivARB (
int target,
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1sARB (
int target,
short s
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sARB ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord1svARB (
int target,
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2dARB (
int target,
double s,
double t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dARB ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2dvARB (
int target,
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2fARB (
int target,
float s,
float t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fARB ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2fvARB (
int target,
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2iARB (
int target,
int s,
int t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iARB ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2ivARB (
int target,
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2sARB (
int target,
short s,
short t
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sARB ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord2svARB (
int target,
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3dARB (
int target,
double s,
double t,
double r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3dvARB (
int target,
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3fARB (
int target,
float s,
float t,
float r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3fvARB (
int target,
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3iARB (
int target,
int s,
int t,
int r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iARB ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3ivARB (
int target,
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3sARB (
int target,
short s,
short t,
short r
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sARB ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord3svARB (
int target,
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4dARB (
int target,
double s,
@@ -6963,24 +6963,24 @@
double r,
double q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4dvARB (
int target,
double[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4fARB (
int target,
float s,
@@ -6988,24 +6988,24 @@
float r,
float q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4fvARB (
int target,
float[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4iARB (
int target,
int s,
@@ -7013,24 +7013,24 @@
int r,
int q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iARB ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4ivARB (
int target,
int[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4sARB (
int target,
short s,
@@ -7038,48 +7038,48 @@
short r,
short q
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sARB ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiTexCoord4svARB (
int target,
short[] v
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBlendColorEXT (
float red,
float green,
float blue,
float alpha
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColorEXT ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPolygonOffsetEXT (
float factor,
float bias
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffsetEXT ( GLfloat factor , GLfloat bias ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexImage3DEXT (
int target,
int level,
@@ -7164,13 +7164,13 @@
int type,
long[] pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3DEXT ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexSubImage3DEXT (
int target,
int level,
@@ -7262,13 +7262,13 @@
int type,
long[] pixels
) ;
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexSubImage3DEXT (
int target,
int level,
@@ -7280,80 +7280,80 @@
int width,
int height
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3DEXT ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGenTexturesEXT (
int n,
int[] textures
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTexturesEXT ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeleteTexturesEXT (
int n,
int[] textures
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTexturesEXT ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBindTextureEXT (
int target,
int texture
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTextureEXT ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPrioritizeTexturesEXT (
int n,
int[] textures,
float[] priorities
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTexturesEXT ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glAreTexturesResidentEXT (
int n,
int[] textures,
boolean[] residences
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResidentEXT ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glIsTextureEXT (
int texture
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTextureEXT ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexPointerEXT (
int size,
int type,
@@ -7403,13 +7403,13 @@
int count,
long[] ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalPointerEXT (
int type,
int stride,
@@ -7452,13 +7452,13 @@
int count,
long[] ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorPointerEXT (
int size,
int type,
@@ -7508,13 +7508,13 @@
int count,
long[] ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexPointerEXT (
int type,
int stride,
@@ -7557,13 +7557,13 @@
int count,
long[] ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoordPointerEXT (
int size,
int type,
@@ -7613,25 +7613,25 @@
int count,
long[] ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEdgeFlagPointerEXT (
int stride,
int count,
boolean[] ptr
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerEXT ( GLsizei stride , GLsizei count , const GLboolean * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetPointervEXT (
int pname,
byte[][] params
@@ -7660,89 +7660,89 @@
int pname,
long[][] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointervEXT ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glArrayElementEXT (
int i
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElementEXT ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDrawArraysEXT (
int mode,
int first,
int count
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArraysEXT ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBlendEquationEXT (
int mode
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquationEXT ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPointParameterfEXT (
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfEXT ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPointParameterfvEXT (
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvEXT ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPointParameterfSGIS (
int pname,
float param
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfSGIS ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPointParameterfvSGIS (
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvSGIS ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorTableEXT (
int target,
int internalformat,
@@ -7799,13 +7799,13 @@
int type,
long[] table
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableEXT ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorSubTableEXT (
int target,
int start,
@@ -7862,13 +7862,13 @@
int type,
long[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTableEXT ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetColorTableEXT (
int target,
int format,
@@ -7911,108 +7911,108 @@
int type,
long[] table
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableEXT ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetColorTableParameterfvEXT (
int target,
int pname,
float[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvEXT ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetColorTableParameterivEXT (
int target,
int pname,
int[] params
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivEXT ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLockArraysEXT (
int first,
int count
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLockArraysEXT ( GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glUnlockArraysEXT (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glUnlockArraysEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadTransposeMatrixfARB (
float[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadTransposeMatrixdARB (
double[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultTransposeMatrixfARB (
float[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultTransposeMatrixdARB (
double[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSampleCoverageARB (
float arg0,
boolean arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverageARB ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexImage3DARB (
int arg0,
int arg1,
@@ -8090,13 +8090,13 @@
int arg7,
long[] arg8
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexImage2DARB (
int arg0,
int arg1,
@@ -8167,13 +8167,13 @@
int arg6,
long[] arg7
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexImage1DARB (
int arg0,
int arg1,
@@ -8237,13 +8237,13 @@
int arg5,
long[] arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1DARB ( GLenum , GLint , GLenum , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexSubImage3DARB (
int arg0,
int arg1,
@@ -8335,13 +8335,13 @@
int arg9,
long[] arg10
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage3DARB ( GLenum , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexSubImage2DARB (
int arg0,
int arg1,
@@ -8419,13 +8419,13 @@
int arg7,
long[] arg8
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2DARB ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCompressedTexSubImage1DARB (
int arg0,
int arg1,
@@ -8489,13 +8489,13 @@
int arg5,
long[] arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1DARB ( GLenum , GLint , GLint , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetCompressedTexImageARB (
int arg0,
int arg1,
@@ -8531,101 +8531,101 @@
int arg1,
long[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImageARB ( GLenum , GLint , void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWeightbvARB (
int arg0,
byte[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightbvARB ( GLint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWeightsvARB (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightsvARB ( GLint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWeightivARB (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightivARB ( GLint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWeightfvARB (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightfvARB ( GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWeightdvARB (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightdvARB ( GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWeightubvARB (
int arg0,
byte[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWeightusvARB (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWeightuivARB (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWeightPointerARB (
int arg0,
int arg1,
@@ -8668,66 +8668,66 @@
int arg2,
long[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexBlendARB (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCurrentPaletteMatrixARB (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCurrentPaletteMatrixARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMatrixIndexubvARB (
int arg0,
byte[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMatrixIndexusvARB (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMatrixIndexuivARB (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMatrixIndexPointerARB (
int arg0,
int arg1,
@@ -8770,38 +8770,38 @@
int arg2,
long[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexFilterFuncSGIS (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexFilterFuncSGIS ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexFilterFuncSGIS (
int arg0,
int arg1,
int arg2,
float[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexFilterFuncSGIS ( GLenum , GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexSubImage1DEXT (
int arg0,
int arg1,
@@ -8865,13 +8865,13 @@
int arg5,
long[] arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1DEXT ( GLenum , GLint , GLint , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexSubImage2DEXT (
int arg0,
int arg1,
@@ -8949,13 +8949,13 @@
int arg7,
long[] arg8
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexImage1DEXT (
int arg0,
int arg1,
@@ -8965,13 +8965,13 @@
int arg5,
int arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexImage2DEXT (
int arg0,
int arg1,
@@ -8982,13 +8982,13 @@
int arg6,
int arg7
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexSubImage1DEXT (
int arg0,
int arg1,
@@ -8997,13 +8997,13 @@
int arg4,
int arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1DEXT ( GLenum , GLint , GLint , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyTexSubImage2DEXT (
int arg0,
int arg1,
@@ -9014,13 +9014,13 @@
int arg6,
int arg7
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetHistogramEXT (
int arg0,
boolean arg1,
@@ -9070,37 +9070,37 @@
int arg3,
long[] arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetHistogramParameterfvEXT (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetHistogramParameterivEXT (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMinmaxEXT (
int arg0,
boolean arg1,
@@ -9150,82 +9150,82 @@
int arg3,
long[] arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMinmaxParameterfvEXT (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMinmaxParameterivEXT (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glHistogramEXT (
int arg0,
int arg1,
int arg2,
boolean arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogramEXT ( GLenum , GLsizei , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMinmaxEXT (
int arg0,
int arg1,
boolean arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmaxEXT ( GLenum , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glResetHistogramEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogramEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glResetMinmaxEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmaxEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionFilter1DEXT (
int arg0,
int arg1,
@@ -9282,13 +9282,13 @@
int arg4,
long[] arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1DEXT ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionFilter2DEXT (
int arg0,
int arg1,
@@ -9352,61 +9352,61 @@
int arg5,
long[] arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionParameterfEXT (
int arg0,
int arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionParameterfvEXT (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionParameteriEXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glConvolutionParameterivEXT (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyConvolutionFilter1DEXT (
int arg0,
int arg1,
@@ -9414,13 +9414,13 @@
int arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1DEXT ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyConvolutionFilter2DEXT (
int arg0,
int arg1,
@@ -9429,13 +9429,13 @@
int arg4,
int arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2DEXT ( GLenum , GLenum , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetConvolutionFilterEXT (
int arg0,
int arg1,
@@ -9478,37 +9478,37 @@
int arg2,
long[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilterEXT ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetConvolutionParameterfvEXT (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetConvolutionParameterivEXT (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetSeparableFilterEXT (
int arg0,
int arg1,
@@ -9565,13 +9565,13 @@
long[] arg4,
long[] arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilterEXT ( GLenum , GLenum , GLenum , GLvoid * , GLvoid * , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSeparableFilter2DEXT (
int arg0,
int arg1,
@@ -9642,13 +9642,13 @@
long[] arg6,
long[] arg7
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorTableSGI (
int arg0,
int arg1,
@@ -9705,37 +9705,37 @@
int arg4,
long[] arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableSGI ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorTableParameterfvSGI (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfvSGI ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorTableParameterivSGI (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterivSGI ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyColorTableSGI (
int arg0,
int arg1,
@@ -9743,13 +9743,13 @@
int arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTableSGI ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetColorTableSGI (
int arg0,
int arg1,
@@ -9792,113 +9792,113 @@
int arg2,
long[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableSGI ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetColorTableParameterfvSGI (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvSGI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetColorTableParameterivSGI (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivSGI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTexGenSGIX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenSGIX ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTexGenParameteriSGIS (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameteriSGIS ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTexGenParameterivSGIS (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterivSGIS ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTexGenParameterfSGIS (
int arg0,
float arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfSGIS ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTexGenParameterfvSGIS (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfvSGIS ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetPixelTexGenParameterivSGIS (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterivSGIS ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetPixelTexGenParameterfvSGIS (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterfvSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexImage4DSGIS (
int arg0,
int arg1,
@@ -9990,13 +9990,13 @@
int arg9,
long[] arg10
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage4DSGIS ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLsizei , GLint , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexSubImage4DSGIS (
int arg0,
int arg1,
@@ -10102,224 +10102,224 @@
int arg11,
long[] arg12
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage4DSGIS ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDetailTexFuncSGIS (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDetailTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetDetailTexFuncSGIS (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDetailTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSharpenTexFuncSGIS (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSharpenTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetSharpenTexFuncSGIS (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSharpenTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSampleMaskSGIS (
float arg0,
boolean arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskSGIS ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSamplePatternSGIS (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternSGIS ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSpriteParameterfSGIX (
int arg0,
float arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSpriteParameterfvSGIX (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSpriteParameteriSGIX (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameteriSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSpriteParameterivSGIX (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPointParameterfARB (
int arg0,
float arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfARB ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPointParameterfvARB (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvARB ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glGetInstrumentsSGIX (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint glGetInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glInstrumentsBufferSGIX (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glInstrumentsBufferSGIX ( GLsizei , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glPollInstrumentsSGIX (
int[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollInstrumentsSGIX ( GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReadInstrumentsSGIX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReadInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glStartInstrumentsSGIX (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glStartInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glStopInstrumentsSGIX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glStopInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFrameZoomSGIX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFrameZoomSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTagSampleBufferSGIX (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTagSampleBufferSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeformationMap3dSGIX (
int arg0,
double arg1,
@@ -10336,13 +10336,13 @@
int arg12,
double[] arg13
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3dSGIX ( GLenum , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeformationMap3fSGIX (
int arg0,
float arg1,
@@ -10359,145 +10359,145 @@
int arg12,
float[] arg13
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3fSGIX ( GLenum , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeformSGIX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadIdentityDeformationMapSGIX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentityDeformationMapSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReferencePlaneSGIX (
double[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReferencePlaneSGIX ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFlushRasterSGIX (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushRasterSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogFuncSGIS (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogFuncSGIS ( GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetFogFuncSGIS (
float[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFogFuncSGIS ( GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glImageTransformParameteriHP (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameteriHP ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glImageTransformParameterfHP (
int arg0,
int arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfHP ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glImageTransformParameterivHP (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterivHP ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glImageTransformParameterfvHP (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfvHP ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetImageTransformParameterivHP (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterivHP ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetImageTransformParameterfvHP (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterfvHP ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCopyColorSubTableEXT (
int arg0,
int arg1,
@@ -10505,350 +10505,350 @@
int arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTableEXT ( GLenum , GLsizei , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glHintPGI (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glHintPGI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetListParameterfvSGIX (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterfvSGIX ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetListParameterivSGIX (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterivSGIX ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glListParameterfSGIX (
int arg0,
int arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfSGIX ( GLuint , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glListParameterfvSGIX (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfvSGIX ( GLuint , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glListParameteriSGIX (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameteriSGIX ( GLuint , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glListParameterivSGIX (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterivSGIX ( GLuint , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexMaterialEXT (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexFuncEXT (
int arg0,
float arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexFuncEXT ( GLenum , GLclampf ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCullParameterdvEXT (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterdvEXT ( GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCullParameterfvEXT (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterfvEXT ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentColorMaterialSGIX (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentColorMaterialSGIX ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentLightfSGIX (
int arg0,
int arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentLightfvSGIX (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentLightiSGIX (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentLightivSGIX (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentLightModelfSGIX (
int arg0,
float arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentLightModelfvSGIX (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentLightModeliSGIX (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModeliSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentLightModelivSGIX (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentMaterialfSGIX (
int arg0,
int arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentMaterialfvSGIX (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentMaterialiSGIX (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFragmentMaterialivSGIX (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetFragmentLightfvSGIX (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetFragmentLightivSGIX (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetFragmentMaterialfvSGIX (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetFragmentMaterialivSGIX (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLightEnviSGIX (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLightEnviSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDrawRangeElementsEXT (
int arg0,
int arg1,
@@ -10905,105 +10905,105 @@
int arg4,
long[] arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElementsEXT ( GLenum , GLuint , GLuint , GLsizei , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glApplyTextureEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glApplyTextureEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTextureLightEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureLightEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTextureMaterialEXT (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glAsyncMarkerSGIX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glFinishAsyncSGIX (
int[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint glFinishAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glPollAsyncSGIX (
int[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glGenAsyncMarkersSGIX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenAsyncMarkersSGIX ( GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeleteAsyncMarkersSGIX (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteAsyncMarkersSGIX ( GLuint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glIsAsyncMarkerSGIX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexPointervINTEL (
int arg0,
int arg1,
@@ -11039,13 +11039,13 @@
int arg1,
long[][] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalPointervINTEL (
int arg0,
byte[][] arg1
@@ -11074,13 +11074,13 @@
int arg0,
long[][] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointervINTEL ( GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorPointervINTEL (
int arg0,
int arg1,
@@ -11116,13 +11116,13 @@
int arg1,
long[][] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoordPointervINTEL (
int arg0,
int arg1,
@@ -11158,237 +11158,237 @@
int arg1,
long[][] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTransformParameteriEXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTransformParameterfEXT (
int arg0,
int arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTransformParameterivEXT (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPixelTransformParameterfvEXT (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3bEXT (
byte arg0,
byte arg1,
byte arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3bvEXT (
byte[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3dEXT (
double arg0,
double arg1,
double arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3dvEXT (
double[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3fEXT (
float arg0,
float arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3fvEXT (
float[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3iEXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3ivEXT (
int[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3sEXT (
short arg0,
short arg1,
short arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3svEXT (
short[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3ubEXT (
byte arg0,
byte arg1,
byte arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubEXT ( GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3ubvEXT (
byte[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubvEXT ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3uiEXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uiEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3uivEXT (
int[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uivEXT ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3usEXT (
short arg0,
short arg1,
short arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usEXT ( GLushort , GLushort , GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColor3usvEXT (
short[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usvEXT ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColorPointerEXT (
int arg0,
int arg1,
@@ -11431,36 +11431,36 @@
int arg2,
long[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerEXT ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTextureNormalEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureNormalEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiDrawArraysEXT (
int arg0,
int[] arg1,
int[] arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawArraysEXT ( GLenum , GLint * , GLsizei * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiDrawElementsEXT (
int arg0,
int[] arg1,
@@ -11510,53 +11510,53 @@
long[][] arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawElementsEXT ( GLenum , const GLsizei * , GLenum , const GLvoid * * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogCoordfEXT (
float arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogCoordfvEXT (
float[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogCoorddEXT (
double arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddEXT ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogCoorddvEXT (
double[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogCoordPointerEXT (
int arg0,
int arg1,
@@ -11592,233 +11592,233 @@
int arg1,
long[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3bEXT (
byte arg0,
byte arg1,
byte arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3bvEXT (
byte[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3dEXT (
double arg0,
double arg1,
double arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3dvEXT (
double[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3fEXT (
float arg0,
float arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3fvEXT (
float[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3iEXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3ivEXT (
int[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3sEXT (
short arg0,
short arg1,
short arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangent3svEXT (
short[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3bEXT (
byte arg0,
byte arg1,
byte arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3bvEXT (
byte[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3dEXT (
double arg0,
double arg1,
double arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3dvEXT (
double[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3fEXT (
float arg0,
float arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3fvEXT (
float[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3iEXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3ivEXT (
int[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3sEXT (
short arg0,
short arg1,
short arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormal3svEXT (
short[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTangentPointerEXT (
int arg0,
int arg1,
@@ -11854,13 +11854,13 @@
int arg1,
long[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTangentPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBinormalPointerEXT (
int arg0,
int arg1,
@@ -11896,162 +11896,162 @@
int arg1,
long[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormalPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFinishTextureSUNX (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishTextureSUNX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGlobalAlphaFactorbSUN (
byte arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorbSUN ( GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGlobalAlphaFactorsSUN (
short arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorsSUN ( GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGlobalAlphaFactoriSUN (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoriSUN ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGlobalAlphaFactorfSUN (
float arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorfSUN ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGlobalAlphaFactordSUN (
double arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactordSUN ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGlobalAlphaFactorubSUN (
byte arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGlobalAlphaFactorusSUN (
short arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGlobalAlphaFactoruiSUN (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoruiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiSUN (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeusSUN (
short arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeubSUN (
byte arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuivSUN (
int[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuivSUN ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeusvSUN (
short[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusvSUN ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeubvSUN (
byte[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubvSUN ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodePointerSUN (
int arg0,
int arg1,
@@ -12087,13 +12087,13 @@
int arg1,
long[][] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodePointerSUN ( GLenum , GLsizei , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4ubVertex2fSUN (
byte arg0,
byte arg1,
@@ -12102,24 +12102,24 @@
float arg4,
float arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4ubVertex2fvSUN (
byte[] arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4ubVertex3fSUN (
byte arg0,
byte arg1,
@@ -12129,24 +12129,24 @@
float arg5,
float arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4ubVertex3fvSUN (
byte[] arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3fVertex3fSUN (
float arg0,
float arg1,
@@ -12155,24 +12155,24 @@
float arg4,
float arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor3fVertex3fvSUN (
float[] arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3fVertex3fSUN (
float arg0,
float arg1,
@@ -12181,24 +12181,24 @@
float arg4,
float arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormal3fVertex3fvSUN (
float[] arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4fNormal3fVertex3fSUN (
float arg0,
float arg1,
@@ -12211,25 +12211,25 @@
float arg8,
float arg9
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColor4fNormal3fVertex3fvSUN (
float[] arg0,
float[] arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fVertex3fSUN (
float arg0,
float arg1,
@@ -12237,24 +12237,24 @@
float arg3,
float arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fVertex3fvSUN (
float[] arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4fVertex4fSUN (
float arg0,
float arg1,
@@ -12265,24 +12265,24 @@
float arg6,
float arg7
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4fVertex4fvSUN (
float[] arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fColor4ubVertex3fSUN (
float arg0,
float arg1,
@@ -12294,25 +12294,25 @@
float arg7,
float arg8
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fSUN ( GLfloat , GLfloat , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fColor4ubVertex3fvSUN (
float[] arg0,
byte[] arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fvSUN ( const GLfloat * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fColor3fVertex3fSUN (
float arg0,
float arg1,
@@ -12323,25 +12323,25 @@
float arg6,
float arg7
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fColor3fVertex3fvSUN (
float[] arg0,
float[] arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fNormal3fVertex3fSUN (
float arg0,
float arg1,
@@ -12352,25 +12352,25 @@
float arg6,
float arg7
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fNormal3fVertex3fvSUN (
float[] arg0,
float[] arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fColor4fNormal3fVertex3fSUN (
float arg0,
float arg1,
@@ -12385,26 +12385,26 @@
float arg10,
float arg11
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord2fColor4fNormal3fVertex3fvSUN (
float[] arg0,
float[] arg1,
float[] arg2,
float[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4fColor4fNormal3fVertex4fSUN (
float arg0,
float arg1,
@@ -12422,50 +12422,50 @@
float arg13,
float arg14
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoord4fColor4fNormal3fVertex4fvSUN (
float[] arg0,
float[] arg1,
float[] arg2,
float[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiVertex3fSUN (
int arg0,
float arg1,
float arg2,
float arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiVertex3fvSUN (
int[] arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fvSUN ( const GLenum * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiColor4ubVertex3fSUN (
int arg0,
byte arg1,
@@ -12476,25 +12476,25 @@
float arg6,
float arg7
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fSUN ( GLenum , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiColor4ubVertex3fvSUN (
int[] arg0,
byte[] arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fvSUN ( const GLenum * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiColor3fVertex3fSUN (
int arg0,
float arg1,
@@ -12504,25 +12504,25 @@
float arg5,
float arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiColor3fVertex3fvSUN (
int[] arg0,
float[] arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiNormal3fVertex3fSUN (
int arg0,
float arg1,
@@ -12532,25 +12532,25 @@
float arg5,
float arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiNormal3fVertex3fvSUN (
int[] arg0,
float[] arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiColor4fNormal3fVertex3fSUN (
int arg0,
float arg1,
@@ -12564,26 +12564,26 @@
float arg9,
float arg10
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiColor4fNormal3fVertex3fvSUN (
int[] arg0,
float[] arg1,
float[] arg2,
float[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiTexCoord2fVertex3fSUN (
int arg0,
float arg1,
@@ -12592,25 +12592,25 @@
float arg4,
float arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiTexCoord2fVertex3fvSUN (
int[] arg0,
float[] arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (
int arg0,
float arg1,
@@ -12622,26 +12622,26 @@
float arg7,
float arg8
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (
int[] arg0,
float[] arg1,
float[] arg2,
float[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (
int arg0,
float arg1,
@@ -12657,13 +12657,13 @@
float arg11,
float arg12
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (
int[] arg0,
float[] arg1,
@@ -12671,59 +12671,59 @@
float[] arg3,
float[] arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBlendFuncSeparateEXT (
int arg0,
int arg1,
int arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateEXT ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBlendFuncSeparateINGR (
int arg0,
int arg1,
int arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateINGR ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexWeightfEXT (
float arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexWeightfvEXT (
float[] arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexWeightPointerEXT (
int arg0,
int arg1,
@@ -12766,22 +12766,22 @@
int arg2,
long[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightPointerEXT ( GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFlushVertexArrayRangeNV (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushVertexArrayRangeNV ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexArrayRangeNV (
int arg0,
byte[] arg1
@@ -12810,57 +12810,57 @@
int arg0,
long[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexArrayRangeNV ( GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCombinerParameterfvNV (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfvNV ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCombinerParameterfNV (
int arg0,
float arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfNV ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCombinerParameterivNV (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterivNV ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCombinerParameteriNV (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameteriNV ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCombinerInputNV (
int arg0,
int arg1,
@@ -12869,13 +12869,13 @@
int arg4,
int arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerInputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCombinerOutputNV (
int arg0,
int arg1,
@@ -12888,26 +12888,26 @@
boolean arg8,
boolean arg9
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerOutputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFinalCombinerInputNV (
int arg0,
int arg1,
int arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFinalCombinerInputNV ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetCombinerInputParameterfvNV (
int arg0,
int arg1,
@@ -12915,13 +12915,13 @@
int arg3,
float[] arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterfvNV ( GLenum , GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetCombinerInputParameterivNV (
int arg0,
int arg1,
@@ -12929,63 +12929,63 @@
int arg3,
int[] arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterivNV ( GLenum , GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetCombinerOutputParameterfvNV (
int arg0,
int arg1,
int arg2,
float[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterfvNV ( GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetCombinerOutputParameterivNV (
int arg0,
int arg1,
int arg2,
int[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterivNV ( GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetFinalCombinerInputParameterfvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetFinalCombinerInputParameterivNV (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiModeDrawArraysIBM (
int arg0,
int[] arg1,
@@ -12993,13 +12993,13 @@
int arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawArraysIBM ( GLenum , const GLint * , const GLsizei * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMultiModeDrawElementsIBM (
int[] arg0,
int[] arg1,
@@ -13056,13 +13056,13 @@
int arg4,
int arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawElementsIBM ( const GLenum * , const GLsizei * , GLenum , const GLvoid * * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorPointerListIBM (
int arg0,
int arg1,
@@ -13112,13 +13112,13 @@
long[][] arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSecondaryColorPointerListIBM (
int arg0,
int arg1,
@@ -13168,25 +13168,25 @@
long[][] arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEdgeFlagPointerListIBM (
int arg0,
boolean[][] arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerListIBM ( GLint , const GLboolean * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFogCoordPointerListIBM (
int arg0,
int arg1,
@@ -13229,13 +13229,13 @@
long[][] arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIndexPointerListIBM (
int arg0,
int arg1,
@@ -13278,13 +13278,13 @@
long[][] arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalPointerListIBM (
int arg0,
int arg1,
@@ -13327,13 +13327,13 @@
long[][] arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexCoordPointerListIBM (
int arg0,
int arg1,
@@ -13383,13 +13383,13 @@
long[][] arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexPointerListIBM (
int arg0,
int arg1,
@@ -13439,57 +13439,57 @@
long[][] arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTbufferMask3DFX (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTbufferMask3DFX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSampleMaskEXT (
float arg0,
boolean arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskEXT ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSamplePatternEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTextureColorMaskSGIS (
boolean arg0,
boolean arg1,
boolean arg2,
boolean arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureColorMaskSGIS ( GLboolean , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glIglooInterfaceSGIX (
int arg0,
byte[] arg1
@@ -13518,88 +13518,88 @@
int arg0,
long[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glIglooInterfaceSGIX ( GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGenFencesNV (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGenFencesNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeleteFencesNV (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFencesNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSetFenceNV (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFenceNV ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glTestFenceNV (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glTestFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glFinishFenceNV (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glIsFenceNV (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetFenceivNV (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFenceivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMapControlPointsNV (
int arg0,
int arg1,
@@ -13677,37 +13677,37 @@
boolean arg7,
long[] arg8
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLint , GLint , GLboolean , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMapParameterivNV (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterivNV ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glMapParameterfvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMapControlPointsNV (
int arg0,
int arg1,
@@ -13771,265 +13771,265 @@
boolean arg5,
long[] arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLboolean , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMapParameterivNV (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMapParameterfvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMapAttribParameterivNV (
int arg0,
int arg1,
int arg2,
int[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetMapAttribParameterfvNV (
int arg0,
int arg1,
int arg2,
float[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEvalMapsNV (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMapsNV ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glCombinerStageParameterfvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerStageParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetCombinerStageParameterfvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerStageParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBindProgramNV (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBindProgramNV ( GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeleteProgramsNV (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glExecuteProgramNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glExecuteProgramNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGenProgramsNV (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGenProgramsNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glAreProgramsResidentNV (
int arg0,
int[] arg1,
boolean[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreProgramsResidentNV ( GLsizei , const GLuint * , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glRequestResidentProgramsNV (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glRequestResidentProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetProgramParameterfvNV (
int arg0,
int arg1,
int arg2,
float[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetProgramParameterdvNV (
int arg0,
int arg1,
int arg2,
double[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterdvNV ( GLenum , GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetProgramivNV (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetProgramStringNV (
int arg0,
int arg1,
byte[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramStringNV ( GLuint , GLenum , GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTrackMatrixivNV (
int arg0,
int arg1,
int arg2,
int[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTrackMatrixivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVertexAttribdvNV (
int arg0,
int arg1,
double[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribdvNV ( GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVertexAttribfvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribfvNV ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVertexAttribivNV (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVertexAttribPointervNV (
int arg0,
int arg1,
@@ -14065,36 +14065,36 @@
int arg1,
long[][] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribPointervNV ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glIsProgramNV (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsProgramNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glLoadProgramNV (
int arg0,
int arg1,
int arg2,
byte[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadProgramNV ( GLenum , GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glProgramParameter4fNV (
int arg0,
int arg1,
@@ -14103,13 +14103,13 @@
float arg4,
float arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fNV ( GLenum , GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glProgramParameter4dNV (
int arg0,
int arg1,
@@ -14118,76 +14118,76 @@
double arg4,
double arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dNV ( GLenum , GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glProgramParameter4dvNV (
int arg0,
int arg1,
double[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dvNV ( GLenum , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glProgramParameter4fvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fvNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glProgramParameters4dvNV (
int arg0,
int arg1,
int arg2,
double[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4dvNV ( GLenum , GLuint , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glProgramParameters4fvNV (
int arg0,
int arg1,
int arg2,
float[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4fvNV ( GLenum , GLuint , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTrackMatrixNV (
int arg0,
int arg1,
int arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTrackMatrixNV ( GLenum , GLuint , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribPointerNV (
int arg0,
int arg1,
@@ -14237,121 +14237,121 @@
int arg3,
long[] arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribPointerNV ( GLuint , GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib1sNV (
int arg0,
short arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1sNV ( GLuint , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib1fNV (
int arg0,
float arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fNV ( GLuint , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib1dNV (
int arg0,
double arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dNV ( GLuint , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib2sNV (
int arg0,
short arg1,
short arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2sNV ( GLuint , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib2fNV (
int arg0,
float arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fNV ( GLuint , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib2dNV (
int arg0,
double arg1,
double arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dNV ( GLuint , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib3sNV (
int arg0,
short arg1,
short arg2,
short arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3sNV ( GLuint , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib3fNV (
int arg0,
float arg1,
float arg2,
float arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fNV ( GLuint , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib3dNV (
int arg0,
double arg1,
double arg2,
double arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dNV ( GLuint , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib4sNV (
int arg0,
short arg1,
@@ -14359,13 +14359,13 @@
short arg3,
short arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4sNV ( GLuint , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib4fNV (
int arg0,
float arg1,
@@ -14373,13 +14373,13 @@
float arg3,
float arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fNV ( GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib4dNV (
int arg0,
double arg1,
@@ -14387,13 +14387,13 @@
double arg3,
double arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dNV ( GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib4ubNV (
int arg0,
byte arg1,
@@ -14401,428 +14401,428 @@
byte arg3,
byte arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubNV ( GLuint , GLubyte , GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib1svNV (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib1fvNV (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib1dvNV (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib2svNV (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib2fvNV (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib2dvNV (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib3svNV (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib3fvNV (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib3dvNV (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib4svNV (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib4fvNV (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib4dvNV (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttrib4ubvNV (
int arg0,
byte[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubvNV ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs1svNV (
int arg0,
int arg1,
short[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs1fvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs1dvNV (
int arg0,
int arg1,
double[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs2svNV (
int arg0,
int arg1,
short[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs2fvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs2dvNV (
int arg0,
int arg1,
double[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs3svNV (
int arg0,
int arg1,
short[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs3fvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs3dvNV (
int arg0,
int arg1,
double[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs4svNV (
int arg0,
int arg1,
short[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs4fvNV (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs4dvNV (
int arg0,
int arg1,
double[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexAttribs4ubvNV (
int arg0,
int arg1,
byte[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4ubvNV ( GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexBumpParameterivATI (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterivATI ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glTexBumpParameterfvATI (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterfvATI ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexBumpParameterivATI (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterivATI ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetTexBumpParameterfvATI (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterfvATI ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glGenFragmentShadersATI (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenFragmentShadersATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBindFragmentShaderATI (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBindFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeleteFragmentShaderATI (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBeginFragmentShaderATI (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEndFragmentShaderATI (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEndFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPassTexCoordATI (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPassTexCoordATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSampleMapATI (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMapATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorFragmentOp1ATI (
int arg0,
int arg1,
@@ -14832,13 +14832,13 @@
int arg5,
int arg6
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorFragmentOp2ATI (
int arg0,
int arg1,
@@ -14851,13 +14851,13 @@
int arg8,
int arg9
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glColorFragmentOp3ATI (
int arg0,
int arg1,
@@ -14873,13 +14873,13 @@
int arg11,
int arg12
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glAlphaFragmentOp1ATI (
int arg0,
int arg1,
@@ -14888,13 +14888,13 @@
int arg4,
int arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glAlphaFragmentOp2ATI (
int arg0,
int arg1,
@@ -14906,13 +14906,13 @@
int arg7,
int arg8
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glAlphaFragmentOp3ATI (
int arg0,
int arg1,
@@ -14927,46 +14927,46 @@
int arg10,
int arg11
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSetFragmentShaderConstantATI (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFragmentShaderConstantATI ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPNTrianglesiATI (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesiATI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glPNTrianglesfATI (
int arg0,
float arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesfATI ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glNewObjectBufferATI (
int arg0,
byte[] arg1,
@@ -15002,23 +15002,23 @@
long[] arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glNewObjectBufferATI ( GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glIsObjectBufferATI (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glUpdateObjectBufferATI (
int arg0,
int arg1,
@@ -15068,47 +15068,47 @@
long[] arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glUpdateObjectBufferATI ( GLuint , GLuint , GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetObjectBufferfvATI (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetObjectBufferivATI (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeleteObjectBufferATI (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glArrayObjectATI (
int arg0,
int arg1,
@@ -15117,37 +15117,37 @@
int arg4,
int arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayObjectATI ( GLenum , GLint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetArrayObjectfvATI (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectfvATI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetArrayObjectivATI (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectivATI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantArrayObjectATI (
int arg0,
int arg1,
@@ -15155,110 +15155,110 @@
int arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantArrayObjectATI ( GLuint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVariantArrayObjectfvATI (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVariantArrayObjectivATI (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBeginVertexShaderEXT (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEndVertexShaderEXT (
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEndVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glBindVertexShaderEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glBindVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glGenVertexShadersEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenVertexShadersEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDeleteVertexShaderEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glShaderOp1EXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp1EXT ( GLenum , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glShaderOp2EXT (
int arg0,
int arg1,
int arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp2EXT ( GLenum , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glShaderOp3EXT (
int arg0,
int arg1,
@@ -15266,13 +15266,13 @@
int arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp3EXT ( GLenum , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSwizzleEXT (
int arg0,
int arg1,
@@ -15281,13 +15281,13 @@
int arg4,
int arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSwizzleEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glWriteMaskEXT (
int arg0,
int arg1,
@@ -15296,50 +15296,50 @@
int arg4,
int arg5
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glWriteMaskEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glInsertComponentEXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glInsertComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glExtractComponentEXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glExtractComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glGenSymbolsEXT (
int arg0,
int arg1,
int arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenSymbolsEXT ( GLenum , GLenum , GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSetInvariantEXT (
int arg0,
int arg1,
@@ -15375,13 +15375,13 @@
int arg1,
long[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSetInvariantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glSetLocalConstantEXT (
int arg0,
int arg1,
@@ -15417,101 +15417,101 @@
int arg1,
long[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glSetLocalConstantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantbvEXT (
int arg0,
byte[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantbvEXT ( GLuint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantsvEXT (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantsvEXT ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantivEXT (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantivEXT ( GLuint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantfvEXT (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantfvEXT ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantdvEXT (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantdvEXT ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantubvEXT (
int arg0,
byte[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantubvEXT ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantusvEXT (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantusvEXT ( GLuint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantuivEXT (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantuivEXT ( GLuint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVariantPointerEXT (
int arg0,
int arg1,
@@ -15554,135 +15554,135 @@
int arg2,
long[] arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantPointerEXT ( GLuint , GLenum , GLuint , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glEnableVariantClientStateEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glDisableVariantClientStateEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glBindLightParameterEXT (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindLightParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glBindMaterialParameterEXT (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindMaterialParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glBindTexGenParameterEXT (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTexGenParameterEXT ( GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glBindTextureUnitParameterEXT (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTextureUnitParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glBindParameterEXT (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindParameterEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glIsVariantEnabledEXT (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsVariantEnabledEXT ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVariantBooleanvEXT (
int arg0,
int arg1,
boolean[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVariantIntegervEXT (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVariantFloatvEXT (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetVariantPointervEXT (
int arg0,
int arg1,
@@ -15718,361 +15718,361 @@
int arg1,
long[][] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantPointervEXT ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetInvariantBooleanvEXT (
int arg0,
int arg1,
boolean[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetInvariantIntegervEXT (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetInvariantFloatvEXT (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetLocalConstantBooleanvEXT (
int arg0,
int arg1,
boolean[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetLocalConstantIntegervEXT (
int arg0,
int arg1,
int[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glGetLocalConstantFloatvEXT (
int arg0,
int arg1,
float[] arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream1s (
int arg0,
short arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1s ( GLenum , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream1sv (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream1i (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1i ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream1iv (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream1f (
int arg0,
float arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1f ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream1fv (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream1d (
int arg0,
double arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1d ( GLenum , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream1dv (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream2s (
int arg0,
short arg1,
short arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2s ( GLenum , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream2sv (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream2i (
int arg0,
int arg1,
int arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2i ( GLenum , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream2iv (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream2f (
int arg0,
float arg1,
float arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2f ( GLenum , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream2fv (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream2d (
int arg0,
double arg1,
double arg2
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2d ( GLenum , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream2dv (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream3s (
int arg0,
short arg1,
short arg2,
short arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream3sv (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream3i (
int arg0,
int arg1,
int arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream3iv (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream3f (
int arg0,
float arg1,
float arg2,
float arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream3fv (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream3d (
int arg0,
double arg1,
double arg2,
double arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream3dv (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream4s (
int arg0,
short arg1,
@@ -16080,24 +16080,24 @@
short arg3,
short arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4s ( GLenum , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream4sv (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream4i (
int arg0,
int arg1,
@@ -16105,24 +16105,24 @@
int arg3,
int arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4i ( GLenum , GLint , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream4iv (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream4f (
int arg0,
float arg1,
@@ -16130,24 +16130,24 @@
float arg3,
float arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4f ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream4fv (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream4d (
int arg0,
double arg1,
@@ -16155,168 +16155,168 @@
double arg3,
double arg4
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4d ( GLenum , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexStream4dv (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3b (
int arg0,
byte arg1,
byte arg2,
byte arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3b ( GLenum , GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3bv (
int arg0,
byte[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3bv ( GLenum , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3s (
int arg0,
short arg1,
short arg2,
short arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3sv (
int arg0,
short[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3i (
int arg0,
int arg1,
int arg2,
int arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3iv (
int arg0,
int[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3f (
int arg0,
float arg1,
float arg2,
float arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3fv (
int arg0,
float[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3d (
int arg0,
double arg1,
double arg2,
double arg3
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glNormalStream3dv (
int arg0,
double[] arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glClientActiveVertexStream (
int arg0
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveVertexStream ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glVertexBlendEnvi (
int arg0,
int arg1
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvi ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
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/C2J/gl-proto-dynauto-jni12.c b/C2J/gl-proto-dynauto-jni12.c
index 5e868d4..0fc8d46 100644
--- a/C2J/gl-proto-dynauto-jni12.c
+++ b/C2J/gl-proto-dynauto-jni12.c
@@ -4,13 +4,13 @@
* Reading from file: gl-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvf ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearIndex (
JNIEnv *env, jobject obj,
@@ -24,13 +24,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearIndex ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearColor (
JNIEnv *env, jobject obj,
@@ -50,13 +50,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClear (
JNIEnv *env, jobject obj,
@@ -70,13 +70,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClear ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexMask (
JNIEnv *env, jobject obj,
@@ -90,13 +90,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorMask (
JNIEnv *env, jobject obj,
@@ -116,13 +116,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMask ( GLboolean red , GLboolean green , GLboolean blue , GLboolean alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFunc (
JNIEnv *env, jobject obj,
@@ -138,13 +138,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFunc ( GLenum func , GLclampf ref ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendFunc (
JNIEnv *env, jobject obj,
@@ -160,13 +160,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFunc ( GLenum sfactor , GLenum dfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLogicOp (
JNIEnv *env, jobject obj,
@@ -180,13 +180,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLogicOp ( GLenum opcode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCullFace (
JNIEnv *env, jobject obj,
@@ -200,13 +200,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFrontFace (
JNIEnv *env, jobject obj,
@@ -220,13 +220,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrontFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointSize (
JNIEnv *env, jobject obj,
@@ -240,13 +240,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointSize ( GLfloat size ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLineWidth (
JNIEnv *env, jobject obj,
@@ -260,13 +260,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLineWidth ( GLfloat width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLineStipple (
JNIEnv *env, jobject obj,
@@ -282,13 +282,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLineStipple ( GLint factor , GLushort pattern ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonMode (
JNIEnv *env, jobject obj,
@@ -304,13 +304,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonMode ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonOffset (
JNIEnv *env, jobject obj,
@@ -326,13 +326,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffset ( GLfloat factor , GLfloat units ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonStipple (
JNIEnv *env, jobject obj,
@@ -355,13 +355,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, mask, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonStipple ( const GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPolygonStipple (
JNIEnv *env, jobject obj,
@@ -385,13 +385,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, mask, ptr0, (isCopiedArray0 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPolygonStipple ( GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlag (
JNIEnv *env, jobject obj,
@@ -405,13 +405,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlag ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagv (
JNIEnv *env, jobject obj,
@@ -434,13 +434,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, flag, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagv ( const GLboolean * flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glScissor (
JNIEnv *env, jobject obj,
@@ -460,13 +460,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScissor ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClipPlane (
JNIEnv *env, jobject obj,
@@ -491,13 +491,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, equation, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClipPlane ( GLenum plane , const GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetClipPlane (
JNIEnv *env, jobject obj,
@@ -523,13 +523,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, equation, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetClipPlane ( GLenum plane , GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawBuffer (
JNIEnv *env, jobject obj,
@@ -543,13 +543,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReadBuffer (
JNIEnv *env, jobject obj,
@@ -563,13 +563,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnable (
JNIEnv *env, jobject obj,
@@ -583,13 +583,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDisable (
JNIEnv *env, jobject obj,
@@ -603,13 +603,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsEnabled (
JNIEnv *env, jobject obj,
@@ -626,13 +626,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsEnabled ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnableClientState (
JNIEnv *env, jobject obj,
@@ -646,13 +646,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDisableClientState (
JNIEnv *env, jobject obj,
@@ -666,13 +666,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetBooleanv (
JNIEnv *env, jobject obj,
@@ -698,13 +698,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetBooleanv ( GLenum pname , GLboolean * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetDoublev (
JNIEnv *env, jobject obj,
@@ -730,13 +730,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDoublev ( GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFloatv (
JNIEnv *env, jobject obj,
@@ -762,13 +762,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFloatv ( GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetIntegerv (
JNIEnv *env, jobject obj,
@@ -794,13 +794,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetIntegerv ( GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushAttrib (
JNIEnv *env, jobject obj,
@@ -814,13 +814,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopAttrib (
JNIEnv *env, jobject obj)
@@ -832,13 +832,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushClientAttrib (
JNIEnv *env, jobject obj,
@@ -852,13 +852,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushClientAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopClientAttrib (
JNIEnv *env, jobject obj)
@@ -870,13 +870,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopClientAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glRenderMode (
JNIEnv *env, jobject obj,
@@ -893,13 +893,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glRenderMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGetError (
JNIEnv *env, jobject obj)
@@ -914,13 +914,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLenum glGetError ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinish (
JNIEnv *env, jobject obj)
@@ -932,13 +932,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinish ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFlush (
JNIEnv *env, jobject obj)
@@ -950,13 +950,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlush ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHint (
JNIEnv *env, jobject obj,
@@ -972,13 +972,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHint ( GLenum target , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearDepth (
JNIEnv *env, jobject obj,
@@ -992,13 +992,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearDepth ( GLclampd depth ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDepthFunc (
JNIEnv *env, jobject obj,
@@ -1012,13 +1012,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthFunc ( GLenum func ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDepthMask (
JNIEnv *env, jobject obj,
@@ -1032,13 +1032,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthMask ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDepthRange (
JNIEnv *env, jobject obj,
@@ -1054,13 +1054,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthRange ( GLclampd near_val , GLclampd far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearAccum (
JNIEnv *env, jobject obj,
@@ -1080,13 +1080,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearAccum ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAccum (
JNIEnv *env, jobject obj,
@@ -1102,13 +1102,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAccum ( GLenum op , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixMode (
JNIEnv *env, jobject obj,
@@ -1122,13 +1122,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glOrtho (
JNIEnv *env, jobject obj,
@@ -1152,13 +1152,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glOrtho ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFrustum (
JNIEnv *env, jobject obj,
@@ -1182,13 +1182,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrustum ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glViewport (
JNIEnv *env, jobject obj,
@@ -1208,13 +1208,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glViewport ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushMatrix (
JNIEnv *env, jobject obj)
@@ -1226,13 +1226,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopMatrix (
JNIEnv *env, jobject obj)
@@ -1244,13 +1244,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadIdentity (
JNIEnv *env, jobject obj)
@@ -1262,13 +1262,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentity ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadMatrixd (
JNIEnv *env, jobject obj,
@@ -1291,13 +1291,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadMatrixf (
JNIEnv *env, jobject obj,
@@ -1320,13 +1320,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultMatrixd (
JNIEnv *env, jobject obj,
@@ -1349,13 +1349,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultMatrixf (
JNIEnv *env, jobject obj,
@@ -1378,13 +1378,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRotated (
JNIEnv *env, jobject obj,
@@ -1404,13 +1404,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRotated ( GLdouble angle , GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRotatef (
JNIEnv *env, jobject obj,
@@ -1430,13 +1430,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRotatef ( GLfloat angle , GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glScaled (
JNIEnv *env, jobject obj,
@@ -1454,13 +1454,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScaled ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glScalef (
JNIEnv *env, jobject obj,
@@ -1478,13 +1478,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScalef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTranslated (
JNIEnv *env, jobject obj,
@@ -1502,13 +1502,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslated ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTranslatef (
JNIEnv *env, jobject obj,
@@ -1526,13 +1526,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslatef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsList (
JNIEnv *env, jobject obj,
@@ -1549,13 +1549,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteLists (
JNIEnv *env, jobject obj,
@@ -1571,13 +1571,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteLists ( GLuint list , GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenLists (
JNIEnv *env, jobject obj,
@@ -1594,13 +1594,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenLists ( GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNewList (
JNIEnv *env, jobject obj,
@@ -1616,13 +1616,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNewList ( GLuint list , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEndList (
JNIEnv *env, jobject obj)
@@ -1634,13 +1634,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndList ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCallList (
JNIEnv *env, jobject obj,
@@ -1654,13 +1654,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCallList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCallLists__II_3B (
JNIEnv *env, jobject obj,
@@ -1843,13 +1843,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, lists, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCallLists ( GLsizei n , GLenum type , const GLvoid * lists ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListBase (
JNIEnv *env, jobject obj,
@@ -1863,13 +1863,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListBase ( GLuint base ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBegin (
JNIEnv *env, jobject obj,
@@ -1883,13 +1883,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBegin ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnd (
JNIEnv *env, jobject obj)
@@ -1901,13 +1901,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnd ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2d (
JNIEnv *env, jobject obj,
@@ -1923,13 +1923,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2f (
JNIEnv *env, jobject obj,
@@ -1945,13 +1945,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2i (
JNIEnv *env, jobject obj,
@@ -1967,13 +1967,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2s (
JNIEnv *env, jobject obj,
@@ -1989,13 +1989,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3d (
JNIEnv *env, jobject obj,
@@ -2013,13 +2013,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3f (
JNIEnv *env, jobject obj,
@@ -2037,13 +2037,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3i (
JNIEnv *env, jobject obj,
@@ -2061,13 +2061,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3s (
JNIEnv *env, jobject obj,
@@ -2085,13 +2085,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4d (
JNIEnv *env, jobject obj,
@@ -2111,13 +2111,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4f (
JNIEnv *env, jobject obj,
@@ -2137,13 +2137,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4i (
JNIEnv *env, jobject obj,
@@ -2163,13 +2163,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4s (
JNIEnv *env, jobject obj,
@@ -2189,13 +2189,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2dv (
JNIEnv *env, jobject obj,
@@ -2218,13 +2218,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2fv (
JNIEnv *env, jobject obj,
@@ -2247,13 +2247,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2iv (
JNIEnv *env, jobject obj,
@@ -2276,13 +2276,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2sv (
JNIEnv *env, jobject obj,
@@ -2305,13 +2305,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3dv (
JNIEnv *env, jobject obj,
@@ -2334,13 +2334,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3fv (
JNIEnv *env, jobject obj,
@@ -2363,13 +2363,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3iv (
JNIEnv *env, jobject obj,
@@ -2392,13 +2392,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3sv (
JNIEnv *env, jobject obj,
@@ -2421,13 +2421,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4dv (
JNIEnv *env, jobject obj,
@@ -2450,13 +2450,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4fv (
JNIEnv *env, jobject obj,
@@ -2479,13 +2479,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4iv (
JNIEnv *env, jobject obj,
@@ -2508,13 +2508,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4sv (
JNIEnv *env, jobject obj,
@@ -2537,13 +2537,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3b (
JNIEnv *env, jobject obj,
@@ -2561,13 +2561,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3b ( GLbyte nx , GLbyte ny , GLbyte nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3d (
JNIEnv *env, jobject obj,
@@ -2585,13 +2585,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3d ( GLdouble nx , GLdouble ny , GLdouble nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3f (
JNIEnv *env, jobject obj,
@@ -2609,13 +2609,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3f ( GLfloat nx , GLfloat ny , GLfloat nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3i (
JNIEnv *env, jobject obj,
@@ -2633,13 +2633,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3i ( GLint nx , GLint ny , GLint nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3s (
JNIEnv *env, jobject obj,
@@ -2657,13 +2657,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3s ( GLshort nx , GLshort ny , GLshort nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3bv (
JNIEnv *env, jobject obj,
@@ -2686,13 +2686,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3dv (
JNIEnv *env, jobject obj,
@@ -2715,13 +2715,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3fv (
JNIEnv *env, jobject obj,
@@ -2744,13 +2744,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3iv (
JNIEnv *env, jobject obj,
@@ -2773,13 +2773,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3sv (
JNIEnv *env, jobject obj,
@@ -2802,13 +2802,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexd (
JNIEnv *env, jobject obj,
@@ -2822,13 +2822,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexd ( GLdouble c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexf (
JNIEnv *env, jobject obj,
@@ -2842,13 +2842,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexf ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexi (
JNIEnv *env, jobject obj,
@@ -2862,13 +2862,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexi ( GLint c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexs (
JNIEnv *env, jobject obj,
@@ -2882,13 +2882,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexs ( GLshort c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexub (
JNIEnv *env, jobject obj,
@@ -2902,13 +2902,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexub ( GLubyte c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexdv (
JNIEnv *env, jobject obj,
@@ -2931,13 +2931,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexdv ( const GLdouble * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexfv (
JNIEnv *env, jobject obj,
@@ -2960,13 +2960,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexfv ( const GLfloat * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexiv (
JNIEnv *env, jobject obj,
@@ -2989,13 +2989,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexiv ( const GLint * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexsv (
JNIEnv *env, jobject obj,
@@ -3018,13 +3018,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexsv ( const GLshort * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexubv (
JNIEnv *env, jobject obj,
@@ -3047,13 +3047,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexubv ( const GLubyte * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3b (
JNIEnv *env, jobject obj,
@@ -3071,13 +3071,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3b ( GLbyte red , GLbyte green , GLbyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3d (
JNIEnv *env, jobject obj,
@@ -3095,13 +3095,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3d ( GLdouble red , GLdouble green , GLdouble blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3f (
JNIEnv *env, jobject obj,
@@ -3119,13 +3119,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3f ( GLfloat red , GLfloat green , GLfloat blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3i (
JNIEnv *env, jobject obj,
@@ -3143,13 +3143,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3i ( GLint red , GLint green , GLint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3s (
JNIEnv *env, jobject obj,
@@ -3167,13 +3167,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3s ( GLshort red , GLshort green , GLshort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3ub (
JNIEnv *env, jobject obj,
@@ -3191,13 +3191,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ub ( GLubyte red , GLubyte green , GLubyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3ui (
JNIEnv *env, jobject obj,
@@ -3215,13 +3215,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ui ( GLuint red , GLuint green , GLuint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3us (
JNIEnv *env, jobject obj,
@@ -3239,13 +3239,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3us ( GLushort red , GLushort green , GLushort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4b (
JNIEnv *env, jobject obj,
@@ -3265,13 +3265,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4b ( GLbyte red , GLbyte green , GLbyte blue , GLbyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4d (
JNIEnv *env, jobject obj,
@@ -3291,13 +3291,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4d ( GLdouble red , GLdouble green , GLdouble blue , GLdouble alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4f (
JNIEnv *env, jobject obj,
@@ -3317,13 +3317,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4f ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4i (
JNIEnv *env, jobject obj,
@@ -3343,13 +3343,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4i ( GLint red , GLint green , GLint blue , GLint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4s (
JNIEnv *env, jobject obj,
@@ -3369,13 +3369,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4s ( GLshort red , GLshort green , GLshort blue , GLshort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ub (
JNIEnv *env, jobject obj,
@@ -3395,13 +3395,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ub ( GLubyte red , GLubyte green , GLubyte blue , GLubyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ui (
JNIEnv *env, jobject obj,
@@ -3421,13 +3421,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ui ( GLuint red , GLuint green , GLuint blue , GLuint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4us (
JNIEnv *env, jobject obj,
@@ -3447,13 +3447,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4us ( GLushort red , GLushort green , GLushort blue , GLushort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3bv (
JNIEnv *env, jobject obj,
@@ -3476,13 +3476,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3dv (
JNIEnv *env, jobject obj,
@@ -3505,13 +3505,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3fv (
JNIEnv *env, jobject obj,
@@ -3534,13 +3534,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3iv (
JNIEnv *env, jobject obj,
@@ -3563,13 +3563,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3sv (
JNIEnv *env, jobject obj,
@@ -3592,13 +3592,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3ubv (
JNIEnv *env, jobject obj,
@@ -3621,13 +3621,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3uiv (
JNIEnv *env, jobject obj,
@@ -3650,13 +3650,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3usv (
JNIEnv *env, jobject obj,
@@ -3679,13 +3679,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4bv (
JNIEnv *env, jobject obj,
@@ -3708,13 +3708,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4dv (
JNIEnv *env, jobject obj,
@@ -3737,13 +3737,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4fv (
JNIEnv *env, jobject obj,
@@ -3766,13 +3766,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4iv (
JNIEnv *env, jobject obj,
@@ -3795,13 +3795,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4sv (
JNIEnv *env, jobject obj,
@@ -3824,13 +3824,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubv (
JNIEnv *env, jobject obj,
@@ -3853,13 +3853,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4uiv (
JNIEnv *env, jobject obj,
@@ -3882,13 +3882,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4usv (
JNIEnv *env, jobject obj,
@@ -3911,13 +3911,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1d (
JNIEnv *env, jobject obj,
@@ -3931,13 +3931,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1d ( GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1f (
JNIEnv *env, jobject obj,
@@ -3951,13 +3951,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1f ( GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1i (
JNIEnv *env, jobject obj,
@@ -3971,13 +3971,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1i ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1s (
JNIEnv *env, jobject obj,
@@ -3991,13 +3991,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1s ( GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2d (
JNIEnv *env, jobject obj,
@@ -4013,13 +4013,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2d ( GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2f (
JNIEnv *env, jobject obj,
@@ -4035,13 +4035,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2f ( GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2i (
JNIEnv *env, jobject obj,
@@ -4057,13 +4057,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2i ( GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2s (
JNIEnv *env, jobject obj,
@@ -4079,13 +4079,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2s ( GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3d (
JNIEnv *env, jobject obj,
@@ -4103,13 +4103,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3d ( GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3f (
JNIEnv *env, jobject obj,
@@ -4127,13 +4127,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3f ( GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3i (
JNIEnv *env, jobject obj,
@@ -4151,13 +4151,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3i ( GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3s (
JNIEnv *env, jobject obj,
@@ -4175,13 +4175,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3s ( GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4d (
JNIEnv *env, jobject obj,
@@ -4201,13 +4201,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4d ( GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4f (
JNIEnv *env, jobject obj,
@@ -4227,13 +4227,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4f ( GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4i (
JNIEnv *env, jobject obj,
@@ -4253,13 +4253,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4i ( GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4s (
JNIEnv *env, jobject obj,
@@ -4279,13 +4279,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4s ( GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1dv (
JNIEnv *env, jobject obj,
@@ -4308,13 +4308,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1fv (
JNIEnv *env, jobject obj,
@@ -4337,13 +4337,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1iv (
JNIEnv *env, jobject obj,
@@ -4366,13 +4366,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1sv (
JNIEnv *env, jobject obj,
@@ -4395,13 +4395,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2dv (
JNIEnv *env, jobject obj,
@@ -4424,13 +4424,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fv (
JNIEnv *env, jobject obj,
@@ -4453,13 +4453,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2iv (
JNIEnv *env, jobject obj,
@@ -4482,13 +4482,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2sv (
JNIEnv *env, jobject obj,
@@ -4511,13 +4511,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3dv (
JNIEnv *env, jobject obj,
@@ -4540,13 +4540,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3fv (
JNIEnv *env, jobject obj,
@@ -4569,13 +4569,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3iv (
JNIEnv *env, jobject obj,
@@ -4598,13 +4598,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3sv (
JNIEnv *env, jobject obj,
@@ -4627,13 +4627,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4dv (
JNIEnv *env, jobject obj,
@@ -4656,13 +4656,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fv (
JNIEnv *env, jobject obj,
@@ -4685,13 +4685,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4iv (
JNIEnv *env, jobject obj,
@@ -4714,13 +4714,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4sv (
JNIEnv *env, jobject obj,
@@ -4743,13 +4743,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2d (
JNIEnv *env, jobject obj,
@@ -4765,13 +4765,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2f (
JNIEnv *env, jobject obj,
@@ -4787,13 +4787,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2i (
JNIEnv *env, jobject obj,
@@ -4809,13 +4809,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2s (
JNIEnv *env, jobject obj,
@@ -4831,13 +4831,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3d (
JNIEnv *env, jobject obj,
@@ -4855,13 +4855,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3f (
JNIEnv *env, jobject obj,
@@ -4879,13 +4879,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3i (
JNIEnv *env, jobject obj,
@@ -4903,13 +4903,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3s (
JNIEnv *env, jobject obj,
@@ -4927,13 +4927,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4d (
JNIEnv *env, jobject obj,
@@ -4953,13 +4953,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4f (
JNIEnv *env, jobject obj,
@@ -4979,13 +4979,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4i (
JNIEnv *env, jobject obj,
@@ -5005,13 +5005,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4s (
JNIEnv *env, jobject obj,
@@ -5031,13 +5031,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2dv (
JNIEnv *env, jobject obj,
@@ -5060,13 +5060,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2fv (
JNIEnv *env, jobject obj,
@@ -5089,13 +5089,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2iv (
JNIEnv *env, jobject obj,
@@ -5118,13 +5118,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2sv (
JNIEnv *env, jobject obj,
@@ -5147,13 +5147,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3dv (
JNIEnv *env, jobject obj,
@@ -5176,13 +5176,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3fv (
JNIEnv *env, jobject obj,
@@ -5205,13 +5205,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3iv (
JNIEnv *env, jobject obj,
@@ -5234,13 +5234,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3sv (
JNIEnv *env, jobject obj,
@@ -5263,13 +5263,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4dv (
JNIEnv *env, jobject obj,
@@ -5292,13 +5292,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4fv (
JNIEnv *env, jobject obj,
@@ -5321,13 +5321,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4iv (
JNIEnv *env, jobject obj,
@@ -5350,13 +5350,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4sv (
JNIEnv *env, jobject obj,
@@ -5379,13 +5379,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectd (
JNIEnv *env, jobject obj,
@@ -5405,13 +5405,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectd ( GLdouble x1 , GLdouble y1 , GLdouble x2 , GLdouble y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectf (
JNIEnv *env, jobject obj,
@@ -5431,13 +5431,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectf ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRecti (
JNIEnv *env, jobject obj,
@@ -5457,13 +5457,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRecti ( GLint x1 , GLint y1 , GLint x2 , GLint y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRects (
JNIEnv *env, jobject obj,
@@ -5483,13 +5483,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRects ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectdv (
JNIEnv *env, jobject obj,
@@ -5523,13 +5523,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectdv ( const GLdouble * v1 , const GLdouble * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectfv (
JNIEnv *env, jobject obj,
@@ -5563,13 +5563,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectfv ( const GLfloat * v1 , const GLfloat * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectiv (
JNIEnv *env, jobject obj,
@@ -5603,13 +5603,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectiv ( const GLint * v1 , const GLint * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectsv (
JNIEnv *env, jobject obj,
@@ -5643,13 +5643,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectsv ( const GLshort * v1 , const GLshort * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -5846,13 +5846,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointer__II_3B (
JNIEnv *env, jobject obj,
@@ -6035,13 +6035,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -6238,13 +6238,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexPointer__II_3B (
JNIEnv *env, jobject obj,
@@ -6427,13 +6427,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -6630,13 +6630,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagPointer__I_3B (
JNIEnv *env, jobject obj,
@@ -6805,13 +6805,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointer ( GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPointerv__I_3_3B (
JNIEnv *env, jobject obj,
@@ -6987,13 +6987,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointerv ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glArrayElement (
JNIEnv *env, jobject obj,
@@ -7007,13 +7007,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElement ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawArrays (
JNIEnv *env, jobject obj,
@@ -7031,13 +7031,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArrays ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawElements__III_3B (
JNIEnv *env, jobject obj,
@@ -7234,13 +7234,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, indices, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawElements ( GLenum mode , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInterleavedArrays__II_3B (
JNIEnv *env, jobject obj,
@@ -7423,13 +7423,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pointer, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInterleavedArrays ( GLenum format , GLsizei stride , const GLvoid * pointer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShadeModel (
JNIEnv *env, jobject obj,
@@ -7443,13 +7443,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShadeModel ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightf (
JNIEnv *env, jobject obj,
@@ -7467,13 +7467,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightf ( GLenum light , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLighti (
JNIEnv *env, jobject obj,
@@ -7491,13 +7491,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLighti ( GLenum light , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightfv (
JNIEnv *env, jobject obj,
@@ -7524,13 +7524,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightfv ( GLenum light , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightiv (
JNIEnv *env, jobject obj,
@@ -7557,13 +7557,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightiv ( GLenum light , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLightfv (
JNIEnv *env, jobject obj,
@@ -7591,13 +7591,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightfv ( GLenum light , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLightiv (
JNIEnv *env, jobject obj,
@@ -7625,13 +7625,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightiv ( GLenum light , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModelf (
JNIEnv *env, jobject obj,
@@ -7647,13 +7647,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModeli (
JNIEnv *env, jobject obj,
@@ -7669,13 +7669,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeli ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModelfv (
JNIEnv *env, jobject obj,
@@ -7700,13 +7700,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModeliv (
JNIEnv *env, jobject obj,
@@ -7731,13 +7731,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeliv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMaterialf (
JNIEnv *env, jobject obj,
@@ -7755,13 +7755,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialf ( GLenum face , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMateriali (
JNIEnv *env, jobject obj,
@@ -7779,13 +7779,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMateriali ( GLenum face , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMaterialfv (
JNIEnv *env, jobject obj,
@@ -7812,13 +7812,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialfv ( GLenum face , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMaterialiv (
JNIEnv *env, jobject obj,
@@ -7845,13 +7845,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialiv ( GLenum face , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMaterialfv (
JNIEnv *env, jobject obj,
@@ -7879,13 +7879,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialfv ( GLenum face , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMaterialiv (
JNIEnv *env, jobject obj,
@@ -7913,13 +7913,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialiv ( GLenum face , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorMaterial (
JNIEnv *env, jobject obj,
@@ -7935,13 +7935,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMaterial ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelZoom (
JNIEnv *env, jobject obj,
@@ -7957,13 +7957,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelZoom ( GLfloat xfactor , GLfloat yfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelStoref (
JNIEnv *env, jobject obj,
@@ -7979,13 +7979,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStoref ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelStorei (
JNIEnv *env, jobject obj,
@@ -8001,13 +8001,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStorei ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransferf (
JNIEnv *env, jobject obj,
@@ -8023,13 +8023,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransferi (
JNIEnv *env, jobject obj,
@@ -8045,13 +8045,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelMapfv (
JNIEnv *env, jobject obj,
@@ -8078,13 +8078,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapfv ( GLenum map , GLint mapsize , const GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelMapuiv (
JNIEnv *env, jobject obj,
@@ -8111,13 +8111,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapuiv ( GLenum map , GLint mapsize , const GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelMapusv (
JNIEnv *env, jobject obj,
@@ -8144,13 +8144,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapusv ( GLenum map , GLint mapsize , const GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelMapfv (
JNIEnv *env, jobject obj,
@@ -8176,13 +8176,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapfv ( GLenum map , GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelMapuiv (
JNIEnv *env, jobject obj,
@@ -8208,13 +8208,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapuiv ( GLenum map , GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelMapusv (
JNIEnv *env, jobject obj,
@@ -8240,13 +8240,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapusv ( GLenum map , GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBitmap (
JNIEnv *env, jobject obj,
@@ -8281,13 +8281,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, bitmap, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBitmap ( GLsizei width , GLsizei height , GLfloat xorig , GLfloat yorig , GLfloat xmove , GLfloat ymove , const GLubyte * bitmap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReadPixels__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -8533,13 +8533,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr6, (isCopiedArray6 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawPixels__IIII_3B (
JNIEnv *env, jobject obj,
@@ -8750,13 +8750,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawPixels ( GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyPixels (
JNIEnv *env, jobject obj,
@@ -8778,13 +8778,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStencilFunc (
JNIEnv *env, jobject obj,
@@ -8802,13 +8802,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilFunc ( GLenum func , GLint ref , GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStencilMask (
JNIEnv *env, jobject obj,
@@ -8822,13 +8822,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStencilOp (
JNIEnv *env, jobject obj,
@@ -8846,13 +8846,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilOp ( GLenum fail , GLenum zfail , GLenum zpass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearStencil (
JNIEnv *env, jobject obj,
@@ -8866,13 +8866,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearStencil ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGend (
JNIEnv *env, jobject obj,
@@ -8890,13 +8890,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGend ( GLenum coord , GLenum pname , GLdouble param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGenf (
JNIEnv *env, jobject obj,
@@ -8914,13 +8914,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenf ( GLenum coord , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGeni (
JNIEnv *env, jobject obj,
@@ -8938,13 +8938,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeni ( GLenum coord , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGendv (
JNIEnv *env, jobject obj,
@@ -8971,13 +8971,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGendv ( GLenum coord , GLenum pname , const GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGenfv (
JNIEnv *env, jobject obj,
@@ -9004,13 +9004,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenfv ( GLenum coord , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGeniv (
JNIEnv *env, jobject obj,
@@ -9037,13 +9037,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeniv ( GLenum coord , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexGendv (
JNIEnv *env, jobject obj,
@@ -9071,13 +9071,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGendv ( GLenum coord , GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexGenfv (
JNIEnv *env, jobject obj,
@@ -9105,13 +9105,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGenfv ( GLenum coord , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexGeniv (
JNIEnv *env, jobject obj,
@@ -9139,13 +9139,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGeniv ( GLenum coord , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnvf (
JNIEnv *env, jobject obj,
@@ -9163,13 +9163,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnvi (
JNIEnv *env, jobject obj,
@@ -9187,13 +9187,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvi ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnvfv (
JNIEnv *env, jobject obj,
@@ -9220,13 +9220,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnviv (
JNIEnv *env, jobject obj,
@@ -9253,13 +9253,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnviv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexEnvfv (
JNIEnv *env, jobject obj,
@@ -9287,13 +9287,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnvfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexEnviv (
JNIEnv *env, jobject obj,
@@ -9321,13 +9321,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnviv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameterf (
JNIEnv *env, jobject obj,
@@ -9345,13 +9345,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameteri (
JNIEnv *env, jobject obj,
@@ -9369,13 +9369,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteri ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameterfv (
JNIEnv *env, jobject obj,
@@ -9402,13 +9402,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameteriv (
JNIEnv *env, jobject obj,
@@ -9435,13 +9435,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexParameterfv (
JNIEnv *env, jobject obj,
@@ -9469,13 +9469,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexParameteriv (
JNIEnv *env, jobject obj,
@@ -9503,13 +9503,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexLevelParameterfv (
JNIEnv *env, jobject obj,
@@ -9539,13 +9539,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameterfv ( GLenum target , GLint level , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexLevelParameteriv (
JNIEnv *env, jobject obj,
@@ -9575,13 +9575,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameteriv ( GLenum target , GLint level , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage1D__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -9834,13 +9834,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage1D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -10107,13 +10107,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage2D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLsizei height , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexImage__IIII_3B (
JNIEnv *env, jobject obj,
@@ -10331,13 +10331,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexImage ( GLenum target , GLint level , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenTextures (
JNIEnv *env, jobject obj,
@@ -10363,13 +10363,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTextures ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteTextures (
JNIEnv *env, jobject obj,
@@ -10394,13 +10394,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTextures ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindTexture (
JNIEnv *env, jobject obj,
@@ -10416,13 +10416,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTexture ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPrioritizeTextures (
JNIEnv *env, jobject obj,
@@ -10458,13 +10458,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, priorities, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTextures ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glAreTexturesResident (
JNIEnv *env, jobject obj,
@@ -10504,13 +10504,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResident ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsTexture (
JNIEnv *env, jobject obj,
@@ -10527,13 +10527,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTexture ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -10772,13 +10772,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -11045,13 +11045,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage1D (
JNIEnv *env, jobject obj,
@@ -11077,13 +11077,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage2D (
JNIEnv *env, jobject obj,
@@ -11111,13 +11111,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage1D (
JNIEnv *env, jobject obj,
@@ -11141,13 +11141,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage2D (
JNIEnv *env, jobject obj,
@@ -11175,13 +11175,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap1d (
JNIEnv *env, jobject obj,
@@ -11214,13 +11214,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint stride , GLint order , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap1f (
JNIEnv *env, jobject obj,
@@ -11253,13 +11253,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint stride , GLint order , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap2d (
JNIEnv *env, jobject obj,
@@ -11300,13 +11300,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint ustride , GLint uorder , GLdouble v1 , GLdouble v2 , GLint vstride , GLint vorder , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap2f (
JNIEnv *env, jobject obj,
@@ -11347,13 +11347,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint ustride , GLint uorder , GLfloat v1 , GLfloat v2 , GLint vstride , GLint vorder , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapdv (
JNIEnv *env, jobject obj,
@@ -11381,13 +11381,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapdv ( GLenum target , GLenum query , GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapfv (
JNIEnv *env, jobject obj,
@@ -11415,13 +11415,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapfv ( GLenum target , GLenum query , GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapiv (
JNIEnv *env, jobject obj,
@@ -11449,13 +11449,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapiv ( GLenum target , GLenum query , GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1d (
JNIEnv *env, jobject obj,
@@ -11469,13 +11469,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1d ( GLdouble u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1f (
JNIEnv *env, jobject obj,
@@ -11489,13 +11489,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1f ( GLfloat u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1dv (
JNIEnv *env, jobject obj,
@@ -11518,13 +11518,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1fv (
JNIEnv *env, jobject obj,
@@ -11547,13 +11547,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2d (
JNIEnv *env, jobject obj,
@@ -11569,13 +11569,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2d ( GLdouble u , GLdouble v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2f (
JNIEnv *env, jobject obj,
@@ -11591,13 +11591,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2f ( GLfloat u , GLfloat v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2dv (
JNIEnv *env, jobject obj,
@@ -11620,13 +11620,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2fv (
JNIEnv *env, jobject obj,
@@ -11649,13 +11649,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid1d (
JNIEnv *env, jobject obj,
@@ -11673,13 +11673,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1d ( GLint un , GLdouble u1 , GLdouble u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid1f (
JNIEnv *env, jobject obj,
@@ -11697,13 +11697,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1f ( GLint un , GLfloat u1 , GLfloat u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid2d (
JNIEnv *env, jobject obj,
@@ -11727,13 +11727,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2d ( GLint un , GLdouble u1 , GLdouble u2 , GLint vn , GLdouble v1 , GLdouble v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid2f (
JNIEnv *env, jobject obj,
@@ -11757,13 +11757,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2f ( GLint un , GLfloat u1 , GLfloat u2 , GLint vn , GLfloat v1 , GLfloat v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalPoint1 (
JNIEnv *env, jobject obj,
@@ -11777,13 +11777,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint1 ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalPoint2 (
JNIEnv *env, jobject obj,
@@ -11799,13 +11799,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint2 ( GLint i , GLint j ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalMesh1 (
JNIEnv *env, jobject obj,
@@ -11823,13 +11823,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh1 ( GLenum mode , GLint i1 , GLint i2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalMesh2 (
JNIEnv *env, jobject obj,
@@ -11851,13 +11851,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh2 ( GLenum mode , GLint i1 , GLint i2 , GLint j1 , GLint j2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogf (
JNIEnv *env, jobject obj,
@@ -11873,13 +11873,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogi (
JNIEnv *env, jobject obj,
@@ -11895,13 +11895,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogfv (
JNIEnv *env, jobject obj,
@@ -11926,13 +11926,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogiv (
JNIEnv *env, jobject obj,
@@ -11957,13 +11957,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogiv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFeedbackBuffer (
JNIEnv *env, jobject obj,
@@ -11991,13 +11991,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, buffer, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFeedbackBuffer ( GLsizei size , GLenum type , GLfloat * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPassThrough (
JNIEnv *env, jobject obj,
@@ -12011,13 +12011,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPassThrough ( GLfloat token ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSelectBuffer (
JNIEnv *env, jobject obj,
@@ -12043,13 +12043,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, buffer, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSelectBuffer ( GLsizei size , GLuint * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInitNames (
JNIEnv *env, jobject obj)
@@ -12061,13 +12061,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInitNames ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadName (
JNIEnv *env, jobject obj,
@@ -12081,13 +12081,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushName (
JNIEnv *env, jobject obj,
@@ -12101,13 +12101,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopName (
JNIEnv *env, jobject obj)
@@ -12119,13 +12119,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopName ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawRangeElements__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -12350,13 +12350,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, indices, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElements ( GLenum mode , GLuint start , GLuint end , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage3D__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -12637,13 +12637,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3D ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage3D__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -12938,13 +12938,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage3D (
JNIEnv *env, jobject obj,
@@ -12974,13 +12974,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTable__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -13205,13 +13205,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, table, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTable ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorSubTable__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -13436,13 +13436,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTable ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameteriv (
JNIEnv *env, jobject obj,
@@ -13469,13 +13469,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameterfv (
JNIEnv *env, jobject obj,
@@ -13502,13 +13502,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorSubTable (
JNIEnv *env, jobject obj,
@@ -13530,13 +13530,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTable ( GLenum target , GLsizei start , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorTable (
JNIEnv *env, jobject obj,
@@ -13558,13 +13558,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTable ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTable__III_3B (
JNIEnv *env, jobject obj,
@@ -13768,13 +13768,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, table, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTable ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterfv (
JNIEnv *env, jobject obj,
@@ -13802,13 +13802,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameteriv (
JNIEnv *env, jobject obj,
@@ -13836,13 +13836,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendEquation (
JNIEnv *env, jobject obj,
@@ -13856,13 +13856,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquation ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendColor (
JNIEnv *env, jobject obj,
@@ -13882,13 +13882,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHistogram (
JNIEnv *env, jobject obj,
@@ -13908,13 +13908,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogram ( GLenum target , GLsizei width , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetHistogram (
JNIEnv *env, jobject obj,
@@ -13928,13 +13928,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogram ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogram__IZII_3B (
JNIEnv *env, jobject obj,
@@ -14152,13 +14152,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogram ( GLenum target , GLboolean reset , GLenum format , GLenum type , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameterfv (
JNIEnv *env, jobject obj,
@@ -14186,13 +14186,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameteriv (
JNIEnv *env, jobject obj,
@@ -14220,13 +14220,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMinmax (
JNIEnv *env, jobject obj,
@@ -14244,13 +14244,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmax ( GLenum target , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetMinmax (
JNIEnv *env, jobject obj,
@@ -14264,13 +14264,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmax ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmax__IZII_3B (
JNIEnv *env, jobject obj,
@@ -14488,13 +14488,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmax ( GLenum target , GLboolean reset , GLenum format , GLenum types , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameterfv (
JNIEnv *env, jobject obj,
@@ -14522,13 +14522,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameteriv (
JNIEnv *env, jobject obj,
@@ -14556,13 +14556,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter1D__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -14787,13 +14787,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, image, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1D ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter2D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -15032,13 +15032,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, image, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterf (
JNIEnv *env, jobject obj,
@@ -15056,13 +15056,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterf ( GLenum target , GLenum pname , GLfloat params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterfv (
JNIEnv *env, jobject obj,
@@ -15089,13 +15089,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameteri (
JNIEnv *env, jobject obj,
@@ -15113,13 +15113,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteri ( GLenum target , GLenum pname , GLint params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameteriv (
JNIEnv *env, jobject obj,
@@ -15146,13 +15146,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter1D (
JNIEnv *env, jobject obj,
@@ -15174,13 +15174,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter2D (
JNIEnv *env, jobject obj,
@@ -15204,13 +15204,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionFilter__III_3B (
JNIEnv *env, jobject obj,
@@ -15414,13 +15414,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, image, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilter ( GLenum target , GLenum format , GLenum type , GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameterfv (
JNIEnv *env, jobject obj,
@@ -15448,13 +15448,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameteriv (
JNIEnv *env, jobject obj,
@@ -15482,13 +15482,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSeparableFilter2D__IIIIII_3B_3B (
JNIEnv *env, jobject obj,
@@ -15804,13 +15804,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, column, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * row , const GLvoid * column ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetSeparableFilter__III_3B_3B_3B (
JNIEnv *env, jobject obj,
@@ -16182,13 +16182,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, span, ptr5, (isCopiedArray5 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilter ( GLenum target , GLenum format , GLenum type , GLvoid * row , GLvoid * column , GLvoid * span ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glActiveTexture (
JNIEnv *env, jobject obj,
@@ -16202,13 +16202,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClientActiveTexture (
JNIEnv *env, jobject obj,
@@ -16222,13 +16222,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -16467,13 +16467,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage2D__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -16726,13 +16726,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage3D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -16999,13 +16999,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17244,13 +17244,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17517,13 +17517,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage3D__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17818,13 +17818,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCompressedTexImage__II_3B (
JNIEnv *env, jobject obj,
@@ -18014,13 +18014,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, img, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImage ( GLenum target , GLint lod , GLvoid * img ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1d (
JNIEnv *env, jobject obj,
@@ -18036,13 +18036,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1d ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1dv (
JNIEnv *env, jobject obj,
@@ -18067,13 +18067,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1f (
JNIEnv *env, jobject obj,
@@ -18089,13 +18089,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1f ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1fv (
JNIEnv *env, jobject obj,
@@ -18120,13 +18120,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1i (
JNIEnv *env, jobject obj,
@@ -18142,13 +18142,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1i ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1iv (
JNIEnv *env, jobject obj,
@@ -18173,13 +18173,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1s (
JNIEnv *env, jobject obj,
@@ -18195,13 +18195,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1s ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1sv (
JNIEnv *env, jobject obj,
@@ -18226,13 +18226,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2d (
JNIEnv *env, jobject obj,
@@ -18250,13 +18250,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2d ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2dv (
JNIEnv *env, jobject obj,
@@ -18281,13 +18281,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2f (
JNIEnv *env, jobject obj,
@@ -18305,13 +18305,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2f ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2fv (
JNIEnv *env, jobject obj,
@@ -18336,13 +18336,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2i (
JNIEnv *env, jobject obj,
@@ -18360,13 +18360,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2i ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2iv (
JNIEnv *env, jobject obj,
@@ -18391,13 +18391,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2s (
JNIEnv *env, jobject obj,
@@ -18415,13 +18415,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2s ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2sv (
JNIEnv *env, jobject obj,
@@ -18446,13 +18446,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3d (
JNIEnv *env, jobject obj,
@@ -18472,13 +18472,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3d ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3dv (
JNIEnv *env, jobject obj,
@@ -18503,13 +18503,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3f (
JNIEnv *env, jobject obj,
@@ -18529,13 +18529,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3f ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3fv (
JNIEnv *env, jobject obj,
@@ -18560,13 +18560,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3i (
JNIEnv *env, jobject obj,
@@ -18586,13 +18586,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3i ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3iv (
JNIEnv *env, jobject obj,
@@ -18617,13 +18617,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3s (
JNIEnv *env, jobject obj,
@@ -18643,13 +18643,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3s ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3sv (
JNIEnv *env, jobject obj,
@@ -18674,13 +18674,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4d (
JNIEnv *env, jobject obj,
@@ -18702,13 +18702,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4d ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4dv (
JNIEnv *env, jobject obj,
@@ -18733,13 +18733,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4f (
JNIEnv *env, jobject obj,
@@ -18761,13 +18761,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4f ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4fv (
JNIEnv *env, jobject obj,
@@ -18792,13 +18792,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4i (
JNIEnv *env, jobject obj,
@@ -18820,13 +18820,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4i ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4iv (
JNIEnv *env, jobject obj,
@@ -18851,13 +18851,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4s (
JNIEnv *env, jobject obj,
@@ -18879,13 +18879,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4s ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4sv (
JNIEnv *env, jobject obj,
@@ -18910,13 +18910,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixd (
JNIEnv *env, jobject obj,
@@ -18939,13 +18939,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixf (
JNIEnv *env, jobject obj,
@@ -18968,13 +18968,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixd (
JNIEnv *env, jobject obj,
@@ -18997,13 +18997,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixf (
JNIEnv *env, jobject obj,
@@ -19026,13 +19026,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleCoverage (
JNIEnv *env, jobject obj,
@@ -19048,13 +19048,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverage ( GLclampf value , GLboolean invert ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSamplePass (
JNIEnv *env, jobject obj,
@@ -19068,13 +19068,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePass ( GLenum pass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glActiveTextureARB (
JNIEnv *env, jobject obj,
@@ -19088,13 +19088,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClientActiveTextureARB (
JNIEnv *env, jobject obj,
@@ -19108,13 +19108,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1dARB (
JNIEnv *env, jobject obj,
@@ -19130,13 +19130,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dARB ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1dvARB (
JNIEnv *env, jobject obj,
@@ -19161,13 +19161,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1fARB (
JNIEnv *env, jobject obj,
@@ -19183,13 +19183,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fARB ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1fvARB (
JNIEnv *env, jobject obj,
@@ -19214,13 +19214,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1iARB (
JNIEnv *env, jobject obj,
@@ -19236,13 +19236,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iARB ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1ivARB (
JNIEnv *env, jobject obj,
@@ -19267,13 +19267,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1sARB (
JNIEnv *env, jobject obj,
@@ -19289,13 +19289,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sARB ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1svARB (
JNIEnv *env, jobject obj,
@@ -19320,13 +19320,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2dARB (
JNIEnv *env, jobject obj,
@@ -19344,13 +19344,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dARB ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2dvARB (
JNIEnv *env, jobject obj,
@@ -19375,13 +19375,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2fARB (
JNIEnv *env, jobject obj,
@@ -19399,13 +19399,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fARB ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2fvARB (
JNIEnv *env, jobject obj,
@@ -19430,13 +19430,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2iARB (
JNIEnv *env, jobject obj,
@@ -19454,13 +19454,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iARB ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2ivARB (
JNIEnv *env, jobject obj,
@@ -19485,13 +19485,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2sARB (
JNIEnv *env, jobject obj,
@@ -19509,13 +19509,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sARB ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2svARB (
JNIEnv *env, jobject obj,
@@ -19540,13 +19540,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3dARB (
JNIEnv *env, jobject obj,
@@ -19566,13 +19566,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3dvARB (
JNIEnv *env, jobject obj,
@@ -19597,13 +19597,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3fARB (
JNIEnv *env, jobject obj,
@@ -19623,13 +19623,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3fvARB (
JNIEnv *env, jobject obj,
@@ -19654,13 +19654,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3iARB (
JNIEnv *env, jobject obj,
@@ -19680,13 +19680,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iARB ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3ivARB (
JNIEnv *env, jobject obj,
@@ -19711,13 +19711,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3sARB (
JNIEnv *env, jobject obj,
@@ -19737,13 +19737,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sARB ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3svARB (
JNIEnv *env, jobject obj,
@@ -19768,13 +19768,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4dARB (
JNIEnv *env, jobject obj,
@@ -19796,13 +19796,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4dvARB (
JNIEnv *env, jobject obj,
@@ -19827,13 +19827,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4fARB (
JNIEnv *env, jobject obj,
@@ -19855,13 +19855,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4fvARB (
JNIEnv *env, jobject obj,
@@ -19886,13 +19886,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4iARB (
JNIEnv *env, jobject obj,
@@ -19914,13 +19914,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iARB ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4ivARB (
JNIEnv *env, jobject obj,
@@ -19945,13 +19945,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4sARB (
JNIEnv *env, jobject obj,
@@ -19973,13 +19973,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sARB ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4svARB (
JNIEnv *env, jobject obj,
@@ -20004,13 +20004,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendColorEXT (
JNIEnv *env, jobject obj,
@@ -20030,13 +20030,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColorEXT ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonOffsetEXT (
JNIEnv *env, jobject obj,
@@ -20052,13 +20052,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffsetEXT ( GLfloat factor , GLfloat bias ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage3DEXT__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -20339,13 +20339,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3DEXT ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage3DEXT__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -20640,13 +20640,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage3DEXT (
JNIEnv *env, jobject obj,
@@ -20676,13 +20676,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3DEXT ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenTexturesEXT (
JNIEnv *env, jobject obj,
@@ -20708,13 +20708,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTexturesEXT ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteTexturesEXT (
JNIEnv *env, jobject obj,
@@ -20739,13 +20739,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTexturesEXT ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindTextureEXT (
JNIEnv *env, jobject obj,
@@ -20761,13 +20761,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTextureEXT ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPrioritizeTexturesEXT (
JNIEnv *env, jobject obj,
@@ -20803,13 +20803,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, priorities, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTexturesEXT ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glAreTexturesResidentEXT (
JNIEnv *env, jobject obj,
@@ -20849,13 +20849,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResidentEXT ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsTextureEXT (
JNIEnv *env, jobject obj,
@@ -20872,13 +20872,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTextureEXT ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -21089,13 +21089,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -21292,13 +21292,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -21509,13 +21509,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -21712,13 +21712,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -21929,13 +21929,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagPointerEXT (
JNIEnv *env, jobject obj,
@@ -21962,13 +21962,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerEXT ( GLsizei stride , GLsizei count , const GLboolean * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPointervEXT__I_3_3B (
JNIEnv *env, jobject obj,
@@ -22144,13 +22144,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointervEXT ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glArrayElementEXT (
JNIEnv *env, jobject obj,
@@ -22164,13 +22164,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElementEXT ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawArraysEXT (
JNIEnv *env, jobject obj,
@@ -22188,13 +22188,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArraysEXT ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendEquationEXT (
JNIEnv *env, jobject obj,
@@ -22208,13 +22208,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquationEXT ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfEXT (
JNIEnv *env, jobject obj,
@@ -22230,13 +22230,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfEXT ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -22261,13 +22261,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvEXT ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfSGIS (
JNIEnv *env, jobject obj,
@@ -22283,13 +22283,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfSGIS ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -22314,13 +22314,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvSGIS ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -22545,13 +22545,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, table, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableEXT ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorSubTableEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -22776,13 +22776,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTableEXT ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -22986,13 +22986,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, table, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableEXT ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -23020,13 +23020,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvEXT ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterivEXT (
JNIEnv *env, jobject obj,
@@ -23054,13 +23054,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivEXT ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLockArraysEXT (
JNIEnv *env, jobject obj,
@@ -23076,13 +23076,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLockArraysEXT ( GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glUnlockArraysEXT (
JNIEnv *env, jobject obj)
@@ -23094,13 +23094,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glUnlockArraysEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixfARB (
JNIEnv *env, jobject obj,
@@ -23123,13 +23123,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixdARB (
JNIEnv *env, jobject obj,
@@ -23152,13 +23152,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixfARB (
JNIEnv *env, jobject obj,
@@ -23181,13 +23181,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixdARB (
JNIEnv *env, jobject obj,
@@ -23210,13 +23210,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleCoverageARB (
JNIEnv *env, jobject obj,
@@ -23232,13 +23232,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverageARB ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage3DARB__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -23505,13 +23505,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage2DARB__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -23764,13 +23764,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg7, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage1DARB__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -24009,13 +24009,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1DARB ( GLenum , GLint , GLenum , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage3DARB__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -24310,13 +24310,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg10, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage3DARB ( GLenum , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage2DARB__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -24583,13 +24583,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2DARB ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage1DARB__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -24828,13 +24828,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1DARB ( GLenum , GLint , GLint , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCompressedTexImageARB__II_3B (
JNIEnv *env, jobject obj,
@@ -25024,13 +25024,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImageARB ( GLenum , GLint , void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightbvARB (
JNIEnv *env, jobject obj,
@@ -25055,13 +25055,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightbvARB ( GLint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightsvARB (
JNIEnv *env, jobject obj,
@@ -25086,13 +25086,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightsvARB ( GLint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightivARB (
JNIEnv *env, jobject obj,
@@ -25117,13 +25117,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightivARB ( GLint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightfvARB (
JNIEnv *env, jobject obj,
@@ -25148,13 +25148,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightfvARB ( GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightdvARB (
JNIEnv *env, jobject obj,
@@ -25179,13 +25179,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightdvARB ( GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightubvARB (
JNIEnv *env, jobject obj,
@@ -25210,13 +25210,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightusvARB (
JNIEnv *env, jobject obj,
@@ -25241,13 +25241,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightuivARB (
JNIEnv *env, jobject obj,
@@ -25272,13 +25272,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightPointerARB__III_3B (
JNIEnv *env, jobject obj,
@@ -25475,13 +25475,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexBlendARB (
JNIEnv *env, jobject obj,
@@ -25495,13 +25495,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCurrentPaletteMatrixARB (
JNIEnv *env, jobject obj,
@@ -25515,13 +25515,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCurrentPaletteMatrixARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexubvARB (
JNIEnv *env, jobject obj,
@@ -25546,13 +25546,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexusvARB (
JNIEnv *env, jobject obj,
@@ -25577,13 +25577,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexuivARB (
JNIEnv *env, jobject obj,
@@ -25608,13 +25608,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexPointerARB__III_3B (
JNIEnv *env, jobject obj,
@@ -25811,13 +25811,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexFilterFuncSGIS (
JNIEnv *env, jobject obj,
@@ -25845,13 +25845,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexFilterFuncSGIS ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexFilterFuncSGIS (
JNIEnv *env, jobject obj,
@@ -25880,13 +25880,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexFilterFuncSGIS ( GLenum , GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage1DEXT__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -26125,13 +26125,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1DEXT ( GLenum , GLint , GLint , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage2DEXT__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -26398,13 +26398,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage1DEXT (
JNIEnv *env, jobject obj,
@@ -26430,13 +26430,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage2DEXT (
JNIEnv *env, jobject obj,
@@ -26464,13 +26464,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage1DEXT (
JNIEnv *env, jobject obj,
@@ -26494,13 +26494,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1DEXT ( GLenum , GLint , GLint , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage2DEXT (
JNIEnv *env, jobject obj,
@@ -26528,13 +26528,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramEXT__IZII_3B (
JNIEnv *env, jobject obj,
@@ -26752,13 +26752,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -26786,13 +26786,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameterivEXT (
JNIEnv *env, jobject obj,
@@ -26820,13 +26820,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxEXT__IZII_3B (
JNIEnv *env, jobject obj,
@@ -27044,13 +27044,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -27078,13 +27078,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameterivEXT (
JNIEnv *env, jobject obj,
@@ -27112,13 +27112,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHistogramEXT (
JNIEnv *env, jobject obj,
@@ -27138,13 +27138,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogramEXT ( GLenum , GLsizei , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMinmaxEXT (
JNIEnv *env, jobject obj,
@@ -27162,13 +27162,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmaxEXT ( GLenum , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetHistogramEXT (
JNIEnv *env, jobject obj,
@@ -27182,13 +27182,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogramEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetMinmaxEXT (
JNIEnv *env, jobject obj,
@@ -27202,13 +27202,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmaxEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter1DEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -27433,13 +27433,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg5, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1DEXT ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter2DEXT__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -27678,13 +27678,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterfEXT (
JNIEnv *env, jobject obj,
@@ -27702,13 +27702,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -27735,13 +27735,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameteriEXT (
JNIEnv *env, jobject obj,
@@ -27759,13 +27759,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterivEXT (
JNIEnv *env, jobject obj,
@@ -27792,13 +27792,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter1DEXT (
JNIEnv *env, jobject obj,
@@ -27820,13 +27820,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1DEXT ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter2DEXT (
JNIEnv *env, jobject obj,
@@ -27850,13 +27850,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2DEXT ( GLenum , GLenum , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionFilterEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -28060,13 +28060,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilterEXT ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -28094,13 +28094,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameterivEXT (
JNIEnv *env, jobject obj,
@@ -28128,13 +28128,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetSeparableFilterEXT__III_3B_3B_3B (
JNIEnv *env, jobject obj,
@@ -28506,13 +28506,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg5, ptr5, (isCopiedArray5 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilterEXT ( GLenum , GLenum , GLenum , GLvoid * , GLvoid * , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSeparableFilter2DEXT__IIIIII_3B_3B (
JNIEnv *env, jobject obj,
@@ -28828,13 +28828,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg7, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableSGI__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -29059,13 +29059,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg5, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableSGI ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameterfvSGI (
JNIEnv *env, jobject obj,
@@ -29092,13 +29092,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfvSGI ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameterivSGI (
JNIEnv *env, jobject obj,
@@ -29125,13 +29125,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterivSGI ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorTableSGI (
JNIEnv *env, jobject obj,
@@ -29153,13 +29153,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTableSGI ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableSGI__III_3B (
JNIEnv *env, jobject obj,
@@ -29363,13 +29363,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableSGI ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterfvSGI (
JNIEnv *env, jobject obj,
@@ -29397,13 +29397,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvSGI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterivSGI (
JNIEnv *env, jobject obj,
@@ -29431,13 +29431,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivSGI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenSGIX (
JNIEnv *env, jobject obj,
@@ -29451,13 +29451,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenSGIX ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameteriSGIS (
JNIEnv *env, jobject obj,
@@ -29473,13 +29473,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameteriSGIS ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameterivSGIS (
JNIEnv *env, jobject obj,
@@ -29504,13 +29504,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterivSGIS ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameterfSGIS (
JNIEnv *env, jobject obj,
@@ -29526,13 +29526,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfSGIS ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -29557,13 +29557,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfvSGIS ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelTexGenParameterivSGIS (
JNIEnv *env, jobject obj,
@@ -29589,13 +29589,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterivSGIS ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelTexGenParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -29621,13 +29621,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterfvSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage4DSGIS__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -29922,13 +29922,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg10, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage4DSGIS ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLsizei , GLint , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage4DSGIS__IIIIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -30251,13 +30251,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg12, ptr12, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage4DSGIS ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDetailTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -30284,13 +30284,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDetailTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetDetailTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -30316,13 +30316,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDetailTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSharpenTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -30349,13 +30349,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSharpenTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetSharpenTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -30381,13 +30381,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSharpenTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleMaskSGIS (
JNIEnv *env, jobject obj,
@@ -30403,13 +30403,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskSGIS ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSamplePatternSGIS (
JNIEnv *env, jobject obj,
@@ -30423,13 +30423,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternSGIS ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameterfSGIX (
JNIEnv *env, jobject obj,
@@ -30445,13 +30445,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -30476,13 +30476,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameteriSGIX (
JNIEnv *env, jobject obj,
@@ -30498,13 +30498,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameteriSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -30529,13 +30529,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfARB (
JNIEnv *env, jobject obj,
@@ -30551,13 +30551,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfARB ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfvARB (
JNIEnv *env, jobject obj,
@@ -30582,13 +30582,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvARB ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGetInstrumentsSGIX (
JNIEnv *env, jobject obj)
@@ -30603,13 +30603,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glGetInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInstrumentsBufferSGIX (
JNIEnv *env, jobject obj,
@@ -30635,13 +30635,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInstrumentsBufferSGIX ( GLsizei , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glPollInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -30668,13 +30668,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollInstrumentsSGIX ( GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReadInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -30688,13 +30688,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStartInstrumentsSGIX (
JNIEnv *env, jobject obj)
@@ -30706,13 +30706,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStartInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStopInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -30726,13 +30726,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStopInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFrameZoomSGIX (
JNIEnv *env, jobject obj,
@@ -30746,13 +30746,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrameZoomSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTagSampleBufferSGIX (
JNIEnv *env, jobject obj)
@@ -30764,13 +30764,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTagSampleBufferSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeformationMap3dSGIX (
JNIEnv *env, jobject obj,
@@ -30819,13 +30819,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg13, ptr13, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3dSGIX ( GLenum , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeformationMap3fSGIX (
JNIEnv *env, jobject obj,
@@ -30874,13 +30874,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg13, ptr13, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3fSGIX ( GLenum , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeformSGIX (
JNIEnv *env, jobject obj,
@@ -30894,13 +30894,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadIdentityDeformationMapSGIX (
JNIEnv *env, jobject obj,
@@ -30914,13 +30914,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentityDeformationMapSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReferencePlaneSGIX (
JNIEnv *env, jobject obj,
@@ -30943,13 +30943,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReferencePlaneSGIX ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFlushRasterSGIX (
JNIEnv *env, jobject obj)
@@ -30961,13 +30961,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushRasterSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogFuncSGIS (
JNIEnv *env, jobject obj,
@@ -30992,13 +30992,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogFuncSGIS ( GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFogFuncSGIS (
JNIEnv *env, jobject obj,
@@ -31022,13 +31022,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, (isCopiedArray0 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFogFuncSGIS ( GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameteriHP (
JNIEnv *env, jobject obj,
@@ -31046,13 +31046,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameteriHP ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameterfHP (
JNIEnv *env, jobject obj,
@@ -31070,13 +31070,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfHP ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameterivHP (
JNIEnv *env, jobject obj,
@@ -31103,13 +31103,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterivHP ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameterfvHP (
JNIEnv *env, jobject obj,
@@ -31136,13 +31136,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfvHP ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetImageTransformParameterivHP (
JNIEnv *env, jobject obj,
@@ -31170,13 +31170,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterivHP ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetImageTransformParameterfvHP (
JNIEnv *env, jobject obj,
@@ -31204,13 +31204,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterfvHP ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorSubTableEXT (
JNIEnv *env, jobject obj,
@@ -31232,13 +31232,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTableEXT ( GLenum , GLsizei , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHintPGI (
JNIEnv *env, jobject obj,
@@ -31254,13 +31254,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHintPGI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetListParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -31288,13 +31288,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterfvSGIX ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetListParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -31322,13 +31322,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterivSGIX ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameterfSGIX (
JNIEnv *env, jobject obj,
@@ -31346,13 +31346,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfSGIX ( GLuint , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -31379,13 +31379,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfvSGIX ( GLuint , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameteriSGIX (
JNIEnv *env, jobject obj,
@@ -31403,13 +31403,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameteriSGIX ( GLuint , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -31436,13 +31436,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterivSGIX ( GLuint , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexMaterialEXT (
JNIEnv *env, jobject obj,
@@ -31458,13 +31458,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexFuncEXT (
JNIEnv *env, jobject obj,
@@ -31480,13 +31480,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexFuncEXT ( GLenum , GLclampf ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCullParameterdvEXT (
JNIEnv *env, jobject obj,
@@ -31512,13 +31512,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterdvEXT ( GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCullParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -31544,13 +31544,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterfvEXT ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentColorMaterialSGIX (
JNIEnv *env, jobject obj,
@@ -31566,13 +31566,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentColorMaterialSGIX ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightfSGIX (
JNIEnv *env, jobject obj,
@@ -31590,13 +31590,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightfvSGIX (
JNIEnv *env, jobject obj,
@@ -31623,13 +31623,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightiSGIX (
JNIEnv *env, jobject obj,
@@ -31647,13 +31647,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightivSGIX (
JNIEnv *env, jobject obj,
@@ -31680,13 +31680,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModelfSGIX (
JNIEnv *env, jobject obj,
@@ -31702,13 +31702,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModelfvSGIX (
JNIEnv *env, jobject obj,
@@ -31733,13 +31733,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModeliSGIX (
JNIEnv *env, jobject obj,
@@ -31755,13 +31755,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModeliSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModelivSGIX (
JNIEnv *env, jobject obj,
@@ -31786,13 +31786,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialfSGIX (
JNIEnv *env, jobject obj,
@@ -31810,13 +31810,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialfvSGIX (
JNIEnv *env, jobject obj,
@@ -31843,13 +31843,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialiSGIX (
JNIEnv *env, jobject obj,
@@ -31867,13 +31867,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialivSGIX (
JNIEnv *env, jobject obj,
@@ -31900,13 +31900,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentLightfvSGIX (
JNIEnv *env, jobject obj,
@@ -31934,13 +31934,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentLightivSGIX (
JNIEnv *env, jobject obj,
@@ -31968,13 +31968,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentMaterialfvSGIX (
JNIEnv *env, jobject obj,
@@ -32002,13 +32002,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentMaterialivSGIX (
JNIEnv *env, jobject obj,
@@ -32036,13 +32036,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightEnviSGIX (
JNIEnv *env, jobject obj,
@@ -32058,13 +32058,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightEnviSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawRangeElementsEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -32289,13 +32289,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg5, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElementsEXT ( GLenum , GLuint , GLuint , GLsizei , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glApplyTextureEXT (
JNIEnv *env, jobject obj,
@@ -32309,13 +32309,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glApplyTextureEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureLightEXT (
JNIEnv *env, jobject obj,
@@ -32329,13 +32329,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureLightEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureMaterialEXT (
JNIEnv *env, jobject obj,
@@ -32351,13 +32351,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAsyncMarkerSGIX (
JNIEnv *env, jobject obj,
@@ -32371,13 +32371,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glFinishAsyncSGIX (
JNIEnv *env, jobject obj,
@@ -32404,13 +32404,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glFinishAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glPollAsyncSGIX (
JNIEnv *env, jobject obj,
@@ -32437,13 +32437,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenAsyncMarkersSGIX (
JNIEnv *env, jobject obj,
@@ -32460,13 +32460,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenAsyncMarkersSGIX ( GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteAsyncMarkersSGIX (
JNIEnv *env, jobject obj,
@@ -32482,13 +32482,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteAsyncMarkersSGIX ( GLuint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsAsyncMarkerSGIX (
JNIEnv *env, jobject obj,
@@ -32505,13 +32505,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -32694,13 +32694,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointervINTEL__I_3_3B (
JNIEnv *env, jobject obj,
@@ -32869,13 +32869,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointervINTEL ( GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -33058,13 +33058,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -33247,13 +33247,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameteriEXT (
JNIEnv *env, jobject obj,
@@ -33271,13 +33271,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameterfEXT (
JNIEnv *env, jobject obj,
@@ -33295,13 +33295,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameterivEXT (
JNIEnv *env, jobject obj,
@@ -33328,13 +33328,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -33361,13 +33361,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3bEXT (
JNIEnv *env, jobject obj,
@@ -33385,13 +33385,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3bvEXT (
JNIEnv *env, jobject obj,
@@ -33414,13 +33414,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3dEXT (
JNIEnv *env, jobject obj,
@@ -33438,13 +33438,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3dvEXT (
JNIEnv *env, jobject obj,
@@ -33467,13 +33467,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3fEXT (
JNIEnv *env, jobject obj,
@@ -33491,13 +33491,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3fvEXT (
JNIEnv *env, jobject obj,
@@ -33520,13 +33520,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3iEXT (
JNIEnv *env, jobject obj,
@@ -33544,13 +33544,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3ivEXT (
JNIEnv *env, jobject obj,
@@ -33573,13 +33573,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3sEXT (
JNIEnv *env, jobject obj,
@@ -33597,13 +33597,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3svEXT (
JNIEnv *env, jobject obj,
@@ -33626,13 +33626,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3ubEXT (
JNIEnv *env, jobject obj,
@@ -33650,13 +33650,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubEXT ( GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3ubvEXT (
JNIEnv *env, jobject obj,
@@ -33679,13 +33679,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubvEXT ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3uiEXT (
JNIEnv *env, jobject obj,
@@ -33703,13 +33703,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uiEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3uivEXT (
JNIEnv *env, jobject obj,
@@ -33732,13 +33732,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uivEXT ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3usEXT (
JNIEnv *env, jobject obj,
@@ -33756,13 +33756,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usEXT ( GLushort , GLushort , GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3usvEXT (
JNIEnv *env, jobject obj,
@@ -33785,13 +33785,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usvEXT ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColorPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -33988,13 +33988,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerEXT ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureNormalEXT (
JNIEnv *env, jobject obj,
@@ -34008,13 +34008,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureNormalEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiDrawArraysEXT (
JNIEnv *env, jobject obj,
@@ -34054,13 +34054,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawArraysEXT ( GLenum , GLint * , GLsizei * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiDrawElementsEXT__I_3II_3_3BI (
JNIEnv *env, jobject obj,
@@ -34334,13 +34334,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawElementsEXT ( GLenum , const GLsizei * , GLenum , const GLvoid * * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordfEXT (
JNIEnv *env, jobject obj,
@@ -34354,13 +34354,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordfvEXT (
JNIEnv *env, jobject obj,
@@ -34383,13 +34383,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoorddEXT (
JNIEnv *env, jobject obj,
@@ -34403,13 +34403,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddEXT ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoorddvEXT (
JNIEnv *env, jobject obj,
@@ -34432,13 +34432,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -34621,13 +34621,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3bEXT (
JNIEnv *env, jobject obj,
@@ -34645,13 +34645,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3bvEXT (
JNIEnv *env, jobject obj,
@@ -34674,13 +34674,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3dEXT (
JNIEnv *env, jobject obj,
@@ -34698,13 +34698,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3dvEXT (
JNIEnv *env, jobject obj,
@@ -34727,13 +34727,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3fEXT (
JNIEnv *env, jobject obj,
@@ -34751,13 +34751,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3fvEXT (
JNIEnv *env, jobject obj,
@@ -34780,13 +34780,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3iEXT (
JNIEnv *env, jobject obj,
@@ -34804,13 +34804,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3ivEXT (
JNIEnv *env, jobject obj,
@@ -34833,13 +34833,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3sEXT (
JNIEnv *env, jobject obj,
@@ -34857,13 +34857,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3svEXT (
JNIEnv *env, jobject obj,
@@ -34886,13 +34886,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3bEXT (
JNIEnv *env, jobject obj,
@@ -34910,13 +34910,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3bvEXT (
JNIEnv *env, jobject obj,
@@ -34939,13 +34939,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3dEXT (
JNIEnv *env, jobject obj,
@@ -34963,13 +34963,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3dvEXT (
JNIEnv *env, jobject obj,
@@ -34992,13 +34992,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3fEXT (
JNIEnv *env, jobject obj,
@@ -35016,13 +35016,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3fvEXT (
JNIEnv *env, jobject obj,
@@ -35045,13 +35045,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3iEXT (
JNIEnv *env, jobject obj,
@@ -35069,13 +35069,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3ivEXT (
JNIEnv *env, jobject obj,
@@ -35098,13 +35098,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3sEXT (
JNIEnv *env, jobject obj,
@@ -35122,13 +35122,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3svEXT (
JNIEnv *env, jobject obj,
@@ -35151,13 +35151,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangentPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -35340,13 +35340,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangentPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormalPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -35529,13 +35529,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormalPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinishTextureSUNX (
JNIEnv *env, jobject obj)
@@ -35547,13 +35547,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishTextureSUNX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorbSUN (
JNIEnv *env, jobject obj,
@@ -35567,13 +35567,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorbSUN ( GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorsSUN (
JNIEnv *env, jobject obj,
@@ -35587,13 +35587,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorsSUN ( GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactoriSUN (
JNIEnv *env, jobject obj,
@@ -35607,13 +35607,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoriSUN ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorfSUN (
JNIEnv *env, jobject obj,
@@ -35627,13 +35627,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorfSUN ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactordSUN (
JNIEnv *env, jobject obj,
@@ -35647,13 +35647,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactordSUN ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorubSUN (
JNIEnv *env, jobject obj,
@@ -35667,13 +35667,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorusSUN (
JNIEnv *env, jobject obj,
@@ -35687,13 +35687,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactoruiSUN (
JNIEnv *env, jobject obj,
@@ -35707,13 +35707,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoruiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiSUN (
JNIEnv *env, jobject obj,
@@ -35727,13 +35727,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeusSUN (
JNIEnv *env, jobject obj,
@@ -35747,13 +35747,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeubSUN (
JNIEnv *env, jobject obj,
@@ -35767,13 +35767,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuivSUN (
JNIEnv *env, jobject obj,
@@ -35796,13 +35796,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuivSUN ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeusvSUN (
JNIEnv *env, jobject obj,
@@ -35825,13 +35825,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusvSUN ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeubvSUN (
JNIEnv *env, jobject obj,
@@ -35854,13 +35854,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubvSUN ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodePointerSUN__II_3_3B (
JNIEnv *env, jobject obj,
@@ -36043,13 +36043,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodePointerSUN ( GLenum , GLsizei , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex2fSUN (
JNIEnv *env, jobject obj,
@@ -36073,13 +36073,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex2fvSUN (
JNIEnv *env, jobject obj,
@@ -36113,13 +36113,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36145,13 +36145,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36185,13 +36185,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36215,13 +36215,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36255,13 +36255,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36285,13 +36285,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36325,13 +36325,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36363,13 +36363,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36414,13 +36414,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36442,13 +36442,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36482,13 +36482,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fVertex4fSUN (
JNIEnv *env, jobject obj,
@@ -36516,13 +36516,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fVertex4fvSUN (
JNIEnv *env, jobject obj,
@@ -36556,13 +36556,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36592,13 +36592,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fSUN ( GLfloat , GLfloat , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36643,13 +36643,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fvSUN ( const GLfloat * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36677,13 +36677,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36728,13 +36728,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36762,13 +36762,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36813,13 +36813,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36855,13 +36855,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36917,13 +36917,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fColor4fNormal3fVertex4fSUN (
JNIEnv *env, jobject obj,
@@ -36965,13 +36965,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fColor4fNormal3fVertex4fvSUN (
JNIEnv *env, jobject obj,
@@ -37027,13 +37027,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37053,13 +37053,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37093,13 +37093,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fvSUN ( const GLenum * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37127,13 +37127,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fSUN ( GLenum , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37178,13 +37178,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fvSUN ( const GLenum * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37210,13 +37210,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37261,13 +37261,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37293,13 +37293,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37344,13 +37344,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37384,13 +37384,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37446,13 +37446,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37476,13 +37476,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37527,13 +37527,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37563,13 +37563,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37625,13 +37625,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37669,13 +37669,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37742,13 +37742,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendFuncSeparateEXT (
JNIEnv *env, jobject obj,
@@ -37768,13 +37768,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateEXT ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendFuncSeparateINGR (
JNIEnv *env, jobject obj,
@@ -37794,13 +37794,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateINGR ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexWeightfEXT (
JNIEnv *env, jobject obj,
@@ -37814,13 +37814,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexWeightfvEXT (
JNIEnv *env, jobject obj,
@@ -37843,13 +37843,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexWeightPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -38046,13 +38046,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightPointerEXT ( GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFlushVertexArrayRangeNV (
JNIEnv *env, jobject obj)
@@ -38064,13 +38064,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushVertexArrayRangeNV ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexArrayRangeNV__I_3B (
JNIEnv *env, jobject obj,
@@ -38239,13 +38239,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexArrayRangeNV ( GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameterfvNV (
JNIEnv *env, jobject obj,
@@ -38270,13 +38270,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfvNV ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameterfNV (
JNIEnv *env, jobject obj,
@@ -38292,13 +38292,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfNV ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameterivNV (
JNIEnv *env, jobject obj,
@@ -38323,13 +38323,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterivNV ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameteriNV (
JNIEnv *env, jobject obj,
@@ -38345,13 +38345,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameteriNV ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerInputNV (
JNIEnv *env, jobject obj,
@@ -38375,13 +38375,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerInputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerOutputNV (
JNIEnv *env, jobject obj,
@@ -38413,13 +38413,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerOutputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinalCombinerInputNV (
JNIEnv *env, jobject obj,
@@ -38439,13 +38439,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinalCombinerInputNV ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerInputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -38477,13 +38477,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterfvNV ( GLenum , GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerInputParameterivNV (
JNIEnv *env, jobject obj,
@@ -38515,13 +38515,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterivNV ( GLenum , GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerOutputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -38551,13 +38551,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterfvNV ( GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerOutputParameterivNV (
JNIEnv *env, jobject obj,
@@ -38587,13 +38587,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterivNV ( GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFinalCombinerInputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -38621,13 +38621,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFinalCombinerInputParameterivNV (
JNIEnv *env, jobject obj,
@@ -38655,13 +38655,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiModeDrawArraysIBM (
JNIEnv *env, jobject obj,
@@ -38701,13 +38701,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawArraysIBM ( GLenum , const GLint * , const GLsizei * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiModeDrawElementsIBM___3I_3II_3_3BII (
JNIEnv *env, jobject obj,
@@ -39058,13 +39058,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawElementsIBM ( const GLenum * , const GLsizei * , GLenum , const GLvoid * * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -39275,13 +39275,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColorPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -39492,13 +39492,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagPointerListIBM (
JNIEnv *env, jobject obj,
@@ -39525,13 +39525,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerListIBM ( GLint , const GLboolean * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -39728,13 +39728,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -39931,13 +39931,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -40134,13 +40134,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -40351,13 +40351,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -40568,13 +40568,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTbufferMask3DFX (
JNIEnv *env, jobject obj,
@@ -40588,13 +40588,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTbufferMask3DFX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleMaskEXT (
JNIEnv *env, jobject obj,
@@ -40610,13 +40610,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskEXT ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSamplePatternEXT (
JNIEnv *env, jobject obj,
@@ -40630,13 +40630,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureColorMaskSGIS (
JNIEnv *env, jobject obj,
@@ -40656,13 +40656,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureColorMaskSGIS ( GLboolean , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIglooInterfaceSGIX__I_3B (
JNIEnv *env, jobject obj,
@@ -40831,13 +40831,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIglooInterfaceSGIX ( GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenFencesNV (
JNIEnv *env, jobject obj,
@@ -40863,13 +40863,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenFencesNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteFencesNV (
JNIEnv *env, jobject obj,
@@ -40894,13 +40894,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFencesNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetFenceNV (
JNIEnv *env, jobject obj,
@@ -40916,13 +40916,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFenceNV ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glTestFenceNV (
JNIEnv *env, jobject obj,
@@ -40939,13 +40939,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glTestFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinishFenceNV (
JNIEnv *env, jobject obj,
@@ -40959,13 +40959,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsFenceNV (
JNIEnv *env, jobject obj,
@@ -40982,13 +40982,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFenceivNV (
JNIEnv *env, jobject obj,
@@ -41016,13 +41016,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFenceivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapControlPointsNV__IIIIIIIZ_3B (
JNIEnv *env, jobject obj,
@@ -41289,13 +41289,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLint , GLint , GLboolean , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapParameterivNV (
JNIEnv *env, jobject obj,
@@ -41322,13 +41322,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterivNV ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41355,13 +41355,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapControlPointsNV__IIIIIZ_3B (
JNIEnv *env, jobject obj,
@@ -41607,13 +41607,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, (isCopiedArray6 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLboolean , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapParameterivNV (
JNIEnv *env, jobject obj,
@@ -41641,13 +41641,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41675,13 +41675,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapAttribParameterivNV (
JNIEnv *env, jobject obj,
@@ -41711,13 +41711,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapAttribParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41747,13 +41747,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalMapsNV (
JNIEnv *env, jobject obj,
@@ -41769,13 +41769,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMapsNV ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerStageParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41802,13 +41802,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerStageParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerStageParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41836,13 +41836,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerStageParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindProgramNV (
JNIEnv *env, jobject obj,
@@ -41858,13 +41858,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindProgramNV ( GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteProgramsNV (
JNIEnv *env, jobject obj,
@@ -41889,13 +41889,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glExecuteProgramNV (
JNIEnv *env, jobject obj,
@@ -41922,13 +41922,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glExecuteProgramNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenProgramsNV (
JNIEnv *env, jobject obj,
@@ -41954,13 +41954,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenProgramsNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glAreProgramsResidentNV (
JNIEnv *env, jobject obj,
@@ -42000,13 +42000,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreProgramsResidentNV ( GLsizei , const GLuint * , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRequestResidentProgramsNV (
JNIEnv *env, jobject obj,
@@ -42031,13 +42031,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRequestResidentProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramParameterfvNV (
JNIEnv *env, jobject obj,
@@ -42067,13 +42067,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramParameterdvNV (
JNIEnv *env, jobject obj,
@@ -42103,13 +42103,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterdvNV ( GLenum , GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramivNV (
JNIEnv *env, jobject obj,
@@ -42137,13 +42137,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramStringNV (
JNIEnv *env, jobject obj,
@@ -42171,13 +42171,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramStringNV ( GLuint , GLenum , GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTrackMatrixivNV (
JNIEnv *env, jobject obj,
@@ -42207,13 +42207,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTrackMatrixivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribdvNV (
JNIEnv *env, jobject obj,
@@ -42241,13 +42241,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribdvNV ( GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribfvNV (
JNIEnv *env, jobject obj,
@@ -42275,13 +42275,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribfvNV ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribivNV (
JNIEnv *env, jobject obj,
@@ -42309,13 +42309,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribPointervNV__II_3_3B (
JNIEnv *env, jobject obj,
@@ -42505,13 +42505,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribPointervNV ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsProgramNV (
JNIEnv *env, jobject obj,
@@ -42528,13 +42528,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsProgramNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadProgramNV (
JNIEnv *env, jobject obj,
@@ -42563,13 +42563,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadProgramNV ( GLenum , GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4fNV (
JNIEnv *env, jobject obj,
@@ -42593,13 +42593,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fNV ( GLenum , GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4dNV (
JNIEnv *env, jobject obj,
@@ -42623,13 +42623,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dNV ( GLenum , GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4dvNV (
JNIEnv *env, jobject obj,
@@ -42656,13 +42656,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dvNV ( GLenum , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4fvNV (
JNIEnv *env, jobject obj,
@@ -42689,13 +42689,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fvNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameters4dvNV (
JNIEnv *env, jobject obj,
@@ -42724,13 +42724,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4dvNV ( GLenum , GLuint , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameters4fvNV (
JNIEnv *env, jobject obj,
@@ -42759,13 +42759,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4fvNV ( GLenum , GLuint , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTrackMatrixNV (
JNIEnv *env, jobject obj,
@@ -42785,13 +42785,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTrackMatrixNV ( GLenum , GLuint , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribPointerNV__IIII_3B (
JNIEnv *env, jobject obj,
@@ -43002,13 +43002,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribPointerNV ( GLuint , GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1sNV (
JNIEnv *env, jobject obj,
@@ -43024,13 +43024,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1sNV ( GLuint , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1fNV (
JNIEnv *env, jobject obj,
@@ -43046,13 +43046,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fNV ( GLuint , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1dNV (
JNIEnv *env, jobject obj,
@@ -43068,13 +43068,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dNV ( GLuint , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2sNV (
JNIEnv *env, jobject obj,
@@ -43092,13 +43092,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2sNV ( GLuint , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2fNV (
JNIEnv *env, jobject obj,
@@ -43116,13 +43116,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fNV ( GLuint , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2dNV (
JNIEnv *env, jobject obj,
@@ -43140,13 +43140,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dNV ( GLuint , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3sNV (
JNIEnv *env, jobject obj,
@@ -43166,13 +43166,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3sNV ( GLuint , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3fNV (
JNIEnv *env, jobject obj,
@@ -43192,13 +43192,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fNV ( GLuint , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3dNV (
JNIEnv *env, jobject obj,
@@ -43218,13 +43218,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dNV ( GLuint , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4sNV (
JNIEnv *env, jobject obj,
@@ -43246,13 +43246,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4sNV ( GLuint , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4fNV (
JNIEnv *env, jobject obj,
@@ -43274,13 +43274,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fNV ( GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4dNV (
JNIEnv *env, jobject obj,
@@ -43302,13 +43302,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dNV ( GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4ubNV (
JNIEnv *env, jobject obj,
@@ -43330,13 +43330,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubNV ( GLuint , GLubyte , GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1svNV (
JNIEnv *env, jobject obj,
@@ -43361,13 +43361,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1fvNV (
JNIEnv *env, jobject obj,
@@ -43392,13 +43392,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1dvNV (
JNIEnv *env, jobject obj,
@@ -43423,13 +43423,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2svNV (
JNIEnv *env, jobject obj,
@@ -43454,13 +43454,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2fvNV (
JNIEnv *env, jobject obj,
@@ -43485,13 +43485,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2dvNV (
JNIEnv *env, jobject obj,
@@ -43516,13 +43516,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3svNV (
JNIEnv *env, jobject obj,
@@ -43547,13 +43547,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3fvNV (
JNIEnv *env, jobject obj,
@@ -43578,13 +43578,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3dvNV (
JNIEnv *env, jobject obj,
@@ -43609,13 +43609,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4svNV (
JNIEnv *env, jobject obj,
@@ -43640,13 +43640,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4fvNV (
JNIEnv *env, jobject obj,
@@ -43671,13 +43671,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4dvNV (
JNIEnv *env, jobject obj,
@@ -43702,13 +43702,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4ubvNV (
JNIEnv *env, jobject obj,
@@ -43733,13 +43733,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubvNV ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs1svNV (
JNIEnv *env, jobject obj,
@@ -43766,13 +43766,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs1fvNV (
JNIEnv *env, jobject obj,
@@ -43799,13 +43799,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs1dvNV (
JNIEnv *env, jobject obj,
@@ -43832,13 +43832,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs2svNV (
JNIEnv *env, jobject obj,
@@ -43865,13 +43865,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs2fvNV (
JNIEnv *env, jobject obj,
@@ -43898,13 +43898,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs2dvNV (
JNIEnv *env, jobject obj,
@@ -43931,13 +43931,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs3svNV (
JNIEnv *env, jobject obj,
@@ -43964,13 +43964,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs3fvNV (
JNIEnv *env, jobject obj,
@@ -43997,13 +43997,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs3dvNV (
JNIEnv *env, jobject obj,
@@ -44030,13 +44030,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4svNV (
JNIEnv *env, jobject obj,
@@ -44063,13 +44063,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4fvNV (
JNIEnv *env, jobject obj,
@@ -44096,13 +44096,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4dvNV (
JNIEnv *env, jobject obj,
@@ -44129,13 +44129,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4ubvNV (
JNIEnv *env, jobject obj,
@@ -44162,13 +44162,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4ubvNV ( GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexBumpParameterivATI (
JNIEnv *env, jobject obj,
@@ -44193,13 +44193,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterivATI ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexBumpParameterfvATI (
JNIEnv *env, jobject obj,
@@ -44224,13 +44224,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterfvATI ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexBumpParameterivATI (
JNIEnv *env, jobject obj,
@@ -44256,13 +44256,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterivATI ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexBumpParameterfvATI (
JNIEnv *env, jobject obj,
@@ -44288,13 +44288,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterfvATI ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenFragmentShadersATI (
JNIEnv *env, jobject obj,
@@ -44311,13 +44311,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenFragmentShadersATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindFragmentShaderATI (
JNIEnv *env, jobject obj,
@@ -44331,13 +44331,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteFragmentShaderATI (
JNIEnv *env, jobject obj,
@@ -44351,13 +44351,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBeginFragmentShaderATI (
JNIEnv *env, jobject obj)
@@ -44369,13 +44369,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEndFragmentShaderATI (
JNIEnv *env, jobject obj)
@@ -44387,13 +44387,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPassTexCoordATI (
JNIEnv *env, jobject obj,
@@ -44411,13 +44411,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPassTexCoordATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleMapATI (
JNIEnv *env, jobject obj,
@@ -44435,13 +44435,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMapATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorFragmentOp1ATI (
JNIEnv *env, jobject obj,
@@ -44467,13 +44467,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorFragmentOp2ATI (
JNIEnv *env, jobject obj,
@@ -44505,13 +44505,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorFragmentOp3ATI (
JNIEnv *env, jobject obj,
@@ -44549,13 +44549,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFragmentOp1ATI (
JNIEnv *env, jobject obj,
@@ -44579,13 +44579,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFragmentOp2ATI (
JNIEnv *env, jobject obj,
@@ -44615,13 +44615,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFragmentOp3ATI (
JNIEnv *env, jobject obj,
@@ -44657,13 +44657,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetFragmentShaderConstantATI (
JNIEnv *env, jobject obj,
@@ -44688,13 +44688,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFragmentShaderConstantATI ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPNTrianglesiATI (
JNIEnv *env, jobject obj,
@@ -44710,13 +44710,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesiATI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPNTrianglesfATI (
JNIEnv *env, jobject obj,
@@ -44732,13 +44732,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesfATI ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glNewObjectBufferATI__I_3BI (
JNIEnv *env, jobject obj,
@@ -44942,13 +44942,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glNewObjectBufferATI ( GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsObjectBufferATI (
JNIEnv *env, jobject obj,
@@ -44965,13 +44965,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glUpdateObjectBufferATI__III_3BI (
JNIEnv *env, jobject obj,
@@ -45182,13 +45182,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glUpdateObjectBufferATI ( GLuint , GLuint , GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetObjectBufferfvATI (
JNIEnv *env, jobject obj,
@@ -45216,13 +45216,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetObjectBufferivATI (
JNIEnv *env, jobject obj,
@@ -45250,13 +45250,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteObjectBufferATI (
JNIEnv *env, jobject obj,
@@ -45270,13 +45270,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glArrayObjectATI (
JNIEnv *env, jobject obj,
@@ -45300,13 +45300,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayObjectATI ( GLenum , GLint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetArrayObjectfvATI (
JNIEnv *env, jobject obj,
@@ -45334,13 +45334,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectfvATI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetArrayObjectivATI (
JNIEnv *env, jobject obj,
@@ -45368,13 +45368,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectivATI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantArrayObjectATI (
JNIEnv *env, jobject obj,
@@ -45396,13 +45396,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantArrayObjectATI ( GLuint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantArrayObjectfvATI (
JNIEnv *env, jobject obj,
@@ -45430,13 +45430,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantArrayObjectivATI (
JNIEnv *env, jobject obj,
@@ -45464,13 +45464,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBeginVertexShaderEXT (
JNIEnv *env, jobject obj)
@@ -45482,13 +45482,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEndVertexShaderEXT (
JNIEnv *env, jobject obj)
@@ -45500,13 +45500,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindVertexShaderEXT (
JNIEnv *env, jobject obj,
@@ -45520,13 +45520,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenVertexShadersEXT (
JNIEnv *env, jobject obj,
@@ -45543,13 +45543,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenVertexShadersEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteVertexShaderEXT (
JNIEnv *env, jobject obj,
@@ -45563,13 +45563,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShaderOp1EXT (
JNIEnv *env, jobject obj,
@@ -45587,13 +45587,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp1EXT ( GLenum , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShaderOp2EXT (
JNIEnv *env, jobject obj,
@@ -45613,13 +45613,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp2EXT ( GLenum , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShaderOp3EXT (
JNIEnv *env, jobject obj,
@@ -45641,13 +45641,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp3EXT ( GLenum , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSwizzleEXT (
JNIEnv *env, jobject obj,
@@ -45671,13 +45671,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSwizzleEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWriteMaskEXT (
JNIEnv *env, jobject obj,
@@ -45701,13 +45701,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWriteMaskEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInsertComponentEXT (
JNIEnv *env, jobject obj,
@@ -45725,13 +45725,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInsertComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glExtractComponentEXT (
JNIEnv *env, jobject obj,
@@ -45749,13 +45749,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glExtractComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenSymbolsEXT (
JNIEnv *env, jobject obj,
@@ -45778,13 +45778,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenSymbolsEXT ( GLenum , GLenum , GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetInvariantEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -45967,13 +45967,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetInvariantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetLocalConstantEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -46156,13 +46156,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetLocalConstantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantbvEXT (
JNIEnv *env, jobject obj,
@@ -46187,13 +46187,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantbvEXT ( GLuint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantsvEXT (
JNIEnv *env, jobject obj,
@@ -46218,13 +46218,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantsvEXT ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantivEXT (
JNIEnv *env, jobject obj,
@@ -46249,13 +46249,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantivEXT ( GLuint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantfvEXT (
JNIEnv *env, jobject obj,
@@ -46280,13 +46280,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantfvEXT ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantdvEXT (
JNIEnv *env, jobject obj,
@@ -46311,13 +46311,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantdvEXT ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantubvEXT (
JNIEnv *env, jobject obj,
@@ -46342,13 +46342,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantubvEXT ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantusvEXT (
JNIEnv *env, jobject obj,
@@ -46373,13 +46373,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantusvEXT ( GLuint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantuivEXT (
JNIEnv *env, jobject obj,
@@ -46404,13 +46404,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantuivEXT ( GLuint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -46607,13 +46607,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantPointerEXT ( GLuint , GLenum , GLuint , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnableVariantClientStateEXT (
JNIEnv *env, jobject obj,
@@ -46627,13 +46627,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDisableVariantClientStateEXT (
JNIEnv *env, jobject obj,
@@ -46647,13 +46647,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindLightParameterEXT (
JNIEnv *env, jobject obj,
@@ -46672,13 +46672,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindLightParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindMaterialParameterEXT (
JNIEnv *env, jobject obj,
@@ -46697,13 +46697,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindMaterialParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindTexGenParameterEXT (
JNIEnv *env, jobject obj,
@@ -46724,13 +46724,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTexGenParameterEXT ( GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindTextureUnitParameterEXT (
JNIEnv *env, jobject obj,
@@ -46749,13 +46749,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTextureUnitParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindParameterEXT (
JNIEnv *env, jobject obj,
@@ -46772,13 +46772,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindParameterEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsVariantEnabledEXT (
JNIEnv *env, jobject obj,
@@ -46797,13 +46797,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsVariantEnabledEXT ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -46831,13 +46831,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -46865,13 +46865,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -46899,13 +46899,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantPointervEXT__II_3_3B (
JNIEnv *env, jobject obj,
@@ -47095,13 +47095,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantPointervEXT ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetInvariantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -47129,13 +47129,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetInvariantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -47163,13 +47163,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetInvariantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -47197,13 +47197,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLocalConstantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -47231,13 +47231,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLocalConstantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -47265,13 +47265,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLocalConstantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -47299,13 +47299,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1s (
JNIEnv *env, jobject obj,
@@ -47321,13 +47321,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1s ( GLenum , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1sv (
JNIEnv *env, jobject obj,
@@ -47352,13 +47352,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1i (
JNIEnv *env, jobject obj,
@@ -47374,13 +47374,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1i ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1iv (
JNIEnv *env, jobject obj,
@@ -47405,13 +47405,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1f (
JNIEnv *env, jobject obj,
@@ -47427,13 +47427,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1f ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1fv (
JNIEnv *env, jobject obj,
@@ -47458,13 +47458,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1d (
JNIEnv *env, jobject obj,
@@ -47480,13 +47480,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1d ( GLenum , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1dv (
JNIEnv *env, jobject obj,
@@ -47511,13 +47511,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2s (
JNIEnv *env, jobject obj,
@@ -47535,13 +47535,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2s ( GLenum , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2sv (
JNIEnv *env, jobject obj,
@@ -47566,13 +47566,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2i (
JNIEnv *env, jobject obj,
@@ -47590,13 +47590,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2i ( GLenum , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2iv (
JNIEnv *env, jobject obj,
@@ -47621,13 +47621,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2f (
JNIEnv *env, jobject obj,
@@ -47645,13 +47645,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2f ( GLenum , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2fv (
JNIEnv *env, jobject obj,
@@ -47676,13 +47676,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2d (
JNIEnv *env, jobject obj,
@@ -47700,13 +47700,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2d ( GLenum , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2dv (
JNIEnv *env, jobject obj,
@@ -47731,13 +47731,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3s (
JNIEnv *env, jobject obj,
@@ -47757,13 +47757,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3sv (
JNIEnv *env, jobject obj,
@@ -47788,13 +47788,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3i (
JNIEnv *env, jobject obj,
@@ -47814,13 +47814,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3iv (
JNIEnv *env, jobject obj,
@@ -47845,13 +47845,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3f (
JNIEnv *env, jobject obj,
@@ -47871,13 +47871,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3fv (
JNIEnv *env, jobject obj,
@@ -47902,13 +47902,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3d (
JNIEnv *env, jobject obj,
@@ -47928,13 +47928,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3dv (
JNIEnv *env, jobject obj,
@@ -47959,13 +47959,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4s (
JNIEnv *env, jobject obj,
@@ -47987,13 +47987,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4s ( GLenum , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4sv (
JNIEnv *env, jobject obj,
@@ -48018,13 +48018,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4i (
JNIEnv *env, jobject obj,
@@ -48046,13 +48046,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4i ( GLenum , GLint , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4iv (
JNIEnv *env, jobject obj,
@@ -48077,13 +48077,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4f (
JNIEnv *env, jobject obj,
@@ -48105,13 +48105,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4f ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4fv (
JNIEnv *env, jobject obj,
@@ -48136,13 +48136,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4d (
JNIEnv *env, jobject obj,
@@ -48164,13 +48164,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4d ( GLenum , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4dv (
JNIEnv *env, jobject obj,
@@ -48195,13 +48195,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3b (
JNIEnv *env, jobject obj,
@@ -48221,13 +48221,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3b ( GLenum , GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3bv (
JNIEnv *env, jobject obj,
@@ -48252,13 +48252,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3bv ( GLenum , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3s (
JNIEnv *env, jobject obj,
@@ -48278,13 +48278,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3sv (
JNIEnv *env, jobject obj,
@@ -48309,13 +48309,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3i (
JNIEnv *env, jobject obj,
@@ -48335,13 +48335,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3iv (
JNIEnv *env, jobject obj,
@@ -48366,13 +48366,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3f (
JNIEnv *env, jobject obj,
@@ -48392,13 +48392,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3fv (
JNIEnv *env, jobject obj,
@@ -48423,13 +48423,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3d (
JNIEnv *env, jobject obj,
@@ -48449,13 +48449,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3dv (
JNIEnv *env, jobject obj,
@@ -48480,13 +48480,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClientActiveVertexStream (
JNIEnv *env, jobject obj,
@@ -48500,13 +48500,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveVertexStream ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexBlendEnvi (
JNIEnv *env, jobject obj,
@@ -48522,13 +48522,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvi ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexBlendEnvf (
JNIEnv *env, jobject obj,
@@ -48544,5 +48544,5 @@
);
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/C2J/gl-proto-dynauto-jni14.c b/C2J/gl-proto-dynauto-jni14.c
index f385258..91732fa 100644
--- a/C2J/gl-proto-dynauto-jni14.c
+++ b/C2J/gl-proto-dynauto-jni14.c
@@ -4,13 +4,13 @@
* Reading from file: gl-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLFunc14JauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvf ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClearIndex (
JNIEnv *env, jobject obj,
@@ -24,13 +24,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearIndex ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClearColor (
JNIEnv *env, jobject obj,
@@ -50,13 +50,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClear (
JNIEnv *env, jobject obj,
@@ -70,13 +70,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClear ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexMask (
JNIEnv *env, jobject obj,
@@ -90,13 +90,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorMask (
JNIEnv *env, jobject obj,
@@ -116,13 +116,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMask ( GLboolean red , GLboolean green , GLboolean blue , GLboolean alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glAlphaFunc (
JNIEnv *env, jobject obj,
@@ -138,13 +138,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFunc ( GLenum func , GLclampf ref ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBlendFunc (
JNIEnv *env, jobject obj,
@@ -160,13 +160,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFunc ( GLenum sfactor , GLenum dfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLogicOp (
JNIEnv *env, jobject obj,
@@ -180,13 +180,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLogicOp ( GLenum opcode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCullFace (
JNIEnv *env, jobject obj,
@@ -200,13 +200,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFrontFace (
JNIEnv *env, jobject obj,
@@ -220,13 +220,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrontFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPointSize (
JNIEnv *env, jobject obj,
@@ -240,13 +240,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointSize ( GLfloat size ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLineWidth (
JNIEnv *env, jobject obj,
@@ -260,13 +260,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLineWidth ( GLfloat width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLineStipple (
JNIEnv *env, jobject obj,
@@ -282,13 +282,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLineStipple ( GLint factor , GLushort pattern ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPolygonMode (
JNIEnv *env, jobject obj,
@@ -304,13 +304,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonMode ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPolygonOffset (
JNIEnv *env, jobject obj,
@@ -326,13 +326,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffset ( GLfloat factor , GLfloat units ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPolygonStipple (
JNIEnv *env, jobject obj,
@@ -355,13 +355,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, mask, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonStipple ( const GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetPolygonStipple (
JNIEnv *env, jobject obj,
@@ -385,13 +385,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, mask, ptr0, (isCopiedArray0 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPolygonStipple ( GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEdgeFlag (
JNIEnv *env, jobject obj,
@@ -405,13 +405,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlag ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEdgeFlagv (
JNIEnv *env, jobject obj,
@@ -434,13 +434,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, flag, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagv ( const GLboolean * flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glScissor (
JNIEnv *env, jobject obj,
@@ -460,13 +460,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScissor ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClipPlane (
JNIEnv *env, jobject obj,
@@ -491,13 +491,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, equation, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClipPlane ( GLenum plane , const GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetClipPlane (
JNIEnv *env, jobject obj,
@@ -523,13 +523,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, equation, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetClipPlane ( GLenum plane , GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDrawBuffer (
JNIEnv *env, jobject obj,
@@ -543,13 +543,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReadBuffer (
JNIEnv *env, jobject obj,
@@ -563,13 +563,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEnable (
JNIEnv *env, jobject obj,
@@ -583,13 +583,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDisable (
JNIEnv *env, jobject obj,
@@ -603,13 +603,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glIsEnabled (
JNIEnv *env, jobject obj,
@@ -626,13 +626,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsEnabled ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEnableClientState (
JNIEnv *env, jobject obj,
@@ -646,13 +646,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDisableClientState (
JNIEnv *env, jobject obj,
@@ -666,13 +666,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetBooleanv (
JNIEnv *env, jobject obj,
@@ -698,13 +698,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetBooleanv ( GLenum pname , GLboolean * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetDoublev (
JNIEnv *env, jobject obj,
@@ -730,13 +730,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDoublev ( GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetFloatv (
JNIEnv *env, jobject obj,
@@ -762,13 +762,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFloatv ( GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetIntegerv (
JNIEnv *env, jobject obj,
@@ -794,13 +794,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetIntegerv ( GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPushAttrib (
JNIEnv *env, jobject obj,
@@ -814,13 +814,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPopAttrib (
JNIEnv *env, jobject obj)
@@ -832,13 +832,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPushClientAttrib (
JNIEnv *env, jobject obj,
@@ -852,13 +852,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushClientAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPopClientAttrib (
JNIEnv *env, jobject obj)
@@ -870,13 +870,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopClientAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glRenderMode (
JNIEnv *env, jobject obj,
@@ -893,13 +893,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glRenderMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glGetError (
JNIEnv *env, jobject obj)
@@ -914,13 +914,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLenum glGetError ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFinish (
JNIEnv *env, jobject obj)
@@ -932,13 +932,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinish ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFlush (
JNIEnv *env, jobject obj)
@@ -950,13 +950,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlush ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glHint (
JNIEnv *env, jobject obj,
@@ -972,13 +972,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHint ( GLenum target , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClearDepth (
JNIEnv *env, jobject obj,
@@ -992,13 +992,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearDepth ( GLclampd depth ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDepthFunc (
JNIEnv *env, jobject obj,
@@ -1012,13 +1012,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthFunc ( GLenum func ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDepthMask (
JNIEnv *env, jobject obj,
@@ -1032,13 +1032,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthMask ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDepthRange (
JNIEnv *env, jobject obj,
@@ -1054,13 +1054,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthRange ( GLclampd near_val , GLclampd far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClearAccum (
JNIEnv *env, jobject obj,
@@ -1080,13 +1080,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearAccum ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glAccum (
JNIEnv *env, jobject obj,
@@ -1102,13 +1102,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAccum ( GLenum op , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMatrixMode (
JNIEnv *env, jobject obj,
@@ -1122,13 +1122,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glOrtho (
JNIEnv *env, jobject obj,
@@ -1152,13 +1152,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glOrtho ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFrustum (
JNIEnv *env, jobject obj,
@@ -1182,13 +1182,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrustum ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glViewport (
JNIEnv *env, jobject obj,
@@ -1208,13 +1208,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glViewport ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPushMatrix (
JNIEnv *env, jobject obj)
@@ -1226,13 +1226,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPopMatrix (
JNIEnv *env, jobject obj)
@@ -1244,13 +1244,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadIdentity (
JNIEnv *env, jobject obj)
@@ -1262,13 +1262,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentity ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadMatrixd (
JNIEnv *env, jobject obj,
@@ -1291,13 +1291,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadMatrixf (
JNIEnv *env, jobject obj,
@@ -1320,13 +1320,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultMatrixd (
JNIEnv *env, jobject obj,
@@ -1349,13 +1349,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultMatrixf (
JNIEnv *env, jobject obj,
@@ -1378,13 +1378,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRotated (
JNIEnv *env, jobject obj,
@@ -1404,13 +1404,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRotated ( GLdouble angle , GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRotatef (
JNIEnv *env, jobject obj,
@@ -1430,13 +1430,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRotatef ( GLfloat angle , GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glScaled (
JNIEnv *env, jobject obj,
@@ -1454,13 +1454,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScaled ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glScalef (
JNIEnv *env, jobject obj,
@@ -1478,13 +1478,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScalef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTranslated (
JNIEnv *env, jobject obj,
@@ -1502,13 +1502,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslated ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTranslatef (
JNIEnv *env, jobject obj,
@@ -1526,13 +1526,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslatef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glIsList (
JNIEnv *env, jobject obj,
@@ -1549,13 +1549,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeleteLists (
JNIEnv *env, jobject obj,
@@ -1571,13 +1571,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteLists ( GLuint list , GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glGenLists (
JNIEnv *env, jobject obj,
@@ -1594,13 +1594,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenLists ( GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNewList (
JNIEnv *env, jobject obj,
@@ -1616,13 +1616,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNewList ( GLuint list , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEndList (
JNIEnv *env, jobject obj)
@@ -1634,13 +1634,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndList ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCallList (
JNIEnv *env, jobject obj,
@@ -1654,13 +1654,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCallList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCallLists__II_3B (
JNIEnv *env, jobject obj,
@@ -1870,13 +1870,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCallLists ( GLsizei n , GLenum type , const GLvoid * lists ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glListBase (
JNIEnv *env, jobject obj,
@@ -1890,13 +1890,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListBase ( GLuint base ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBegin (
JNIEnv *env, jobject obj,
@@ -1910,13 +1910,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBegin ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEnd (
JNIEnv *env, jobject obj)
@@ -1928,13 +1928,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnd ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex2d (
JNIEnv *env, jobject obj,
@@ -1950,13 +1950,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex2f (
JNIEnv *env, jobject obj,
@@ -1972,13 +1972,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex2i (
JNIEnv *env, jobject obj,
@@ -1994,13 +1994,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex2s (
JNIEnv *env, jobject obj,
@@ -2016,13 +2016,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex3d (
JNIEnv *env, jobject obj,
@@ -2040,13 +2040,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex3f (
JNIEnv *env, jobject obj,
@@ -2064,13 +2064,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex3i (
JNIEnv *env, jobject obj,
@@ -2088,13 +2088,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex3s (
JNIEnv *env, jobject obj,
@@ -2112,13 +2112,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex4d (
JNIEnv *env, jobject obj,
@@ -2138,13 +2138,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex4f (
JNIEnv *env, jobject obj,
@@ -2164,13 +2164,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex4i (
JNIEnv *env, jobject obj,
@@ -2190,13 +2190,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex4s (
JNIEnv *env, jobject obj,
@@ -2216,13 +2216,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex2dv (
JNIEnv *env, jobject obj,
@@ -2245,13 +2245,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex2fv (
JNIEnv *env, jobject obj,
@@ -2274,13 +2274,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex2iv (
JNIEnv *env, jobject obj,
@@ -2303,13 +2303,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex2sv (
JNIEnv *env, jobject obj,
@@ -2332,13 +2332,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex3dv (
JNIEnv *env, jobject obj,
@@ -2361,13 +2361,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex3fv (
JNIEnv *env, jobject obj,
@@ -2390,13 +2390,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex3iv (
JNIEnv *env, jobject obj,
@@ -2419,13 +2419,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex3sv (
JNIEnv *env, jobject obj,
@@ -2448,13 +2448,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex4dv (
JNIEnv *env, jobject obj,
@@ -2477,13 +2477,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex4fv (
JNIEnv *env, jobject obj,
@@ -2506,13 +2506,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex4iv (
JNIEnv *env, jobject obj,
@@ -2535,13 +2535,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex4sv (
JNIEnv *env, jobject obj,
@@ -2564,13 +2564,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3b (
JNIEnv *env, jobject obj,
@@ -2588,13 +2588,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3b ( GLbyte nx , GLbyte ny , GLbyte nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3d (
JNIEnv *env, jobject obj,
@@ -2612,13 +2612,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3d ( GLdouble nx , GLdouble ny , GLdouble nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3f (
JNIEnv *env, jobject obj,
@@ -2636,13 +2636,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3f ( GLfloat nx , GLfloat ny , GLfloat nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3i (
JNIEnv *env, jobject obj,
@@ -2660,13 +2660,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3i ( GLint nx , GLint ny , GLint nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3s (
JNIEnv *env, jobject obj,
@@ -2684,13 +2684,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3s ( GLshort nx , GLshort ny , GLshort nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3bv (
JNIEnv *env, jobject obj,
@@ -2713,13 +2713,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3dv (
JNIEnv *env, jobject obj,
@@ -2742,13 +2742,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3fv (
JNIEnv *env, jobject obj,
@@ -2771,13 +2771,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3iv (
JNIEnv *env, jobject obj,
@@ -2800,13 +2800,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3sv (
JNIEnv *env, jobject obj,
@@ -2829,13 +2829,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexd (
JNIEnv *env, jobject obj,
@@ -2849,13 +2849,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexd ( GLdouble c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexf (
JNIEnv *env, jobject obj,
@@ -2869,13 +2869,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexf ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexi (
JNIEnv *env, jobject obj,
@@ -2889,13 +2889,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexi ( GLint c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexs (
JNIEnv *env, jobject obj,
@@ -2909,13 +2909,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexs ( GLshort c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexub (
JNIEnv *env, jobject obj,
@@ -2929,13 +2929,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexub ( GLubyte c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexdv (
JNIEnv *env, jobject obj,
@@ -2958,13 +2958,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexdv ( const GLdouble * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexfv (
JNIEnv *env, jobject obj,
@@ -2987,13 +2987,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexfv ( const GLfloat * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexiv (
JNIEnv *env, jobject obj,
@@ -3016,13 +3016,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexiv ( const GLint * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexsv (
JNIEnv *env, jobject obj,
@@ -3045,13 +3045,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexsv ( const GLshort * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexubv (
JNIEnv *env, jobject obj,
@@ -3074,13 +3074,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexubv ( const GLubyte * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3b (
JNIEnv *env, jobject obj,
@@ -3098,13 +3098,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3b ( GLbyte red , GLbyte green , GLbyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3d (
JNIEnv *env, jobject obj,
@@ -3122,13 +3122,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3d ( GLdouble red , GLdouble green , GLdouble blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3f (
JNIEnv *env, jobject obj,
@@ -3146,13 +3146,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3f ( GLfloat red , GLfloat green , GLfloat blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3i (
JNIEnv *env, jobject obj,
@@ -3170,13 +3170,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3i ( GLint red , GLint green , GLint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3s (
JNIEnv *env, jobject obj,
@@ -3194,13 +3194,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3s ( GLshort red , GLshort green , GLshort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3ub (
JNIEnv *env, jobject obj,
@@ -3218,13 +3218,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ub ( GLubyte red , GLubyte green , GLubyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3ui (
JNIEnv *env, jobject obj,
@@ -3242,13 +3242,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ui ( GLuint red , GLuint green , GLuint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3us (
JNIEnv *env, jobject obj,
@@ -3266,13 +3266,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3us ( GLushort red , GLushort green , GLushort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4b (
JNIEnv *env, jobject obj,
@@ -3292,13 +3292,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4b ( GLbyte red , GLbyte green , GLbyte blue , GLbyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4d (
JNIEnv *env, jobject obj,
@@ -3318,13 +3318,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4d ( GLdouble red , GLdouble green , GLdouble blue , GLdouble alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4f (
JNIEnv *env, jobject obj,
@@ -3344,13 +3344,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4f ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4i (
JNIEnv *env, jobject obj,
@@ -3370,13 +3370,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4i ( GLint red , GLint green , GLint blue , GLint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4s (
JNIEnv *env, jobject obj,
@@ -3396,13 +3396,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4s ( GLshort red , GLshort green , GLshort blue , GLshort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4ub (
JNIEnv *env, jobject obj,
@@ -3422,13 +3422,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ub ( GLubyte red , GLubyte green , GLubyte blue , GLubyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4ui (
JNIEnv *env, jobject obj,
@@ -3448,13 +3448,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ui ( GLuint red , GLuint green , GLuint blue , GLuint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4us (
JNIEnv *env, jobject obj,
@@ -3474,13 +3474,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4us ( GLushort red , GLushort green , GLushort blue , GLushort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3bv (
JNIEnv *env, jobject obj,
@@ -3503,13 +3503,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3dv (
JNIEnv *env, jobject obj,
@@ -3532,13 +3532,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3fv (
JNIEnv *env, jobject obj,
@@ -3561,13 +3561,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3iv (
JNIEnv *env, jobject obj,
@@ -3590,13 +3590,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3sv (
JNIEnv *env, jobject obj,
@@ -3619,13 +3619,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3ubv (
JNIEnv *env, jobject obj,
@@ -3648,13 +3648,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3uiv (
JNIEnv *env, jobject obj,
@@ -3677,13 +3677,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3usv (
JNIEnv *env, jobject obj,
@@ -3706,13 +3706,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4bv (
JNIEnv *env, jobject obj,
@@ -3735,13 +3735,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4dv (
JNIEnv *env, jobject obj,
@@ -3764,13 +3764,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4fv (
JNIEnv *env, jobject obj,
@@ -3793,13 +3793,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4iv (
JNIEnv *env, jobject obj,
@@ -3822,13 +3822,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4sv (
JNIEnv *env, jobject obj,
@@ -3851,13 +3851,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4ubv (
JNIEnv *env, jobject obj,
@@ -3880,13 +3880,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4uiv (
JNIEnv *env, jobject obj,
@@ -3909,13 +3909,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4usv (
JNIEnv *env, jobject obj,
@@ -3938,13 +3938,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord1d (
JNIEnv *env, jobject obj,
@@ -3958,13 +3958,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1d ( GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord1f (
JNIEnv *env, jobject obj,
@@ -3978,13 +3978,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1f ( GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord1i (
JNIEnv *env, jobject obj,
@@ -3998,13 +3998,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1i ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord1s (
JNIEnv *env, jobject obj,
@@ -4018,13 +4018,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1s ( GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2d (
JNIEnv *env, jobject obj,
@@ -4040,13 +4040,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2d ( GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2f (
JNIEnv *env, jobject obj,
@@ -4062,13 +4062,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2f ( GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2i (
JNIEnv *env, jobject obj,
@@ -4084,13 +4084,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2i ( GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2s (
JNIEnv *env, jobject obj,
@@ -4106,13 +4106,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2s ( GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord3d (
JNIEnv *env, jobject obj,
@@ -4130,13 +4130,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3d ( GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord3f (
JNIEnv *env, jobject obj,
@@ -4154,13 +4154,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3f ( GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord3i (
JNIEnv *env, jobject obj,
@@ -4178,13 +4178,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3i ( GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord3s (
JNIEnv *env, jobject obj,
@@ -4202,13 +4202,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3s ( GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4d (
JNIEnv *env, jobject obj,
@@ -4228,13 +4228,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4d ( GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4f (
JNIEnv *env, jobject obj,
@@ -4254,13 +4254,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4f ( GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4i (
JNIEnv *env, jobject obj,
@@ -4280,13 +4280,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4i ( GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4s (
JNIEnv *env, jobject obj,
@@ -4306,13 +4306,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4s ( GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord1dv (
JNIEnv *env, jobject obj,
@@ -4335,13 +4335,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord1fv (
JNIEnv *env, jobject obj,
@@ -4364,13 +4364,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord1iv (
JNIEnv *env, jobject obj,
@@ -4393,13 +4393,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord1sv (
JNIEnv *env, jobject obj,
@@ -4422,13 +4422,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2dv (
JNIEnv *env, jobject obj,
@@ -4451,13 +4451,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fv (
JNIEnv *env, jobject obj,
@@ -4480,13 +4480,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2iv (
JNIEnv *env, jobject obj,
@@ -4509,13 +4509,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2sv (
JNIEnv *env, jobject obj,
@@ -4538,13 +4538,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord3dv (
JNIEnv *env, jobject obj,
@@ -4567,13 +4567,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord3fv (
JNIEnv *env, jobject obj,
@@ -4596,13 +4596,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord3iv (
JNIEnv *env, jobject obj,
@@ -4625,13 +4625,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord3sv (
JNIEnv *env, jobject obj,
@@ -4654,13 +4654,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4dv (
JNIEnv *env, jobject obj,
@@ -4683,13 +4683,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4fv (
JNIEnv *env, jobject obj,
@@ -4712,13 +4712,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4iv (
JNIEnv *env, jobject obj,
@@ -4741,13 +4741,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4sv (
JNIEnv *env, jobject obj,
@@ -4770,13 +4770,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos2d (
JNIEnv *env, jobject obj,
@@ -4792,13 +4792,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos2f (
JNIEnv *env, jobject obj,
@@ -4814,13 +4814,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos2i (
JNIEnv *env, jobject obj,
@@ -4836,13 +4836,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos2s (
JNIEnv *env, jobject obj,
@@ -4858,13 +4858,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos3d (
JNIEnv *env, jobject obj,
@@ -4882,13 +4882,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos3f (
JNIEnv *env, jobject obj,
@@ -4906,13 +4906,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos3i (
JNIEnv *env, jobject obj,
@@ -4930,13 +4930,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos3s (
JNIEnv *env, jobject obj,
@@ -4954,13 +4954,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos4d (
JNIEnv *env, jobject obj,
@@ -4980,13 +4980,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos4f (
JNIEnv *env, jobject obj,
@@ -5006,13 +5006,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos4i (
JNIEnv *env, jobject obj,
@@ -5032,13 +5032,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos4s (
JNIEnv *env, jobject obj,
@@ -5058,13 +5058,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos2dv (
JNIEnv *env, jobject obj,
@@ -5087,13 +5087,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos2fv (
JNIEnv *env, jobject obj,
@@ -5116,13 +5116,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos2iv (
JNIEnv *env, jobject obj,
@@ -5145,13 +5145,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos2sv (
JNIEnv *env, jobject obj,
@@ -5174,13 +5174,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos3dv (
JNIEnv *env, jobject obj,
@@ -5203,13 +5203,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos3fv (
JNIEnv *env, jobject obj,
@@ -5232,13 +5232,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos3iv (
JNIEnv *env, jobject obj,
@@ -5261,13 +5261,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos3sv (
JNIEnv *env, jobject obj,
@@ -5290,13 +5290,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos4dv (
JNIEnv *env, jobject obj,
@@ -5319,13 +5319,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos4fv (
JNIEnv *env, jobject obj,
@@ -5348,13 +5348,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos4iv (
JNIEnv *env, jobject obj,
@@ -5377,13 +5377,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos4sv (
JNIEnv *env, jobject obj,
@@ -5406,13 +5406,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRectd (
JNIEnv *env, jobject obj,
@@ -5432,13 +5432,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectd ( GLdouble x1 , GLdouble y1 , GLdouble x2 , GLdouble y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRectf (
JNIEnv *env, jobject obj,
@@ -5458,13 +5458,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectf ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRecti (
JNIEnv *env, jobject obj,
@@ -5484,13 +5484,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRecti ( GLint x1 , GLint y1 , GLint x2 , GLint y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRects (
JNIEnv *env, jobject obj,
@@ -5510,13 +5510,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRects ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRectdv (
JNIEnv *env, jobject obj,
@@ -5550,13 +5550,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectdv ( const GLdouble * v1 , const GLdouble * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRectfv (
JNIEnv *env, jobject obj,
@@ -5590,13 +5590,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectfv ( const GLfloat * v1 , const GLfloat * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRectiv (
JNIEnv *env, jobject obj,
@@ -5630,13 +5630,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectiv ( const GLint * v1 , const GLint * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRectsv (
JNIEnv *env, jobject obj,
@@ -5670,13 +5670,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectsv ( const GLshort * v1 , const GLshort * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -5902,13 +5902,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalPointer__II_3B (
JNIEnv *env, jobject obj,
@@ -6118,13 +6118,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -6350,13 +6350,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexPointer__II_3B (
JNIEnv *env, jobject obj,
@@ -6566,13 +6566,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoordPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -6798,13 +6798,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEdgeFlagPointer__I_3B (
JNIEnv *env, jobject obj,
@@ -6998,13 +6998,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointer ( GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetPointerv__I_3_3B (
JNIEnv *env, jobject obj,
@@ -7180,13 +7180,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointerv ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glArrayElement (
JNIEnv *env, jobject obj,
@@ -7200,13 +7200,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElement ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDrawArrays (
JNIEnv *env, jobject obj,
@@ -7224,13 +7224,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArrays ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDrawElements__III_3B (
JNIEnv *env, jobject obj,
@@ -7456,13 +7456,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawElements ( GLenum mode , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glInterleavedArrays__II_3B (
JNIEnv *env, jobject obj,
@@ -7672,13 +7672,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInterleavedArrays ( GLenum format , GLsizei stride , const GLvoid * pointer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glShadeModel (
JNIEnv *env, jobject obj,
@@ -7692,13 +7692,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShadeModel ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLightf (
JNIEnv *env, jobject obj,
@@ -7716,13 +7716,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightf ( GLenum light , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLighti (
JNIEnv *env, jobject obj,
@@ -7740,13 +7740,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLighti ( GLenum light , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLightfv (
JNIEnv *env, jobject obj,
@@ -7773,13 +7773,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightfv ( GLenum light , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLightiv (
JNIEnv *env, jobject obj,
@@ -7806,13 +7806,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightiv ( GLenum light , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetLightfv (
JNIEnv *env, jobject obj,
@@ -7840,13 +7840,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightfv ( GLenum light , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetLightiv (
JNIEnv *env, jobject obj,
@@ -7874,13 +7874,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightiv ( GLenum light , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLightModelf (
JNIEnv *env, jobject obj,
@@ -7896,13 +7896,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLightModeli (
JNIEnv *env, jobject obj,
@@ -7918,13 +7918,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeli ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLightModelfv (
JNIEnv *env, jobject obj,
@@ -7949,13 +7949,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLightModeliv (
JNIEnv *env, jobject obj,
@@ -7980,13 +7980,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeliv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMaterialf (
JNIEnv *env, jobject obj,
@@ -8004,13 +8004,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialf ( GLenum face , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMateriali (
JNIEnv *env, jobject obj,
@@ -8028,13 +8028,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMateriali ( GLenum face , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMaterialfv (
JNIEnv *env, jobject obj,
@@ -8061,13 +8061,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialfv ( GLenum face , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMaterialiv (
JNIEnv *env, jobject obj,
@@ -8094,13 +8094,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialiv ( GLenum face , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMaterialfv (
JNIEnv *env, jobject obj,
@@ -8128,13 +8128,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialfv ( GLenum face , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMaterialiv (
JNIEnv *env, jobject obj,
@@ -8162,13 +8162,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialiv ( GLenum face , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorMaterial (
JNIEnv *env, jobject obj,
@@ -8184,13 +8184,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMaterial ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelZoom (
JNIEnv *env, jobject obj,
@@ -8206,13 +8206,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelZoom ( GLfloat xfactor , GLfloat yfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelStoref (
JNIEnv *env, jobject obj,
@@ -8228,13 +8228,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStoref ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelStorei (
JNIEnv *env, jobject obj,
@@ -8250,13 +8250,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStorei ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTransferf (
JNIEnv *env, jobject obj,
@@ -8272,13 +8272,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTransferi (
JNIEnv *env, jobject obj,
@@ -8294,13 +8294,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelMapfv (
JNIEnv *env, jobject obj,
@@ -8327,13 +8327,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapfv ( GLenum map , GLint mapsize , const GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelMapuiv (
JNIEnv *env, jobject obj,
@@ -8360,13 +8360,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapuiv ( GLenum map , GLint mapsize , const GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelMapusv (
JNIEnv *env, jobject obj,
@@ -8393,13 +8393,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapusv ( GLenum map , GLint mapsize , const GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetPixelMapfv (
JNIEnv *env, jobject obj,
@@ -8425,13 +8425,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapfv ( GLenum map , GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetPixelMapuiv (
JNIEnv *env, jobject obj,
@@ -8457,13 +8457,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapuiv ( GLenum map , GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetPixelMapusv (
JNIEnv *env, jobject obj,
@@ -8489,13 +8489,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapusv ( GLenum map , GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBitmap (
JNIEnv *env, jobject obj,
@@ -8530,13 +8530,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, bitmap, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBitmap ( GLsizei width , GLsizei height , GLfloat xorig , GLfloat yorig , GLfloat xmove , GLfloat ymove , const GLubyte * bitmap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReadPixels__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -8817,13 +8817,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDrawPixels__IIII_3B (
JNIEnv *env, jobject obj,
@@ -9065,13 +9065,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawPixels ( GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyPixels (
JNIEnv *env, jobject obj,
@@ -9093,13 +9093,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glStencilFunc (
JNIEnv *env, jobject obj,
@@ -9117,13 +9117,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilFunc ( GLenum func , GLint ref , GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glStencilMask (
JNIEnv *env, jobject obj,
@@ -9137,13 +9137,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glStencilOp (
JNIEnv *env, jobject obj,
@@ -9161,13 +9161,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilOp ( GLenum fail , GLenum zfail , GLenum zpass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClearStencil (
JNIEnv *env, jobject obj,
@@ -9181,13 +9181,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearStencil ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexGend (
JNIEnv *env, jobject obj,
@@ -9205,13 +9205,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGend ( GLenum coord , GLenum pname , GLdouble param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexGenf (
JNIEnv *env, jobject obj,
@@ -9229,13 +9229,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenf ( GLenum coord , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexGeni (
JNIEnv *env, jobject obj,
@@ -9253,13 +9253,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeni ( GLenum coord , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexGendv (
JNIEnv *env, jobject obj,
@@ -9286,13 +9286,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGendv ( GLenum coord , GLenum pname , const GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexGenfv (
JNIEnv *env, jobject obj,
@@ -9319,13 +9319,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenfv ( GLenum coord , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexGeniv (
JNIEnv *env, jobject obj,
@@ -9352,13 +9352,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeniv ( GLenum coord , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexGendv (
JNIEnv *env, jobject obj,
@@ -9386,13 +9386,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGendv ( GLenum coord , GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexGenfv (
JNIEnv *env, jobject obj,
@@ -9420,13 +9420,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGenfv ( GLenum coord , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexGeniv (
JNIEnv *env, jobject obj,
@@ -9454,13 +9454,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGeniv ( GLenum coord , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexEnvf (
JNIEnv *env, jobject obj,
@@ -9478,13 +9478,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexEnvi (
JNIEnv *env, jobject obj,
@@ -9502,13 +9502,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvi ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexEnvfv (
JNIEnv *env, jobject obj,
@@ -9535,13 +9535,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexEnviv (
JNIEnv *env, jobject obj,
@@ -9568,13 +9568,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnviv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexEnvfv (
JNIEnv *env, jobject obj,
@@ -9602,13 +9602,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnvfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexEnviv (
JNIEnv *env, jobject obj,
@@ -9636,13 +9636,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnviv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexParameterf (
JNIEnv *env, jobject obj,
@@ -9660,13 +9660,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexParameteri (
JNIEnv *env, jobject obj,
@@ -9684,13 +9684,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteri ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexParameterfv (
JNIEnv *env, jobject obj,
@@ -9717,13 +9717,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexParameteriv (
JNIEnv *env, jobject obj,
@@ -9750,13 +9750,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexParameterfv (
JNIEnv *env, jobject obj,
@@ -9784,13 +9784,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexParameteriv (
JNIEnv *env, jobject obj,
@@ -9818,13 +9818,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexLevelParameterfv (
JNIEnv *env, jobject obj,
@@ -9854,13 +9854,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameterfv ( GLenum target , GLint level , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexLevelParameteriv (
JNIEnv *env, jobject obj,
@@ -9890,13 +9890,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameteriv ( GLenum target , GLint level , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexImage1D__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -10186,13 +10186,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage1D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -10498,13 +10498,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage2D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLsizei height , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexImage__IIII_3B (
JNIEnv *env, jobject obj,
@@ -10753,13 +10753,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexImage ( GLenum target , GLint level , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGenTextures (
JNIEnv *env, jobject obj,
@@ -10785,13 +10785,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTextures ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeleteTextures (
JNIEnv *env, jobject obj,
@@ -10816,13 +10816,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTextures ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBindTexture (
JNIEnv *env, jobject obj,
@@ -10838,13 +10838,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTexture ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPrioritizeTextures (
JNIEnv *env, jobject obj,
@@ -10880,13 +10880,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, priorities, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTextures ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glAreTexturesResident (
JNIEnv *env, jobject obj,
@@ -10926,13 +10926,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResident ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glIsTexture (
JNIEnv *env, jobject obj,
@@ -10949,13 +10949,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTexture ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexSubImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -11229,13 +11229,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexSubImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -11541,13 +11541,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexImage1D (
JNIEnv *env, jobject obj,
@@ -11573,13 +11573,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexImage2D (
JNIEnv *env, jobject obj,
@@ -11607,13 +11607,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexSubImage1D (
JNIEnv *env, jobject obj,
@@ -11637,13 +11637,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexSubImage2D (
JNIEnv *env, jobject obj,
@@ -11671,13 +11671,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMap1d (
JNIEnv *env, jobject obj,
@@ -11710,13 +11710,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint stride , GLint order , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMap1f (
JNIEnv *env, jobject obj,
@@ -11749,13 +11749,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint stride , GLint order , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMap2d (
JNIEnv *env, jobject obj,
@@ -11796,13 +11796,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint ustride , GLint uorder , GLdouble v1 , GLdouble v2 , GLint vstride , GLint vorder , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMap2f (
JNIEnv *env, jobject obj,
@@ -11843,13 +11843,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint ustride , GLint uorder , GLfloat v1 , GLfloat v2 , GLint vstride , GLint vorder , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMapdv (
JNIEnv *env, jobject obj,
@@ -11877,13 +11877,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapdv ( GLenum target , GLenum query , GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMapfv (
JNIEnv *env, jobject obj,
@@ -11911,13 +11911,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapfv ( GLenum target , GLenum query , GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMapiv (
JNIEnv *env, jobject obj,
@@ -11945,13 +11945,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapiv ( GLenum target , GLenum query , GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalCoord1d (
JNIEnv *env, jobject obj,
@@ -11965,13 +11965,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1d ( GLdouble u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalCoord1f (
JNIEnv *env, jobject obj,
@@ -11985,13 +11985,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1f ( GLfloat u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalCoord1dv (
JNIEnv *env, jobject obj,
@@ -12014,13 +12014,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalCoord1fv (
JNIEnv *env, jobject obj,
@@ -12043,13 +12043,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalCoord2d (
JNIEnv *env, jobject obj,
@@ -12065,13 +12065,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2d ( GLdouble u , GLdouble v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalCoord2f (
JNIEnv *env, jobject obj,
@@ -12087,13 +12087,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2f ( GLfloat u , GLfloat v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalCoord2dv (
JNIEnv *env, jobject obj,
@@ -12116,13 +12116,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalCoord2fv (
JNIEnv *env, jobject obj,
@@ -12145,13 +12145,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMapGrid1d (
JNIEnv *env, jobject obj,
@@ -12169,13 +12169,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1d ( GLint un , GLdouble u1 , GLdouble u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMapGrid1f (
JNIEnv *env, jobject obj,
@@ -12193,13 +12193,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1f ( GLint un , GLfloat u1 , GLfloat u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMapGrid2d (
JNIEnv *env, jobject obj,
@@ -12223,13 +12223,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2d ( GLint un , GLdouble u1 , GLdouble u2 , GLint vn , GLdouble v1 , GLdouble v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMapGrid2f (
JNIEnv *env, jobject obj,
@@ -12253,13 +12253,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2f ( GLint un , GLfloat u1 , GLfloat u2 , GLint vn , GLfloat v1 , GLfloat v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalPoint1 (
JNIEnv *env, jobject obj,
@@ -12273,13 +12273,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint1 ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalPoint2 (
JNIEnv *env, jobject obj,
@@ -12295,13 +12295,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint2 ( GLint i , GLint j ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalMesh1 (
JNIEnv *env, jobject obj,
@@ -12319,13 +12319,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh1 ( GLenum mode , GLint i1 , GLint i2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalMesh2 (
JNIEnv *env, jobject obj,
@@ -12347,13 +12347,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh2 ( GLenum mode , GLint i1 , GLint i2 , GLint j1 , GLint j2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogf (
JNIEnv *env, jobject obj,
@@ -12369,13 +12369,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogi (
JNIEnv *env, jobject obj,
@@ -12391,13 +12391,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogfv (
JNIEnv *env, jobject obj,
@@ -12422,13 +12422,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogiv (
JNIEnv *env, jobject obj,
@@ -12453,13 +12453,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogiv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFeedbackBuffer (
JNIEnv *env, jobject obj,
@@ -12487,13 +12487,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, buffer, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFeedbackBuffer ( GLsizei size , GLenum type , GLfloat * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPassThrough (
JNIEnv *env, jobject obj,
@@ -12507,13 +12507,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPassThrough ( GLfloat token ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSelectBuffer (
JNIEnv *env, jobject obj,
@@ -12539,13 +12539,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, buffer, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSelectBuffer ( GLsizei size , GLuint * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glInitNames (
JNIEnv *env, jobject obj)
@@ -12557,13 +12557,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInitNames ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadName (
JNIEnv *env, jobject obj,
@@ -12577,13 +12577,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPushName (
JNIEnv *env, jobject obj,
@@ -12597,13 +12597,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPopName (
JNIEnv *env, jobject obj)
@@ -12615,13 +12615,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopName ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDrawRangeElements__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -12879,13 +12879,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElements ( GLenum mode , GLuint start , GLuint end , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexImage3D__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -13207,13 +13207,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3D ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexSubImage3D__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -13551,13 +13551,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexSubImage3D (
JNIEnv *env, jobject obj,
@@ -13587,13 +13587,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorTable__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -13851,13 +13851,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTable ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorSubTable__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -14115,13 +14115,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTable ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorTableParameteriv (
JNIEnv *env, jobject obj,
@@ -14148,13 +14148,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorTableParameterfv (
JNIEnv *env, jobject obj,
@@ -14181,13 +14181,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyColorSubTable (
JNIEnv *env, jobject obj,
@@ -14209,13 +14209,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTable ( GLenum target , GLsizei start , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyColorTable (
JNIEnv *env, jobject obj,
@@ -14237,13 +14237,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTable ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetColorTable__III_3B (
JNIEnv *env, jobject obj,
@@ -14476,13 +14476,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTable ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetColorTableParameterfv (
JNIEnv *env, jobject obj,
@@ -14510,13 +14510,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetColorTableParameteriv (
JNIEnv *env, jobject obj,
@@ -14544,13 +14544,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBlendEquation (
JNIEnv *env, jobject obj,
@@ -14564,13 +14564,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquation ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBlendColor (
JNIEnv *env, jobject obj,
@@ -14590,13 +14590,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glHistogram (
JNIEnv *env, jobject obj,
@@ -14616,13 +14616,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogram ( GLenum target , GLsizei width , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glResetHistogram (
JNIEnv *env, jobject obj,
@@ -14636,13 +14636,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogram ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetHistogram__IZII_3B (
JNIEnv *env, jobject obj,
@@ -14891,13 +14891,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogram ( GLenum target , GLboolean reset , GLenum format , GLenum type , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetHistogramParameterfv (
JNIEnv *env, jobject obj,
@@ -14925,13 +14925,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetHistogramParameteriv (
JNIEnv *env, jobject obj,
@@ -14959,13 +14959,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMinmax (
JNIEnv *env, jobject obj,
@@ -14983,13 +14983,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmax ( GLenum target , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glResetMinmax (
JNIEnv *env, jobject obj,
@@ -15003,13 +15003,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmax ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMinmax__IZII_3B (
JNIEnv *env, jobject obj,
@@ -15258,13 +15258,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmax ( GLenum target , GLboolean reset , GLenum format , GLenum types , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMinmaxParameterfv (
JNIEnv *env, jobject obj,
@@ -15292,13 +15292,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMinmaxParameteriv (
JNIEnv *env, jobject obj,
@@ -15326,13 +15326,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionFilter1D__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -15590,13 +15590,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1D ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionFilter2D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -15870,13 +15870,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionParameterf (
JNIEnv *env, jobject obj,
@@ -15894,13 +15894,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterf ( GLenum target , GLenum pname , GLfloat params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionParameterfv (
JNIEnv *env, jobject obj,
@@ -15927,13 +15927,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionParameteri (
JNIEnv *env, jobject obj,
@@ -15951,13 +15951,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteri ( GLenum target , GLenum pname , GLint params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionParameteriv (
JNIEnv *env, jobject obj,
@@ -15984,13 +15984,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyConvolutionFilter1D (
JNIEnv *env, jobject obj,
@@ -16012,13 +16012,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyConvolutionFilter2D (
JNIEnv *env, jobject obj,
@@ -16042,13 +16042,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetConvolutionFilter__III_3B (
JNIEnv *env, jobject obj,
@@ -16281,13 +16281,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilter ( GLenum target , GLenum format , GLenum type , GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetConvolutionParameterfv (
JNIEnv *env, jobject obj,
@@ -16315,13 +16315,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetConvolutionParameteriv (
JNIEnv *env, jobject obj,
@@ -16349,13 +16349,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSeparableFilter2D__IIIIII_3B_3B (
JNIEnv *env, jobject obj,
@@ -16718,13 +16718,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * row , const GLvoid * column ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetSeparableFilter__III_3B_3B_3B (
JNIEnv *env, jobject obj,
@@ -17149,13 +17149,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilter ( GLenum target , GLenum format , GLenum type , GLvoid * row , GLvoid * column , GLvoid * span ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glActiveTexture (
JNIEnv *env, jobject obj,
@@ -17169,13 +17169,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClientActiveTexture (
JNIEnv *env, jobject obj,
@@ -17189,13 +17189,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17469,13 +17469,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexImage2D__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17765,13 +17765,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexImage3D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -18077,13 +18077,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexSubImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -18357,13 +18357,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexSubImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -18669,13 +18669,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexSubImage3D__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -19013,13 +19013,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetCompressedTexImage__II_3B (
JNIEnv *env, jobject obj,
@@ -19236,13 +19236,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImage ( GLenum target , GLint lod , GLvoid * img ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1d (
JNIEnv *env, jobject obj,
@@ -19258,13 +19258,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1d ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1dv (
JNIEnv *env, jobject obj,
@@ -19289,13 +19289,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1f (
JNIEnv *env, jobject obj,
@@ -19311,13 +19311,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1f ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1fv (
JNIEnv *env, jobject obj,
@@ -19342,13 +19342,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1i (
JNIEnv *env, jobject obj,
@@ -19364,13 +19364,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1i ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1iv (
JNIEnv *env, jobject obj,
@@ -19395,13 +19395,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1s (
JNIEnv *env, jobject obj,
@@ -19417,13 +19417,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1s ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1sv (
JNIEnv *env, jobject obj,
@@ -19448,13 +19448,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2d (
JNIEnv *env, jobject obj,
@@ -19472,13 +19472,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2d ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2dv (
JNIEnv *env, jobject obj,
@@ -19503,13 +19503,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2f (
JNIEnv *env, jobject obj,
@@ -19527,13 +19527,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2f ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2fv (
JNIEnv *env, jobject obj,
@@ -19558,13 +19558,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2i (
JNIEnv *env, jobject obj,
@@ -19582,13 +19582,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2i ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2iv (
JNIEnv *env, jobject obj,
@@ -19613,13 +19613,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2s (
JNIEnv *env, jobject obj,
@@ -19637,13 +19637,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2s ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2sv (
JNIEnv *env, jobject obj,
@@ -19668,13 +19668,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3d (
JNIEnv *env, jobject obj,
@@ -19694,13 +19694,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3d ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3dv (
JNIEnv *env, jobject obj,
@@ -19725,13 +19725,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3f (
JNIEnv *env, jobject obj,
@@ -19751,13 +19751,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3f ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3fv (
JNIEnv *env, jobject obj,
@@ -19782,13 +19782,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3i (
JNIEnv *env, jobject obj,
@@ -19808,13 +19808,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3i ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3iv (
JNIEnv *env, jobject obj,
@@ -19839,13 +19839,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3s (
JNIEnv *env, jobject obj,
@@ -19865,13 +19865,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3s ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3sv (
JNIEnv *env, jobject obj,
@@ -19896,13 +19896,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4d (
JNIEnv *env, jobject obj,
@@ -19924,13 +19924,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4d ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4dv (
JNIEnv *env, jobject obj,
@@ -19955,13 +19955,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4f (
JNIEnv *env, jobject obj,
@@ -19983,13 +19983,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4f ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4fv (
JNIEnv *env, jobject obj,
@@ -20014,13 +20014,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4i (
JNIEnv *env, jobject obj,
@@ -20042,13 +20042,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4i ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4iv (
JNIEnv *env, jobject obj,
@@ -20073,13 +20073,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4s (
JNIEnv *env, jobject obj,
@@ -20101,13 +20101,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4s ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4sv (
JNIEnv *env, jobject obj,
@@ -20132,13 +20132,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadTransposeMatrixd (
JNIEnv *env, jobject obj,
@@ -20161,13 +20161,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadTransposeMatrixf (
JNIEnv *env, jobject obj,
@@ -20190,13 +20190,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultTransposeMatrixd (
JNIEnv *env, jobject obj,
@@ -20219,13 +20219,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultTransposeMatrixf (
JNIEnv *env, jobject obj,
@@ -20248,13 +20248,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSampleCoverage (
JNIEnv *env, jobject obj,
@@ -20270,13 +20270,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverage ( GLclampf value , GLboolean invert ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSamplePass (
JNIEnv *env, jobject obj,
@@ -20290,13 +20290,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePass ( GLenum pass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glActiveTextureARB (
JNIEnv *env, jobject obj,
@@ -20310,13 +20310,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClientActiveTextureARB (
JNIEnv *env, jobject obj,
@@ -20330,13 +20330,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1dARB (
JNIEnv *env, jobject obj,
@@ -20352,13 +20352,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dARB ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1dvARB (
JNIEnv *env, jobject obj,
@@ -20383,13 +20383,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1fARB (
JNIEnv *env, jobject obj,
@@ -20405,13 +20405,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fARB ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1fvARB (
JNIEnv *env, jobject obj,
@@ -20436,13 +20436,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1iARB (
JNIEnv *env, jobject obj,
@@ -20458,13 +20458,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iARB ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1ivARB (
JNIEnv *env, jobject obj,
@@ -20489,13 +20489,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1sARB (
JNIEnv *env, jobject obj,
@@ -20511,13 +20511,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sARB ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1svARB (
JNIEnv *env, jobject obj,
@@ -20542,13 +20542,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2dARB (
JNIEnv *env, jobject obj,
@@ -20566,13 +20566,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dARB ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2dvARB (
JNIEnv *env, jobject obj,
@@ -20597,13 +20597,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2fARB (
JNIEnv *env, jobject obj,
@@ -20621,13 +20621,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fARB ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2fvARB (
JNIEnv *env, jobject obj,
@@ -20652,13 +20652,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2iARB (
JNIEnv *env, jobject obj,
@@ -20676,13 +20676,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iARB ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2ivARB (
JNIEnv *env, jobject obj,
@@ -20707,13 +20707,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2sARB (
JNIEnv *env, jobject obj,
@@ -20731,13 +20731,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sARB ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2svARB (
JNIEnv *env, jobject obj,
@@ -20762,13 +20762,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3dARB (
JNIEnv *env, jobject obj,
@@ -20788,13 +20788,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3dvARB (
JNIEnv *env, jobject obj,
@@ -20819,13 +20819,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3fARB (
JNIEnv *env, jobject obj,
@@ -20845,13 +20845,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3fvARB (
JNIEnv *env, jobject obj,
@@ -20876,13 +20876,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3iARB (
JNIEnv *env, jobject obj,
@@ -20902,13 +20902,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iARB ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3ivARB (
JNIEnv *env, jobject obj,
@@ -20933,13 +20933,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3sARB (
JNIEnv *env, jobject obj,
@@ -20959,13 +20959,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sARB ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3svARB (
JNIEnv *env, jobject obj,
@@ -20990,13 +20990,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4dARB (
JNIEnv *env, jobject obj,
@@ -21018,13 +21018,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4dvARB (
JNIEnv *env, jobject obj,
@@ -21049,13 +21049,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4fARB (
JNIEnv *env, jobject obj,
@@ -21077,13 +21077,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4fvARB (
JNIEnv *env, jobject obj,
@@ -21108,13 +21108,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4iARB (
JNIEnv *env, jobject obj,
@@ -21136,13 +21136,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iARB ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4ivARB (
JNIEnv *env, jobject obj,
@@ -21167,13 +21167,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4sARB (
JNIEnv *env, jobject obj,
@@ -21195,13 +21195,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sARB ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4svARB (
JNIEnv *env, jobject obj,
@@ -21226,13 +21226,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBlendColorEXT (
JNIEnv *env, jobject obj,
@@ -21252,13 +21252,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColorEXT ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPolygonOffsetEXT (
JNIEnv *env, jobject obj,
@@ -21274,13 +21274,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffsetEXT ( GLfloat factor , GLfloat bias ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexImage3DEXT__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -21602,13 +21602,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3DEXT ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexSubImage3DEXT__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -21946,13 +21946,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexSubImage3DEXT (
JNIEnv *env, jobject obj,
@@ -21982,13 +21982,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3DEXT ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGenTexturesEXT (
JNIEnv *env, jobject obj,
@@ -22014,13 +22014,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTexturesEXT ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeleteTexturesEXT (
JNIEnv *env, jobject obj,
@@ -22045,13 +22045,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTexturesEXT ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBindTextureEXT (
JNIEnv *env, jobject obj,
@@ -22067,13 +22067,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTextureEXT ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPrioritizeTexturesEXT (
JNIEnv *env, jobject obj,
@@ -22109,13 +22109,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, priorities, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTexturesEXT ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glAreTexturesResidentEXT (
JNIEnv *env, jobject obj,
@@ -22155,13 +22155,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResidentEXT ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glIsTextureEXT (
JNIEnv *env, jobject obj,
@@ -22178,13 +22178,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTextureEXT ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -22426,13 +22426,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -22658,13 +22658,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -22906,13 +22906,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -23138,13 +23138,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoordPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -23386,13 +23386,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEdgeFlagPointerEXT (
JNIEnv *env, jobject obj,
@@ -23419,13 +23419,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerEXT ( GLsizei stride , GLsizei count , const GLboolean * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetPointervEXT__I_3_3B (
JNIEnv *env, jobject obj,
@@ -23601,13 +23601,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointervEXT ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glArrayElementEXT (
JNIEnv *env, jobject obj,
@@ -23621,13 +23621,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElementEXT ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDrawArraysEXT (
JNIEnv *env, jobject obj,
@@ -23645,13 +23645,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArraysEXT ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBlendEquationEXT (
JNIEnv *env, jobject obj,
@@ -23665,13 +23665,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquationEXT ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPointParameterfEXT (
JNIEnv *env, jobject obj,
@@ -23687,13 +23687,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfEXT ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPointParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -23718,13 +23718,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvEXT ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPointParameterfSGIS (
JNIEnv *env, jobject obj,
@@ -23740,13 +23740,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfSGIS ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPointParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -23771,13 +23771,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvSGIS ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorTableEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -24035,13 +24035,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableEXT ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorSubTableEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -24299,13 +24299,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTableEXT ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetColorTableEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -24538,13 +24538,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableEXT ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetColorTableParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -24572,13 +24572,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvEXT ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetColorTableParameterivEXT (
JNIEnv *env, jobject obj,
@@ -24606,13 +24606,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivEXT ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLockArraysEXT (
JNIEnv *env, jobject obj,
@@ -24628,13 +24628,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLockArraysEXT ( GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glUnlockArraysEXT (
JNIEnv *env, jobject obj)
@@ -24646,13 +24646,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glUnlockArraysEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadTransposeMatrixfARB (
JNIEnv *env, jobject obj,
@@ -24675,13 +24675,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadTransposeMatrixdARB (
JNIEnv *env, jobject obj,
@@ -24704,13 +24704,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultTransposeMatrixfARB (
JNIEnv *env, jobject obj,
@@ -24733,13 +24733,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultTransposeMatrixdARB (
JNIEnv *env, jobject obj,
@@ -24762,13 +24762,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSampleCoverageARB (
JNIEnv *env, jobject obj,
@@ -24784,13 +24784,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverageARB ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexImage3DARB__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -25096,13 +25096,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexImage2DARB__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -25392,13 +25392,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexImage1DARB__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -25672,13 +25672,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1DARB ( GLenum , GLint , GLenum , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexSubImage3DARB__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -26016,13 +26016,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage3DARB ( GLenum , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexSubImage2DARB__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -26328,13 +26328,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2DARB ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexSubImage1DARB__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -26608,13 +26608,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1DARB ( GLenum , GLint , GLint , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetCompressedTexImageARB__II_3B (
JNIEnv *env, jobject obj,
@@ -26831,13 +26831,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImageARB ( GLenum , GLint , void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWeightbvARB (
JNIEnv *env, jobject obj,
@@ -26862,13 +26862,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightbvARB ( GLint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWeightsvARB (
JNIEnv *env, jobject obj,
@@ -26893,13 +26893,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightsvARB ( GLint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWeightivARB (
JNIEnv *env, jobject obj,
@@ -26924,13 +26924,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightivARB ( GLint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWeightfvARB (
JNIEnv *env, jobject obj,
@@ -26955,13 +26955,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightfvARB ( GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWeightdvARB (
JNIEnv *env, jobject obj,
@@ -26986,13 +26986,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightdvARB ( GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWeightubvARB (
JNIEnv *env, jobject obj,
@@ -27017,13 +27017,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWeightusvARB (
JNIEnv *env, jobject obj,
@@ -27048,13 +27048,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWeightuivARB (
JNIEnv *env, jobject obj,
@@ -27079,13 +27079,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWeightPointerARB__III_3B (
JNIEnv *env, jobject obj,
@@ -27311,13 +27311,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexBlendARB (
JNIEnv *env, jobject obj,
@@ -27331,13 +27331,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCurrentPaletteMatrixARB (
JNIEnv *env, jobject obj,
@@ -27351,13 +27351,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCurrentPaletteMatrixARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMatrixIndexubvARB (
JNIEnv *env, jobject obj,
@@ -27382,13 +27382,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMatrixIndexusvARB (
JNIEnv *env, jobject obj,
@@ -27413,13 +27413,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMatrixIndexuivARB (
JNIEnv *env, jobject obj,
@@ -27444,13 +27444,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMatrixIndexPointerARB__III_3B (
JNIEnv *env, jobject obj,
@@ -27676,13 +27676,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexFilterFuncSGIS (
JNIEnv *env, jobject obj,
@@ -27710,13 +27710,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexFilterFuncSGIS ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexFilterFuncSGIS (
JNIEnv *env, jobject obj,
@@ -27745,13 +27745,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexFilterFuncSGIS ( GLenum , GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexSubImage1DEXT__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -28025,13 +28025,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1DEXT ( GLenum , GLint , GLint , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexSubImage2DEXT__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -28337,13 +28337,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexImage1DEXT (
JNIEnv *env, jobject obj,
@@ -28369,13 +28369,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexImage2DEXT (
JNIEnv *env, jobject obj,
@@ -28403,13 +28403,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexSubImage1DEXT (
JNIEnv *env, jobject obj,
@@ -28433,13 +28433,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1DEXT ( GLenum , GLint , GLint , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexSubImage2DEXT (
JNIEnv *env, jobject obj,
@@ -28467,13 +28467,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetHistogramEXT__IZII_3B (
JNIEnv *env, jobject obj,
@@ -28722,13 +28722,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetHistogramParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -28756,13 +28756,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetHistogramParameterivEXT (
JNIEnv *env, jobject obj,
@@ -28790,13 +28790,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMinmaxEXT__IZII_3B (
JNIEnv *env, jobject obj,
@@ -29045,13 +29045,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMinmaxParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -29079,13 +29079,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMinmaxParameterivEXT (
JNIEnv *env, jobject obj,
@@ -29113,13 +29113,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glHistogramEXT (
JNIEnv *env, jobject obj,
@@ -29139,13 +29139,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogramEXT ( GLenum , GLsizei , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMinmaxEXT (
JNIEnv *env, jobject obj,
@@ -29163,13 +29163,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmaxEXT ( GLenum , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glResetHistogramEXT (
JNIEnv *env, jobject obj,
@@ -29183,13 +29183,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogramEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glResetMinmaxEXT (
JNIEnv *env, jobject obj,
@@ -29203,13 +29203,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmaxEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionFilter1DEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -29467,13 +29467,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1DEXT ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionFilter2DEXT__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -29747,13 +29747,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionParameterfEXT (
JNIEnv *env, jobject obj,
@@ -29771,13 +29771,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -29804,13 +29804,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionParameteriEXT (
JNIEnv *env, jobject obj,
@@ -29828,13 +29828,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionParameterivEXT (
JNIEnv *env, jobject obj,
@@ -29861,13 +29861,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyConvolutionFilter1DEXT (
JNIEnv *env, jobject obj,
@@ -29889,13 +29889,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1DEXT ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyConvolutionFilter2DEXT (
JNIEnv *env, jobject obj,
@@ -29919,13 +29919,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2DEXT ( GLenum , GLenum , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetConvolutionFilterEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -30158,13 +30158,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilterEXT ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetConvolutionParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -30192,13 +30192,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetConvolutionParameterivEXT (
JNIEnv *env, jobject obj,
@@ -30226,13 +30226,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetSeparableFilterEXT__III_3B_3B_3B (
JNIEnv *env, jobject obj,
@@ -30657,13 +30657,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilterEXT ( GLenum , GLenum , GLenum , GLvoid * , GLvoid * , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSeparableFilter2DEXT__IIIIII_3B_3B (
JNIEnv *env, jobject obj,
@@ -31026,13 +31026,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorTableSGI__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -31290,13 +31290,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableSGI ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorTableParameterfvSGI (
JNIEnv *env, jobject obj,
@@ -31323,13 +31323,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfvSGI ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorTableParameterivSGI (
JNIEnv *env, jobject obj,
@@ -31356,13 +31356,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterivSGI ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyColorTableSGI (
JNIEnv *env, jobject obj,
@@ -31384,13 +31384,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTableSGI ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetColorTableSGI__III_3B (
JNIEnv *env, jobject obj,
@@ -31623,13 +31623,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableSGI ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetColorTableParameterfvSGI (
JNIEnv *env, jobject obj,
@@ -31657,13 +31657,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvSGI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetColorTableParameterivSGI (
JNIEnv *env, jobject obj,
@@ -31691,13 +31691,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivSGI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTexGenSGIX (
JNIEnv *env, jobject obj,
@@ -31711,13 +31711,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenSGIX ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTexGenParameteriSGIS (
JNIEnv *env, jobject obj,
@@ -31733,13 +31733,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameteriSGIS ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTexGenParameterivSGIS (
JNIEnv *env, jobject obj,
@@ -31764,13 +31764,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterivSGIS ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTexGenParameterfSGIS (
JNIEnv *env, jobject obj,
@@ -31786,13 +31786,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfSGIS ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTexGenParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -31817,13 +31817,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfvSGIS ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetPixelTexGenParameterivSGIS (
JNIEnv *env, jobject obj,
@@ -31849,13 +31849,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterivSGIS ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetPixelTexGenParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -31881,13 +31881,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterfvSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexImage4DSGIS__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -32225,13 +32225,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage4DSGIS ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLsizei , GLint , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexSubImage4DSGIS__IIIIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -32601,13 +32601,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage4DSGIS ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDetailTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -32634,13 +32634,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDetailTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetDetailTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -32666,13 +32666,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDetailTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSharpenTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -32699,13 +32699,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSharpenTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetSharpenTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -32731,13 +32731,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSharpenTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSampleMaskSGIS (
JNIEnv *env, jobject obj,
@@ -32753,13 +32753,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskSGIS ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSamplePatternSGIS (
JNIEnv *env, jobject obj,
@@ -32773,13 +32773,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternSGIS ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSpriteParameterfSGIX (
JNIEnv *env, jobject obj,
@@ -32795,13 +32795,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSpriteParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -32826,13 +32826,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSpriteParameteriSGIX (
JNIEnv *env, jobject obj,
@@ -32848,13 +32848,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameteriSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSpriteParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -32879,13 +32879,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPointParameterfARB (
JNIEnv *env, jobject obj,
@@ -32901,13 +32901,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfARB ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPointParameterfvARB (
JNIEnv *env, jobject obj,
@@ -32932,13 +32932,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvARB ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glGetInstrumentsSGIX (
JNIEnv *env, jobject obj)
@@ -32953,13 +32953,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glGetInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glInstrumentsBufferSGIX (
JNIEnv *env, jobject obj,
@@ -32985,13 +32985,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInstrumentsBufferSGIX ( GLsizei , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glPollInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -33018,13 +33018,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollInstrumentsSGIX ( GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReadInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -33038,13 +33038,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glStartInstrumentsSGIX (
JNIEnv *env, jobject obj)
@@ -33056,13 +33056,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStartInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glStopInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -33076,13 +33076,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStopInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFrameZoomSGIX (
JNIEnv *env, jobject obj,
@@ -33096,13 +33096,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrameZoomSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTagSampleBufferSGIX (
JNIEnv *env, jobject obj)
@@ -33114,13 +33114,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTagSampleBufferSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeformationMap3dSGIX (
JNIEnv *env, jobject obj,
@@ -33169,13 +33169,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg13, ptr13, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3dSGIX ( GLenum , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeformationMap3fSGIX (
JNIEnv *env, jobject obj,
@@ -33224,13 +33224,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg13, ptr13, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3fSGIX ( GLenum , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeformSGIX (
JNIEnv *env, jobject obj,
@@ -33244,13 +33244,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadIdentityDeformationMapSGIX (
JNIEnv *env, jobject obj,
@@ -33264,13 +33264,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentityDeformationMapSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReferencePlaneSGIX (
JNIEnv *env, jobject obj,
@@ -33293,13 +33293,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReferencePlaneSGIX ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFlushRasterSGIX (
JNIEnv *env, jobject obj)
@@ -33311,13 +33311,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushRasterSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogFuncSGIS (
JNIEnv *env, jobject obj,
@@ -33342,13 +33342,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogFuncSGIS ( GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetFogFuncSGIS (
JNIEnv *env, jobject obj,
@@ -33372,13 +33372,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, (isCopiedArray0 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFogFuncSGIS ( GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glImageTransformParameteriHP (
JNIEnv *env, jobject obj,
@@ -33396,13 +33396,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameteriHP ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glImageTransformParameterfHP (
JNIEnv *env, jobject obj,
@@ -33420,13 +33420,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfHP ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glImageTransformParameterivHP (
JNIEnv *env, jobject obj,
@@ -33453,13 +33453,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterivHP ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glImageTransformParameterfvHP (
JNIEnv *env, jobject obj,
@@ -33486,13 +33486,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfvHP ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetImageTransformParameterivHP (
JNIEnv *env, jobject obj,
@@ -33520,13 +33520,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterivHP ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetImageTransformParameterfvHP (
JNIEnv *env, jobject obj,
@@ -33554,13 +33554,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterfvHP ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyColorSubTableEXT (
JNIEnv *env, jobject obj,
@@ -33582,13 +33582,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTableEXT ( GLenum , GLsizei , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glHintPGI (
JNIEnv *env, jobject obj,
@@ -33604,13 +33604,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHintPGI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetListParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -33638,13 +33638,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterfvSGIX ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetListParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -33672,13 +33672,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterivSGIX ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glListParameterfSGIX (
JNIEnv *env, jobject obj,
@@ -33696,13 +33696,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfSGIX ( GLuint , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glListParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -33729,13 +33729,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfvSGIX ( GLuint , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glListParameteriSGIX (
JNIEnv *env, jobject obj,
@@ -33753,13 +33753,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameteriSGIX ( GLuint , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glListParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -33786,13 +33786,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterivSGIX ( GLuint , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexMaterialEXT (
JNIEnv *env, jobject obj,
@@ -33808,13 +33808,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexFuncEXT (
JNIEnv *env, jobject obj,
@@ -33830,13 +33830,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexFuncEXT ( GLenum , GLclampf ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCullParameterdvEXT (
JNIEnv *env, jobject obj,
@@ -33862,13 +33862,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterdvEXT ( GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCullParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -33894,13 +33894,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterfvEXT ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentColorMaterialSGIX (
JNIEnv *env, jobject obj,
@@ -33916,13 +33916,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentColorMaterialSGIX ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentLightfSGIX (
JNIEnv *env, jobject obj,
@@ -33940,13 +33940,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentLightfvSGIX (
JNIEnv *env, jobject obj,
@@ -33973,13 +33973,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentLightiSGIX (
JNIEnv *env, jobject obj,
@@ -33997,13 +33997,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentLightivSGIX (
JNIEnv *env, jobject obj,
@@ -34030,13 +34030,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentLightModelfSGIX (
JNIEnv *env, jobject obj,
@@ -34052,13 +34052,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentLightModelfvSGIX (
JNIEnv *env, jobject obj,
@@ -34083,13 +34083,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentLightModeliSGIX (
JNIEnv *env, jobject obj,
@@ -34105,13 +34105,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModeliSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentLightModelivSGIX (
JNIEnv *env, jobject obj,
@@ -34136,13 +34136,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentMaterialfSGIX (
JNIEnv *env, jobject obj,
@@ -34160,13 +34160,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentMaterialfvSGIX (
JNIEnv *env, jobject obj,
@@ -34193,13 +34193,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentMaterialiSGIX (
JNIEnv *env, jobject obj,
@@ -34217,13 +34217,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentMaterialivSGIX (
JNIEnv *env, jobject obj,
@@ -34250,13 +34250,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetFragmentLightfvSGIX (
JNIEnv *env, jobject obj,
@@ -34284,13 +34284,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetFragmentLightivSGIX (
JNIEnv *env, jobject obj,
@@ -34318,13 +34318,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetFragmentMaterialfvSGIX (
JNIEnv *env, jobject obj,
@@ -34352,13 +34352,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetFragmentMaterialivSGIX (
JNIEnv *env, jobject obj,
@@ -34386,13 +34386,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLightEnviSGIX (
JNIEnv *env, jobject obj,
@@ -34408,13 +34408,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightEnviSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDrawRangeElementsEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -34672,13 +34672,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElementsEXT ( GLenum , GLuint , GLuint , GLsizei , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glApplyTextureEXT (
JNIEnv *env, jobject obj,
@@ -34692,13 +34692,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glApplyTextureEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTextureLightEXT (
JNIEnv *env, jobject obj,
@@ -34712,13 +34712,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureLightEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTextureMaterialEXT (
JNIEnv *env, jobject obj,
@@ -34734,13 +34734,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glAsyncMarkerSGIX (
JNIEnv *env, jobject obj,
@@ -34754,13 +34754,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glFinishAsyncSGIX (
JNIEnv *env, jobject obj,
@@ -34787,13 +34787,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glFinishAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glPollAsyncSGIX (
JNIEnv *env, jobject obj,
@@ -34820,13 +34820,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glGenAsyncMarkersSGIX (
JNIEnv *env, jobject obj,
@@ -34843,13 +34843,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenAsyncMarkersSGIX ( GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeleteAsyncMarkersSGIX (
JNIEnv *env, jobject obj,
@@ -34865,13 +34865,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteAsyncMarkersSGIX ( GLuint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glIsAsyncMarkerSGIX (
JNIEnv *env, jobject obj,
@@ -34888,13 +34888,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -35077,13 +35077,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalPointervINTEL__I_3_3B (
JNIEnv *env, jobject obj,
@@ -35252,13 +35252,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointervINTEL ( GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -35441,13 +35441,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoordPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -35630,13 +35630,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTransformParameteriEXT (
JNIEnv *env, jobject obj,
@@ -35654,13 +35654,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTransformParameterfEXT (
JNIEnv *env, jobject obj,
@@ -35678,13 +35678,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTransformParameterivEXT (
JNIEnv *env, jobject obj,
@@ -35711,13 +35711,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTransformParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -35744,13 +35744,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3bEXT (
JNIEnv *env, jobject obj,
@@ -35768,13 +35768,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3bvEXT (
JNIEnv *env, jobject obj,
@@ -35797,13 +35797,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3dEXT (
JNIEnv *env, jobject obj,
@@ -35821,13 +35821,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3dvEXT (
JNIEnv *env, jobject obj,
@@ -35850,13 +35850,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3fEXT (
JNIEnv *env, jobject obj,
@@ -35874,13 +35874,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3fvEXT (
JNIEnv *env, jobject obj,
@@ -35903,13 +35903,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3iEXT (
JNIEnv *env, jobject obj,
@@ -35927,13 +35927,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3ivEXT (
JNIEnv *env, jobject obj,
@@ -35956,13 +35956,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3sEXT (
JNIEnv *env, jobject obj,
@@ -35980,13 +35980,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3svEXT (
JNIEnv *env, jobject obj,
@@ -36009,13 +36009,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3ubEXT (
JNIEnv *env, jobject obj,
@@ -36033,13 +36033,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubEXT ( GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3ubvEXT (
JNIEnv *env, jobject obj,
@@ -36062,13 +36062,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubvEXT ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3uiEXT (
JNIEnv *env, jobject obj,
@@ -36086,13 +36086,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uiEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3uivEXT (
JNIEnv *env, jobject obj,
@@ -36115,13 +36115,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uivEXT ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3usEXT (
JNIEnv *env, jobject obj,
@@ -36139,13 +36139,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usEXT ( GLushort , GLushort , GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3usvEXT (
JNIEnv *env, jobject obj,
@@ -36168,13 +36168,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usvEXT ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColorPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -36400,13 +36400,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerEXT ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTextureNormalEXT (
JNIEnv *env, jobject obj,
@@ -36420,13 +36420,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureNormalEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiDrawArraysEXT (
JNIEnv *env, jobject obj,
@@ -36466,13 +36466,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawArraysEXT ( GLenum , GLint * , GLsizei * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiDrawElementsEXT__I_3II_3_3BI (
JNIEnv *env, jobject obj,
@@ -36746,13 +36746,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawElementsEXT ( GLenum , const GLsizei * , GLenum , const GLvoid * * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogCoordfEXT (
JNIEnv *env, jobject obj,
@@ -36766,13 +36766,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogCoordfvEXT (
JNIEnv *env, jobject obj,
@@ -36795,13 +36795,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogCoorddEXT (
JNIEnv *env, jobject obj,
@@ -36815,13 +36815,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddEXT ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogCoorddvEXT (
JNIEnv *env, jobject obj,
@@ -36844,13 +36844,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogCoordPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -37060,13 +37060,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3bEXT (
JNIEnv *env, jobject obj,
@@ -37084,13 +37084,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3bvEXT (
JNIEnv *env, jobject obj,
@@ -37113,13 +37113,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3dEXT (
JNIEnv *env, jobject obj,
@@ -37137,13 +37137,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3dvEXT (
JNIEnv *env, jobject obj,
@@ -37166,13 +37166,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3fEXT (
JNIEnv *env, jobject obj,
@@ -37190,13 +37190,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3fvEXT (
JNIEnv *env, jobject obj,
@@ -37219,13 +37219,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3iEXT (
JNIEnv *env, jobject obj,
@@ -37243,13 +37243,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3ivEXT (
JNIEnv *env, jobject obj,
@@ -37272,13 +37272,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3sEXT (
JNIEnv *env, jobject obj,
@@ -37296,13 +37296,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3svEXT (
JNIEnv *env, jobject obj,
@@ -37325,13 +37325,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3bEXT (
JNIEnv *env, jobject obj,
@@ -37349,13 +37349,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3bvEXT (
JNIEnv *env, jobject obj,
@@ -37378,13 +37378,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3dEXT (
JNIEnv *env, jobject obj,
@@ -37402,13 +37402,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3dvEXT (
JNIEnv *env, jobject obj,
@@ -37431,13 +37431,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3fEXT (
JNIEnv *env, jobject obj,
@@ -37455,13 +37455,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3fvEXT (
JNIEnv *env, jobject obj,
@@ -37484,13 +37484,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3iEXT (
JNIEnv *env, jobject obj,
@@ -37508,13 +37508,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3ivEXT (
JNIEnv *env, jobject obj,
@@ -37537,13 +37537,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3sEXT (
JNIEnv *env, jobject obj,
@@ -37561,13 +37561,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3svEXT (
JNIEnv *env, jobject obj,
@@ -37590,13 +37590,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangentPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -37806,13 +37806,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangentPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormalPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -38022,13 +38022,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormalPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFinishTextureSUNX (
JNIEnv *env, jobject obj)
@@ -38040,13 +38040,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishTextureSUNX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGlobalAlphaFactorbSUN (
JNIEnv *env, jobject obj,
@@ -38060,13 +38060,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorbSUN ( GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGlobalAlphaFactorsSUN (
JNIEnv *env, jobject obj,
@@ -38080,13 +38080,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorsSUN ( GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGlobalAlphaFactoriSUN (
JNIEnv *env, jobject obj,
@@ -38100,13 +38100,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoriSUN ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGlobalAlphaFactorfSUN (
JNIEnv *env, jobject obj,
@@ -38120,13 +38120,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorfSUN ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGlobalAlphaFactordSUN (
JNIEnv *env, jobject obj,
@@ -38140,13 +38140,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactordSUN ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGlobalAlphaFactorubSUN (
JNIEnv *env, jobject obj,
@@ -38160,13 +38160,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGlobalAlphaFactorusSUN (
JNIEnv *env, jobject obj,
@@ -38180,13 +38180,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGlobalAlphaFactoruiSUN (
JNIEnv *env, jobject obj,
@@ -38200,13 +38200,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoruiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiSUN (
JNIEnv *env, jobject obj,
@@ -38220,13 +38220,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeusSUN (
JNIEnv *env, jobject obj,
@@ -38240,13 +38240,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeubSUN (
JNIEnv *env, jobject obj,
@@ -38260,13 +38260,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuivSUN (
JNIEnv *env, jobject obj,
@@ -38289,13 +38289,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuivSUN ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeusvSUN (
JNIEnv *env, jobject obj,
@@ -38318,13 +38318,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusvSUN ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeubvSUN (
JNIEnv *env, jobject obj,
@@ -38347,13 +38347,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubvSUN ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodePointerSUN__II_3_3B (
JNIEnv *env, jobject obj,
@@ -38536,13 +38536,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodePointerSUN ( GLenum , GLsizei , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4ubVertex2fSUN (
JNIEnv *env, jobject obj,
@@ -38566,13 +38566,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4ubVertex2fvSUN (
JNIEnv *env, jobject obj,
@@ -38606,13 +38606,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -38638,13 +38638,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -38678,13 +38678,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -38708,13 +38708,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -38748,13 +38748,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -38778,13 +38778,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -38818,13 +38818,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -38856,13 +38856,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -38907,13 +38907,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -38935,13 +38935,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -38975,13 +38975,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4fVertex4fSUN (
JNIEnv *env, jobject obj,
@@ -39009,13 +39009,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4fVertex4fvSUN (
JNIEnv *env, jobject obj,
@@ -39049,13 +39049,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39085,13 +39085,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fSUN ( GLfloat , GLfloat , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39136,13 +39136,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fvSUN ( const GLfloat * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39170,13 +39170,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39221,13 +39221,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39255,13 +39255,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39306,13 +39306,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39348,13 +39348,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39410,13 +39410,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4fColor4fNormal3fVertex4fSUN (
JNIEnv *env, jobject obj,
@@ -39458,13 +39458,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4fColor4fNormal3fVertex4fvSUN (
JNIEnv *env, jobject obj,
@@ -39520,13 +39520,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39546,13 +39546,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39586,13 +39586,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fvSUN ( const GLenum * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39620,13 +39620,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fSUN ( GLenum , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39671,13 +39671,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fvSUN ( const GLenum * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39703,13 +39703,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39754,13 +39754,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39786,13 +39786,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39837,13 +39837,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39877,13 +39877,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39939,13 +39939,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiTexCoord2fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39969,13 +39969,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiTexCoord2fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -40020,13 +40020,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -40056,13 +40056,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -40118,13 +40118,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -40162,13 +40162,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -40235,13 +40235,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBlendFuncSeparateEXT (
JNIEnv *env, jobject obj,
@@ -40261,13 +40261,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateEXT ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBlendFuncSeparateINGR (
JNIEnv *env, jobject obj,
@@ -40287,13 +40287,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateINGR ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexWeightfEXT (
JNIEnv *env, jobject obj,
@@ -40307,13 +40307,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexWeightfvEXT (
JNIEnv *env, jobject obj,
@@ -40336,13 +40336,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexWeightPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -40568,13 +40568,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightPointerEXT ( GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFlushVertexArrayRangeNV (
JNIEnv *env, jobject obj)
@@ -40586,13 +40586,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushVertexArrayRangeNV ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexArrayRangeNV__I_3B (
JNIEnv *env, jobject obj,
@@ -40786,13 +40786,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexArrayRangeNV ( GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCombinerParameterfvNV (
JNIEnv *env, jobject obj,
@@ -40817,13 +40817,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfvNV ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCombinerParameterfNV (
JNIEnv *env, jobject obj,
@@ -40839,13 +40839,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfNV ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCombinerParameterivNV (
JNIEnv *env, jobject obj,
@@ -40870,13 +40870,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterivNV ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCombinerParameteriNV (
JNIEnv *env, jobject obj,
@@ -40892,13 +40892,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameteriNV ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCombinerInputNV (
JNIEnv *env, jobject obj,
@@ -40922,13 +40922,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerInputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCombinerOutputNV (
JNIEnv *env, jobject obj,
@@ -40960,13 +40960,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerOutputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFinalCombinerInputNV (
JNIEnv *env, jobject obj,
@@ -40986,13 +40986,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinalCombinerInputNV ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetCombinerInputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41024,13 +41024,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterfvNV ( GLenum , GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetCombinerInputParameterivNV (
JNIEnv *env, jobject obj,
@@ -41062,13 +41062,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterivNV ( GLenum , GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetCombinerOutputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41098,13 +41098,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterfvNV ( GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetCombinerOutputParameterivNV (
JNIEnv *env, jobject obj,
@@ -41134,13 +41134,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterivNV ( GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetFinalCombinerInputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41168,13 +41168,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetFinalCombinerInputParameterivNV (
JNIEnv *env, jobject obj,
@@ -41202,13 +41202,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiModeDrawArraysIBM (
JNIEnv *env, jobject obj,
@@ -41248,13 +41248,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawArraysIBM ( GLenum , const GLint * , const GLsizei * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiModeDrawElementsIBM___3I_3II_3_3BII (
JNIEnv *env, jobject obj,
@@ -41605,13 +41605,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawElementsIBM ( const GLenum * , const GLsizei * , GLenum , const GLvoid * * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -41822,13 +41822,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColorPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -42039,13 +42039,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEdgeFlagPointerListIBM (
JNIEnv *env, jobject obj,
@@ -42072,13 +42072,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerListIBM ( GLint , const GLboolean * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogCoordPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -42275,13 +42275,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -42478,13 +42478,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -42681,13 +42681,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoordPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -42898,13 +42898,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -43115,13 +43115,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTbufferMask3DFX (
JNIEnv *env, jobject obj,
@@ -43135,13 +43135,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTbufferMask3DFX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSampleMaskEXT (
JNIEnv *env, jobject obj,
@@ -43157,13 +43157,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskEXT ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSamplePatternEXT (
JNIEnv *env, jobject obj,
@@ -43177,13 +43177,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTextureColorMaskSGIS (
JNIEnv *env, jobject obj,
@@ -43203,13 +43203,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureColorMaskSGIS ( GLboolean , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIglooInterfaceSGIX__I_3B (
JNIEnv *env, jobject obj,
@@ -43403,13 +43403,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIglooInterfaceSGIX ( GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGenFencesNV (
JNIEnv *env, jobject obj,
@@ -43435,13 +43435,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenFencesNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeleteFencesNV (
JNIEnv *env, jobject obj,
@@ -43466,13 +43466,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFencesNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSetFenceNV (
JNIEnv *env, jobject obj,
@@ -43488,13 +43488,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFenceNV ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glTestFenceNV (
JNIEnv *env, jobject obj,
@@ -43511,13 +43511,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glTestFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFinishFenceNV (
JNIEnv *env, jobject obj,
@@ -43531,13 +43531,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glIsFenceNV (
JNIEnv *env, jobject obj,
@@ -43554,13 +43554,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetFenceivNV (
JNIEnv *env, jobject obj,
@@ -43588,13 +43588,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFenceivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMapControlPointsNV__IIIIIIIZ_3B (
JNIEnv *env, jobject obj,
@@ -43900,13 +43900,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLint , GLint , GLboolean , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMapParameterivNV (
JNIEnv *env, jobject obj,
@@ -43933,13 +43933,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterivNV ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMapParameterfvNV (
JNIEnv *env, jobject obj,
@@ -43966,13 +43966,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMapControlPointsNV__IIIIIZ_3B (
JNIEnv *env, jobject obj,
@@ -44253,13 +44253,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLboolean , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMapParameterivNV (
JNIEnv *env, jobject obj,
@@ -44287,13 +44287,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMapParameterfvNV (
JNIEnv *env, jobject obj,
@@ -44321,13 +44321,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMapAttribParameterivNV (
JNIEnv *env, jobject obj,
@@ -44357,13 +44357,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMapAttribParameterfvNV (
JNIEnv *env, jobject obj,
@@ -44393,13 +44393,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalMapsNV (
JNIEnv *env, jobject obj,
@@ -44415,13 +44415,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMapsNV ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCombinerStageParameterfvNV (
JNIEnv *env, jobject obj,
@@ -44448,13 +44448,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerStageParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetCombinerStageParameterfvNV (
JNIEnv *env, jobject obj,
@@ -44482,13 +44482,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerStageParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBindProgramNV (
JNIEnv *env, jobject obj,
@@ -44504,13 +44504,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindProgramNV ( GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeleteProgramsNV (
JNIEnv *env, jobject obj,
@@ -44535,13 +44535,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glExecuteProgramNV (
JNIEnv *env, jobject obj,
@@ -44568,13 +44568,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glExecuteProgramNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGenProgramsNV (
JNIEnv *env, jobject obj,
@@ -44600,13 +44600,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenProgramsNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glAreProgramsResidentNV (
JNIEnv *env, jobject obj,
@@ -44646,13 +44646,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreProgramsResidentNV ( GLsizei , const GLuint * , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRequestResidentProgramsNV (
JNIEnv *env, jobject obj,
@@ -44677,13 +44677,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRequestResidentProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetProgramParameterfvNV (
JNIEnv *env, jobject obj,
@@ -44713,13 +44713,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetProgramParameterdvNV (
JNIEnv *env, jobject obj,
@@ -44749,13 +44749,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterdvNV ( GLenum , GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetProgramivNV (
JNIEnv *env, jobject obj,
@@ -44783,13 +44783,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetProgramStringNV (
JNIEnv *env, jobject obj,
@@ -44817,13 +44817,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramStringNV ( GLuint , GLenum , GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTrackMatrixivNV (
JNIEnv *env, jobject obj,
@@ -44853,13 +44853,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTrackMatrixivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVertexAttribdvNV (
JNIEnv *env, jobject obj,
@@ -44887,13 +44887,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribdvNV ( GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVertexAttribfvNV (
JNIEnv *env, jobject obj,
@@ -44921,13 +44921,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribfvNV ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVertexAttribivNV (
JNIEnv *env, jobject obj,
@@ -44955,13 +44955,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVertexAttribPointervNV__II_3_3B (
JNIEnv *env, jobject obj,
@@ -45151,13 +45151,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribPointervNV ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glIsProgramNV (
JNIEnv *env, jobject obj,
@@ -45174,13 +45174,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsProgramNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadProgramNV (
JNIEnv *env, jobject obj,
@@ -45209,13 +45209,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadProgramNV ( GLenum , GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glProgramParameter4fNV (
JNIEnv *env, jobject obj,
@@ -45239,13 +45239,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fNV ( GLenum , GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glProgramParameter4dNV (
JNIEnv *env, jobject obj,
@@ -45269,13 +45269,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dNV ( GLenum , GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glProgramParameter4dvNV (
JNIEnv *env, jobject obj,
@@ -45302,13 +45302,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dvNV ( GLenum , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glProgramParameter4fvNV (
JNIEnv *env, jobject obj,
@@ -45335,13 +45335,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fvNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glProgramParameters4dvNV (
JNIEnv *env, jobject obj,
@@ -45370,13 +45370,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4dvNV ( GLenum , GLuint , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glProgramParameters4fvNV (
JNIEnv *env, jobject obj,
@@ -45405,13 +45405,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4fvNV ( GLenum , GLuint , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTrackMatrixNV (
JNIEnv *env, jobject obj,
@@ -45431,13 +45431,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTrackMatrixNV ( GLenum , GLuint , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribPointerNV__IIII_3B (
JNIEnv *env, jobject obj,
@@ -45679,13 +45679,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribPointerNV ( GLuint , GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib1sNV (
JNIEnv *env, jobject obj,
@@ -45701,13 +45701,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1sNV ( GLuint , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib1fNV (
JNIEnv *env, jobject obj,
@@ -45723,13 +45723,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fNV ( GLuint , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib1dNV (
JNIEnv *env, jobject obj,
@@ -45745,13 +45745,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dNV ( GLuint , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib2sNV (
JNIEnv *env, jobject obj,
@@ -45769,13 +45769,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2sNV ( GLuint , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib2fNV (
JNIEnv *env, jobject obj,
@@ -45793,13 +45793,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fNV ( GLuint , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib2dNV (
JNIEnv *env, jobject obj,
@@ -45817,13 +45817,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dNV ( GLuint , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib3sNV (
JNIEnv *env, jobject obj,
@@ -45843,13 +45843,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3sNV ( GLuint , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib3fNV (
JNIEnv *env, jobject obj,
@@ -45869,13 +45869,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fNV ( GLuint , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib3dNV (
JNIEnv *env, jobject obj,
@@ -45895,13 +45895,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dNV ( GLuint , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib4sNV (
JNIEnv *env, jobject obj,
@@ -45923,13 +45923,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4sNV ( GLuint , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib4fNV (
JNIEnv *env, jobject obj,
@@ -45951,13 +45951,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fNV ( GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib4dNV (
JNIEnv *env, jobject obj,
@@ -45979,13 +45979,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dNV ( GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib4ubNV (
JNIEnv *env, jobject obj,
@@ -46007,13 +46007,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubNV ( GLuint , GLubyte , GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib1svNV (
JNIEnv *env, jobject obj,
@@ -46038,13 +46038,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib1fvNV (
JNIEnv *env, jobject obj,
@@ -46069,13 +46069,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib1dvNV (
JNIEnv *env, jobject obj,
@@ -46100,13 +46100,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib2svNV (
JNIEnv *env, jobject obj,
@@ -46131,13 +46131,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib2fvNV (
JNIEnv *env, jobject obj,
@@ -46162,13 +46162,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib2dvNV (
JNIEnv *env, jobject obj,
@@ -46193,13 +46193,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib3svNV (
JNIEnv *env, jobject obj,
@@ -46224,13 +46224,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib3fvNV (
JNIEnv *env, jobject obj,
@@ -46255,13 +46255,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib3dvNV (
JNIEnv *env, jobject obj,
@@ -46286,13 +46286,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib4svNV (
JNIEnv *env, jobject obj,
@@ -46317,13 +46317,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib4fvNV (
JNIEnv *env, jobject obj,
@@ -46348,13 +46348,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib4dvNV (
JNIEnv *env, jobject obj,
@@ -46379,13 +46379,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib4ubvNV (
JNIEnv *env, jobject obj,
@@ -46410,13 +46410,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubvNV ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs1svNV (
JNIEnv *env, jobject obj,
@@ -46443,13 +46443,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs1fvNV (
JNIEnv *env, jobject obj,
@@ -46476,13 +46476,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs1dvNV (
JNIEnv *env, jobject obj,
@@ -46509,13 +46509,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs2svNV (
JNIEnv *env, jobject obj,
@@ -46542,13 +46542,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs2fvNV (
JNIEnv *env, jobject obj,
@@ -46575,13 +46575,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs2dvNV (
JNIEnv *env, jobject obj,
@@ -46608,13 +46608,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs3svNV (
JNIEnv *env, jobject obj,
@@ -46641,13 +46641,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs3fvNV (
JNIEnv *env, jobject obj,
@@ -46674,13 +46674,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs3dvNV (
JNIEnv *env, jobject obj,
@@ -46707,13 +46707,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs4svNV (
JNIEnv *env, jobject obj,
@@ -46740,13 +46740,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs4fvNV (
JNIEnv *env, jobject obj,
@@ -46773,13 +46773,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs4dvNV (
JNIEnv *env, jobject obj,
@@ -46806,13 +46806,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs4ubvNV (
JNIEnv *env, jobject obj,
@@ -46839,13 +46839,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4ubvNV ( GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexBumpParameterivATI (
JNIEnv *env, jobject obj,
@@ -46870,13 +46870,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterivATI ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexBumpParameterfvATI (
JNIEnv *env, jobject obj,
@@ -46901,13 +46901,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterfvATI ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexBumpParameterivATI (
JNIEnv *env, jobject obj,
@@ -46933,13 +46933,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterivATI ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexBumpParameterfvATI (
JNIEnv *env, jobject obj,
@@ -46965,13 +46965,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterfvATI ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glGenFragmentShadersATI (
JNIEnv *env, jobject obj,
@@ -46988,13 +46988,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenFragmentShadersATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBindFragmentShaderATI (
JNIEnv *env, jobject obj,
@@ -47008,13 +47008,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeleteFragmentShaderATI (
JNIEnv *env, jobject obj,
@@ -47028,13 +47028,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBeginFragmentShaderATI (
JNIEnv *env, jobject obj)
@@ -47046,13 +47046,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEndFragmentShaderATI (
JNIEnv *env, jobject obj)
@@ -47064,13 +47064,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPassTexCoordATI (
JNIEnv *env, jobject obj,
@@ -47088,13 +47088,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPassTexCoordATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSampleMapATI (
JNIEnv *env, jobject obj,
@@ -47112,13 +47112,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMapATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorFragmentOp1ATI (
JNIEnv *env, jobject obj,
@@ -47144,13 +47144,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorFragmentOp2ATI (
JNIEnv *env, jobject obj,
@@ -47182,13 +47182,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorFragmentOp3ATI (
JNIEnv *env, jobject obj,
@@ -47226,13 +47226,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glAlphaFragmentOp1ATI (
JNIEnv *env, jobject obj,
@@ -47256,13 +47256,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glAlphaFragmentOp2ATI (
JNIEnv *env, jobject obj,
@@ -47292,13 +47292,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glAlphaFragmentOp3ATI (
JNIEnv *env, jobject obj,
@@ -47334,13 +47334,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSetFragmentShaderConstantATI (
JNIEnv *env, jobject obj,
@@ -47365,13 +47365,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFragmentShaderConstantATI ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPNTrianglesiATI (
JNIEnv *env, jobject obj,
@@ -47387,13 +47387,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesiATI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPNTrianglesfATI (
JNIEnv *env, jobject obj,
@@ -47409,13 +47409,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesfATI ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glNewObjectBufferATI__I_3BI (
JNIEnv *env, jobject obj,
@@ -47649,13 +47649,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glNewObjectBufferATI ( GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glIsObjectBufferATI (
JNIEnv *env, jobject obj,
@@ -47672,13 +47672,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glUpdateObjectBufferATI__III_3BI (
JNIEnv *env, jobject obj,
@@ -47920,13 +47920,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glUpdateObjectBufferATI ( GLuint , GLuint , GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetObjectBufferfvATI (
JNIEnv *env, jobject obj,
@@ -47954,13 +47954,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetObjectBufferivATI (
JNIEnv *env, jobject obj,
@@ -47988,13 +47988,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeleteObjectBufferATI (
JNIEnv *env, jobject obj,
@@ -48008,13 +48008,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glArrayObjectATI (
JNIEnv *env, jobject obj,
@@ -48038,13 +48038,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayObjectATI ( GLenum , GLint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetArrayObjectfvATI (
JNIEnv *env, jobject obj,
@@ -48072,13 +48072,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectfvATI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetArrayObjectivATI (
JNIEnv *env, jobject obj,
@@ -48106,13 +48106,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectivATI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantArrayObjectATI (
JNIEnv *env, jobject obj,
@@ -48134,13 +48134,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantArrayObjectATI ( GLuint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVariantArrayObjectfvATI (
JNIEnv *env, jobject obj,
@@ -48168,13 +48168,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVariantArrayObjectivATI (
JNIEnv *env, jobject obj,
@@ -48202,13 +48202,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBeginVertexShaderEXT (
JNIEnv *env, jobject obj)
@@ -48220,13 +48220,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEndVertexShaderEXT (
JNIEnv *env, jobject obj)
@@ -48238,13 +48238,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBindVertexShaderEXT (
JNIEnv *env, jobject obj,
@@ -48258,13 +48258,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glGenVertexShadersEXT (
JNIEnv *env, jobject obj,
@@ -48281,13 +48281,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenVertexShadersEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeleteVertexShaderEXT (
JNIEnv *env, jobject obj,
@@ -48301,13 +48301,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glShaderOp1EXT (
JNIEnv *env, jobject obj,
@@ -48325,13 +48325,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp1EXT ( GLenum , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glShaderOp2EXT (
JNIEnv *env, jobject obj,
@@ -48351,13 +48351,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp2EXT ( GLenum , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glShaderOp3EXT (
JNIEnv *env, jobject obj,
@@ -48379,13 +48379,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp3EXT ( GLenum , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSwizzleEXT (
JNIEnv *env, jobject obj,
@@ -48409,13 +48409,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSwizzleEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWriteMaskEXT (
JNIEnv *env, jobject obj,
@@ -48439,13 +48439,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWriteMaskEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glInsertComponentEXT (
JNIEnv *env, jobject obj,
@@ -48463,13 +48463,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInsertComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glExtractComponentEXT (
JNIEnv *env, jobject obj,
@@ -48487,13 +48487,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glExtractComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glGenSymbolsEXT (
JNIEnv *env, jobject obj,
@@ -48516,13 +48516,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenSymbolsEXT ( GLenum , GLenum , GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSetInvariantEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -48732,13 +48732,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetInvariantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSetLocalConstantEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -48948,13 +48948,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetLocalConstantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantbvEXT (
JNIEnv *env, jobject obj,
@@ -48979,13 +48979,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantbvEXT ( GLuint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantsvEXT (
JNIEnv *env, jobject obj,
@@ -49010,13 +49010,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantsvEXT ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantivEXT (
JNIEnv *env, jobject obj,
@@ -49041,13 +49041,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantivEXT ( GLuint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantfvEXT (
JNIEnv *env, jobject obj,
@@ -49072,13 +49072,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantfvEXT ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantdvEXT (
JNIEnv *env, jobject obj,
@@ -49103,13 +49103,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantdvEXT ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantubvEXT (
JNIEnv *env, jobject obj,
@@ -49134,13 +49134,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantubvEXT ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantusvEXT (
JNIEnv *env, jobject obj,
@@ -49165,13 +49165,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantusvEXT ( GLuint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantuivEXT (
JNIEnv *env, jobject obj,
@@ -49196,13 +49196,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantuivEXT ( GLuint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -49428,13 +49428,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantPointerEXT ( GLuint , GLenum , GLuint , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEnableVariantClientStateEXT (
JNIEnv *env, jobject obj,
@@ -49448,13 +49448,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDisableVariantClientStateEXT (
JNIEnv *env, jobject obj,
@@ -49468,13 +49468,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glBindLightParameterEXT (
JNIEnv *env, jobject obj,
@@ -49493,13 +49493,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindLightParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glBindMaterialParameterEXT (
JNIEnv *env, jobject obj,
@@ -49518,13 +49518,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindMaterialParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glBindTexGenParameterEXT (
JNIEnv *env, jobject obj,
@@ -49545,13 +49545,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTexGenParameterEXT ( GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glBindTextureUnitParameterEXT (
JNIEnv *env, jobject obj,
@@ -49570,13 +49570,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTextureUnitParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glBindParameterEXT (
JNIEnv *env, jobject obj,
@@ -49593,13 +49593,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindParameterEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glIsVariantEnabledEXT (
JNIEnv *env, jobject obj,
@@ -49618,13 +49618,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsVariantEnabledEXT ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVariantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -49652,13 +49652,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVariantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -49686,13 +49686,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVariantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -49720,13 +49720,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVariantPointervEXT__II_3_3B (
JNIEnv *env, jobject obj,
@@ -49916,13 +49916,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantPointervEXT ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetInvariantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -49950,13 +49950,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetInvariantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -49984,13 +49984,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetInvariantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -50018,13 +50018,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetLocalConstantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -50052,13 +50052,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetLocalConstantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -50086,13 +50086,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetLocalConstantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -50120,13 +50120,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream1s (
JNIEnv *env, jobject obj,
@@ -50142,13 +50142,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1s ( GLenum , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream1sv (
JNIEnv *env, jobject obj,
@@ -50173,13 +50173,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream1i (
JNIEnv *env, jobject obj,
@@ -50195,13 +50195,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1i ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream1iv (
JNIEnv *env, jobject obj,
@@ -50226,13 +50226,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream1f (
JNIEnv *env, jobject obj,
@@ -50248,13 +50248,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1f ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream1fv (
JNIEnv *env, jobject obj,
@@ -50279,13 +50279,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream1d (
JNIEnv *env, jobject obj,
@@ -50301,13 +50301,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1d ( GLenum , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream1dv (
JNIEnv *env, jobject obj,
@@ -50332,13 +50332,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream2s (
JNIEnv *env, jobject obj,
@@ -50356,13 +50356,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2s ( GLenum , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream2sv (
JNIEnv *env, jobject obj,
@@ -50387,13 +50387,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream2i (
JNIEnv *env, jobject obj,
@@ -50411,13 +50411,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2i ( GLenum , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream2iv (
JNIEnv *env, jobject obj,
@@ -50442,13 +50442,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream2f (
JNIEnv *env, jobject obj,
@@ -50466,13 +50466,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2f ( GLenum , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream2fv (
JNIEnv *env, jobject obj,
@@ -50497,13 +50497,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream2d (
JNIEnv *env, jobject obj,
@@ -50521,13 +50521,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2d ( GLenum , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream2dv (
JNIEnv *env, jobject obj,
@@ -50552,13 +50552,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream3s (
JNIEnv *env, jobject obj,
@@ -50578,13 +50578,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream3sv (
JNIEnv *env, jobject obj,
@@ -50609,13 +50609,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream3i (
JNIEnv *env, jobject obj,
@@ -50635,13 +50635,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream3iv (
JNIEnv *env, jobject obj,
@@ -50666,13 +50666,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream3f (
JNIEnv *env, jobject obj,
@@ -50692,13 +50692,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream3fv (
JNIEnv *env, jobject obj,
@@ -50723,13 +50723,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream3d (
JNIEnv *env, jobject obj,
@@ -50749,13 +50749,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream3dv (
JNIEnv *env, jobject obj,
@@ -50780,13 +50780,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream4s (
JNIEnv *env, jobject obj,
@@ -50808,13 +50808,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4s ( GLenum , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream4sv (
JNIEnv *env, jobject obj,
@@ -50839,13 +50839,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream4i (
JNIEnv *env, jobject obj,
@@ -50867,13 +50867,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4i ( GLenum , GLint , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream4iv (
JNIEnv *env, jobject obj,
@@ -50898,13 +50898,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream4f (
JNIEnv *env, jobject obj,
@@ -50926,13 +50926,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4f ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream4fv (
JNIEnv *env, jobject obj,
@@ -50957,13 +50957,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream4d (
JNIEnv *env, jobject obj,
@@ -50985,13 +50985,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4d ( GLenum , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream4dv (
JNIEnv *env, jobject obj,
@@ -51016,13 +51016,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3b (
JNIEnv *env, jobject obj,
@@ -51042,13 +51042,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3b ( GLenum , GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3bv (
JNIEnv *env, jobject obj,
@@ -51073,13 +51073,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3bv ( GLenum , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3s (
JNIEnv *env, jobject obj,
@@ -51099,13 +51099,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3sv (
JNIEnv *env, jobject obj,
@@ -51130,13 +51130,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3i (
JNIEnv *env, jobject obj,
@@ -51156,13 +51156,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3iv (
JNIEnv *env, jobject obj,
@@ -51187,13 +51187,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3f (
JNIEnv *env, jobject obj,
@@ -51213,13 +51213,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3fv (
JNIEnv *env, jobject obj,
@@ -51244,13 +51244,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3d (
JNIEnv *env, jobject obj,
@@ -51270,13 +51270,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3dv (
JNIEnv *env, jobject obj,
@@ -51301,13 +51301,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClientActiveVertexStream (
JNIEnv *env, jobject obj,
@@ -51321,13 +51321,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveVertexStream ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexBlendEnvi (
JNIEnv *env, jobject obj,
@@ -51343,13 +51343,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvi ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexBlendEnvf (
JNIEnv *env, jobject obj,
@@ -51365,5 +51365,5 @@
);
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/C2J/gl-proto-dynauto-tst-jni12.c b/C2J/gl-proto-dynauto-tst-jni12.c
index ee7ad40..d0ac1f9 100644
--- a/C2J/gl-proto-dynauto-tst-jni12.c
+++ b/C2J/gl-proto-dynauto-tst-jni12.c
@@ -4,13 +4,13 @@
* Reading from file: gl-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvf ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearIndex (
JNIEnv *env, jobject obj,
@@ -24,13 +24,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearIndex ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearColor (
JNIEnv *env, jobject obj,
@@ -50,13 +50,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClear (
JNIEnv *env, jobject obj,
@@ -70,13 +70,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClear ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexMask (
JNIEnv *env, jobject obj,
@@ -90,13 +90,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorMask (
JNIEnv *env, jobject obj,
@@ -116,13 +116,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMask ( GLboolean red , GLboolean green , GLboolean blue , GLboolean alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFunc (
JNIEnv *env, jobject obj,
@@ -138,13 +138,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFunc ( GLenum func , GLclampf ref ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendFunc (
JNIEnv *env, jobject obj,
@@ -160,13 +160,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFunc ( GLenum sfactor , GLenum dfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLogicOp (
JNIEnv *env, jobject obj,
@@ -180,13 +180,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLogicOp ( GLenum opcode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCullFace (
JNIEnv *env, jobject obj,
@@ -200,13 +200,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFrontFace (
JNIEnv *env, jobject obj,
@@ -220,13 +220,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrontFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointSize (
JNIEnv *env, jobject obj,
@@ -240,13 +240,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointSize ( GLfloat size ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLineWidth (
JNIEnv *env, jobject obj,
@@ -260,13 +260,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLineWidth ( GLfloat width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLineStipple (
JNIEnv *env, jobject obj,
@@ -282,13 +282,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLineStipple ( GLint factor , GLushort pattern ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonMode (
JNIEnv *env, jobject obj,
@@ -304,13 +304,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonMode ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonOffset (
JNIEnv *env, jobject obj,
@@ -326,13 +326,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffset ( GLfloat factor , GLfloat units ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonStipple (
JNIEnv *env, jobject obj,
@@ -361,13 +361,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, mask, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonStipple ( const GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPolygonStipple (
JNIEnv *env, jobject obj,
@@ -396,13 +396,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, mask, ptr0, (isCopiedArray0 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPolygonStipple ( GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlag (
JNIEnv *env, jobject obj,
@@ -416,13 +416,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlag ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagv (
JNIEnv *env, jobject obj,
@@ -451,13 +451,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, flag, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagv ( const GLboolean * flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glScissor (
JNIEnv *env, jobject obj,
@@ -477,13 +477,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScissor ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClipPlane (
JNIEnv *env, jobject obj,
@@ -514,13 +514,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, equation, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClipPlane ( GLenum plane , const GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetClipPlane (
JNIEnv *env, jobject obj,
@@ -551,13 +551,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, equation, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetClipPlane ( GLenum plane , GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawBuffer (
JNIEnv *env, jobject obj,
@@ -571,13 +571,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReadBuffer (
JNIEnv *env, jobject obj,
@@ -591,13 +591,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnable (
JNIEnv *env, jobject obj,
@@ -611,13 +611,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDisable (
JNIEnv *env, jobject obj,
@@ -631,13 +631,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsEnabled (
JNIEnv *env, jobject obj,
@@ -654,13 +654,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsEnabled ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnableClientState (
JNIEnv *env, jobject obj,
@@ -674,13 +674,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDisableClientState (
JNIEnv *env, jobject obj,
@@ -694,13 +694,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetBooleanv (
JNIEnv *env, jobject obj,
@@ -731,13 +731,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetBooleanv ( GLenum pname , GLboolean * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetDoublev (
JNIEnv *env, jobject obj,
@@ -768,13 +768,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDoublev ( GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFloatv (
JNIEnv *env, jobject obj,
@@ -805,13 +805,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFloatv ( GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetIntegerv (
JNIEnv *env, jobject obj,
@@ -842,13 +842,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetIntegerv ( GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushAttrib (
JNIEnv *env, jobject obj,
@@ -862,13 +862,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopAttrib (
JNIEnv *env, jobject obj)
@@ -880,13 +880,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushClientAttrib (
JNIEnv *env, jobject obj,
@@ -900,13 +900,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushClientAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopClientAttrib (
JNIEnv *env, jobject obj)
@@ -918,13 +918,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopClientAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glRenderMode (
JNIEnv *env, jobject obj,
@@ -941,13 +941,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glRenderMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGetError (
JNIEnv *env, jobject obj)
@@ -962,13 +962,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLenum glGetError ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinish (
JNIEnv *env, jobject obj)
@@ -980,13 +980,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinish ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFlush (
JNIEnv *env, jobject obj)
@@ -998,13 +998,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlush ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHint (
JNIEnv *env, jobject obj,
@@ -1020,13 +1020,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHint ( GLenum target , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearDepth (
JNIEnv *env, jobject obj,
@@ -1040,13 +1040,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearDepth ( GLclampd depth ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDepthFunc (
JNIEnv *env, jobject obj,
@@ -1060,13 +1060,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthFunc ( GLenum func ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDepthMask (
JNIEnv *env, jobject obj,
@@ -1080,13 +1080,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthMask ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDepthRange (
JNIEnv *env, jobject obj,
@@ -1102,13 +1102,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthRange ( GLclampd near_val , GLclampd far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearAccum (
JNIEnv *env, jobject obj,
@@ -1128,13 +1128,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearAccum ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAccum (
JNIEnv *env, jobject obj,
@@ -1150,13 +1150,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAccum ( GLenum op , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixMode (
JNIEnv *env, jobject obj,
@@ -1170,13 +1170,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glOrtho (
JNIEnv *env, jobject obj,
@@ -1200,13 +1200,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glOrtho ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFrustum (
JNIEnv *env, jobject obj,
@@ -1230,13 +1230,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrustum ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glViewport (
JNIEnv *env, jobject obj,
@@ -1256,13 +1256,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glViewport ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushMatrix (
JNIEnv *env, jobject obj)
@@ -1274,13 +1274,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopMatrix (
JNIEnv *env, jobject obj)
@@ -1292,13 +1292,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadIdentity (
JNIEnv *env, jobject obj)
@@ -1310,13 +1310,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentity ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadMatrixd (
JNIEnv *env, jobject obj,
@@ -1345,13 +1345,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadMatrixf (
JNIEnv *env, jobject obj,
@@ -1380,13 +1380,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultMatrixd (
JNIEnv *env, jobject obj,
@@ -1415,13 +1415,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultMatrixf (
JNIEnv *env, jobject obj,
@@ -1450,13 +1450,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRotated (
JNIEnv *env, jobject obj,
@@ -1476,13 +1476,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRotated ( GLdouble angle , GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRotatef (
JNIEnv *env, jobject obj,
@@ -1502,13 +1502,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRotatef ( GLfloat angle , GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glScaled (
JNIEnv *env, jobject obj,
@@ -1526,13 +1526,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScaled ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glScalef (
JNIEnv *env, jobject obj,
@@ -1550,13 +1550,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScalef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTranslated (
JNIEnv *env, jobject obj,
@@ -1574,13 +1574,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslated ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTranslatef (
JNIEnv *env, jobject obj,
@@ -1598,13 +1598,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslatef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsList (
JNIEnv *env, jobject obj,
@@ -1621,13 +1621,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteLists (
JNIEnv *env, jobject obj,
@@ -1643,13 +1643,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteLists ( GLuint list , GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenLists (
JNIEnv *env, jobject obj,
@@ -1666,13 +1666,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenLists ( GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNewList (
JNIEnv *env, jobject obj,
@@ -1688,13 +1688,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNewList ( GLuint list , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEndList (
JNIEnv *env, jobject obj)
@@ -1706,13 +1706,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndList ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCallList (
JNIEnv *env, jobject obj,
@@ -1726,13 +1726,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCallList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCallLists__II_3B (
JNIEnv *env, jobject obj,
@@ -1957,13 +1957,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, lists, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCallLists ( GLsizei n , GLenum type , const GLvoid * lists ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListBase (
JNIEnv *env, jobject obj,
@@ -1977,13 +1977,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListBase ( GLuint base ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBegin (
JNIEnv *env, jobject obj,
@@ -1997,13 +1997,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBegin ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnd (
JNIEnv *env, jobject obj)
@@ -2015,13 +2015,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnd ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2d (
JNIEnv *env, jobject obj,
@@ -2037,13 +2037,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2f (
JNIEnv *env, jobject obj,
@@ -2059,13 +2059,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2i (
JNIEnv *env, jobject obj,
@@ -2081,13 +2081,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2s (
JNIEnv *env, jobject obj,
@@ -2103,13 +2103,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3d (
JNIEnv *env, jobject obj,
@@ -2127,13 +2127,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3f (
JNIEnv *env, jobject obj,
@@ -2151,13 +2151,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3i (
JNIEnv *env, jobject obj,
@@ -2175,13 +2175,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3s (
JNIEnv *env, jobject obj,
@@ -2199,13 +2199,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4d (
JNIEnv *env, jobject obj,
@@ -2225,13 +2225,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4f (
JNIEnv *env, jobject obj,
@@ -2251,13 +2251,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4i (
JNIEnv *env, jobject obj,
@@ -2277,13 +2277,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4s (
JNIEnv *env, jobject obj,
@@ -2303,13 +2303,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2dv (
JNIEnv *env, jobject obj,
@@ -2338,13 +2338,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2fv (
JNIEnv *env, jobject obj,
@@ -2373,13 +2373,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2iv (
JNIEnv *env, jobject obj,
@@ -2408,13 +2408,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2sv (
JNIEnv *env, jobject obj,
@@ -2443,13 +2443,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3dv (
JNIEnv *env, jobject obj,
@@ -2478,13 +2478,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3fv (
JNIEnv *env, jobject obj,
@@ -2513,13 +2513,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3iv (
JNIEnv *env, jobject obj,
@@ -2548,13 +2548,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3sv (
JNIEnv *env, jobject obj,
@@ -2583,13 +2583,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4dv (
JNIEnv *env, jobject obj,
@@ -2618,13 +2618,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4fv (
JNIEnv *env, jobject obj,
@@ -2653,13 +2653,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4iv (
JNIEnv *env, jobject obj,
@@ -2688,13 +2688,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4sv (
JNIEnv *env, jobject obj,
@@ -2723,13 +2723,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3b (
JNIEnv *env, jobject obj,
@@ -2747,13 +2747,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3b ( GLbyte nx , GLbyte ny , GLbyte nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3d (
JNIEnv *env, jobject obj,
@@ -2771,13 +2771,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3d ( GLdouble nx , GLdouble ny , GLdouble nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3f (
JNIEnv *env, jobject obj,
@@ -2795,13 +2795,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3f ( GLfloat nx , GLfloat ny , GLfloat nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3i (
JNIEnv *env, jobject obj,
@@ -2819,13 +2819,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3i ( GLint nx , GLint ny , GLint nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3s (
JNIEnv *env, jobject obj,
@@ -2843,13 +2843,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3s ( GLshort nx , GLshort ny , GLshort nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3bv (
JNIEnv *env, jobject obj,
@@ -2878,13 +2878,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3dv (
JNIEnv *env, jobject obj,
@@ -2913,13 +2913,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3fv (
JNIEnv *env, jobject obj,
@@ -2948,13 +2948,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3iv (
JNIEnv *env, jobject obj,
@@ -2983,13 +2983,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3sv (
JNIEnv *env, jobject obj,
@@ -3018,13 +3018,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexd (
JNIEnv *env, jobject obj,
@@ -3038,13 +3038,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexd ( GLdouble c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexf (
JNIEnv *env, jobject obj,
@@ -3058,13 +3058,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexf ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexi (
JNIEnv *env, jobject obj,
@@ -3078,13 +3078,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexi ( GLint c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexs (
JNIEnv *env, jobject obj,
@@ -3098,13 +3098,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexs ( GLshort c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexub (
JNIEnv *env, jobject obj,
@@ -3118,13 +3118,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexub ( GLubyte c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexdv (
JNIEnv *env, jobject obj,
@@ -3153,13 +3153,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexdv ( const GLdouble * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexfv (
JNIEnv *env, jobject obj,
@@ -3188,13 +3188,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexfv ( const GLfloat * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexiv (
JNIEnv *env, jobject obj,
@@ -3223,13 +3223,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexiv ( const GLint * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexsv (
JNIEnv *env, jobject obj,
@@ -3258,13 +3258,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexsv ( const GLshort * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexubv (
JNIEnv *env, jobject obj,
@@ -3293,13 +3293,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexubv ( const GLubyte * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3b (
JNIEnv *env, jobject obj,
@@ -3317,13 +3317,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3b ( GLbyte red , GLbyte green , GLbyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3d (
JNIEnv *env, jobject obj,
@@ -3341,13 +3341,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3d ( GLdouble red , GLdouble green , GLdouble blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3f (
JNIEnv *env, jobject obj,
@@ -3365,13 +3365,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3f ( GLfloat red , GLfloat green , GLfloat blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3i (
JNIEnv *env, jobject obj,
@@ -3389,13 +3389,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3i ( GLint red , GLint green , GLint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3s (
JNIEnv *env, jobject obj,
@@ -3413,13 +3413,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3s ( GLshort red , GLshort green , GLshort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3ub (
JNIEnv *env, jobject obj,
@@ -3437,13 +3437,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ub ( GLubyte red , GLubyte green , GLubyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3ui (
JNIEnv *env, jobject obj,
@@ -3461,13 +3461,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ui ( GLuint red , GLuint green , GLuint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3us (
JNIEnv *env, jobject obj,
@@ -3485,13 +3485,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3us ( GLushort red , GLushort green , GLushort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4b (
JNIEnv *env, jobject obj,
@@ -3511,13 +3511,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4b ( GLbyte red , GLbyte green , GLbyte blue , GLbyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4d (
JNIEnv *env, jobject obj,
@@ -3537,13 +3537,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4d ( GLdouble red , GLdouble green , GLdouble blue , GLdouble alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4f (
JNIEnv *env, jobject obj,
@@ -3563,13 +3563,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4f ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4i (
JNIEnv *env, jobject obj,
@@ -3589,13 +3589,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4i ( GLint red , GLint green , GLint blue , GLint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4s (
JNIEnv *env, jobject obj,
@@ -3615,13 +3615,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4s ( GLshort red , GLshort green , GLshort blue , GLshort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ub (
JNIEnv *env, jobject obj,
@@ -3641,13 +3641,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ub ( GLubyte red , GLubyte green , GLubyte blue , GLubyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ui (
JNIEnv *env, jobject obj,
@@ -3667,13 +3667,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ui ( GLuint red , GLuint green , GLuint blue , GLuint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4us (
JNIEnv *env, jobject obj,
@@ -3693,13 +3693,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4us ( GLushort red , GLushort green , GLushort blue , GLushort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3bv (
JNIEnv *env, jobject obj,
@@ -3728,13 +3728,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3dv (
JNIEnv *env, jobject obj,
@@ -3763,13 +3763,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3fv (
JNIEnv *env, jobject obj,
@@ -3798,13 +3798,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3iv (
JNIEnv *env, jobject obj,
@@ -3833,13 +3833,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3sv (
JNIEnv *env, jobject obj,
@@ -3868,13 +3868,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3ubv (
JNIEnv *env, jobject obj,
@@ -3903,13 +3903,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3uiv (
JNIEnv *env, jobject obj,
@@ -3938,13 +3938,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3usv (
JNIEnv *env, jobject obj,
@@ -3973,13 +3973,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4bv (
JNIEnv *env, jobject obj,
@@ -4008,13 +4008,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4dv (
JNIEnv *env, jobject obj,
@@ -4043,13 +4043,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4fv (
JNIEnv *env, jobject obj,
@@ -4078,13 +4078,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4iv (
JNIEnv *env, jobject obj,
@@ -4113,13 +4113,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4sv (
JNIEnv *env, jobject obj,
@@ -4148,13 +4148,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubv (
JNIEnv *env, jobject obj,
@@ -4183,13 +4183,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4uiv (
JNIEnv *env, jobject obj,
@@ -4218,13 +4218,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4usv (
JNIEnv *env, jobject obj,
@@ -4253,13 +4253,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1d (
JNIEnv *env, jobject obj,
@@ -4273,13 +4273,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1d ( GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1f (
JNIEnv *env, jobject obj,
@@ -4293,13 +4293,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1f ( GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1i (
JNIEnv *env, jobject obj,
@@ -4313,13 +4313,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1i ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1s (
JNIEnv *env, jobject obj,
@@ -4333,13 +4333,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1s ( GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2d (
JNIEnv *env, jobject obj,
@@ -4355,13 +4355,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2d ( GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2f (
JNIEnv *env, jobject obj,
@@ -4377,13 +4377,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2f ( GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2i (
JNIEnv *env, jobject obj,
@@ -4399,13 +4399,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2i ( GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2s (
JNIEnv *env, jobject obj,
@@ -4421,13 +4421,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2s ( GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3d (
JNIEnv *env, jobject obj,
@@ -4445,13 +4445,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3d ( GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3f (
JNIEnv *env, jobject obj,
@@ -4469,13 +4469,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3f ( GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3i (
JNIEnv *env, jobject obj,
@@ -4493,13 +4493,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3i ( GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3s (
JNIEnv *env, jobject obj,
@@ -4517,13 +4517,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3s ( GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4d (
JNIEnv *env, jobject obj,
@@ -4543,13 +4543,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4d ( GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4f (
JNIEnv *env, jobject obj,
@@ -4569,13 +4569,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4f ( GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4i (
JNIEnv *env, jobject obj,
@@ -4595,13 +4595,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4i ( GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4s (
JNIEnv *env, jobject obj,
@@ -4621,13 +4621,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4s ( GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1dv (
JNIEnv *env, jobject obj,
@@ -4656,13 +4656,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1fv (
JNIEnv *env, jobject obj,
@@ -4691,13 +4691,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1iv (
JNIEnv *env, jobject obj,
@@ -4726,13 +4726,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1sv (
JNIEnv *env, jobject obj,
@@ -4761,13 +4761,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2dv (
JNIEnv *env, jobject obj,
@@ -4796,13 +4796,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fv (
JNIEnv *env, jobject obj,
@@ -4831,13 +4831,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2iv (
JNIEnv *env, jobject obj,
@@ -4866,13 +4866,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2sv (
JNIEnv *env, jobject obj,
@@ -4901,13 +4901,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3dv (
JNIEnv *env, jobject obj,
@@ -4936,13 +4936,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3fv (
JNIEnv *env, jobject obj,
@@ -4971,13 +4971,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3iv (
JNIEnv *env, jobject obj,
@@ -5006,13 +5006,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3sv (
JNIEnv *env, jobject obj,
@@ -5041,13 +5041,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4dv (
JNIEnv *env, jobject obj,
@@ -5076,13 +5076,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fv (
JNIEnv *env, jobject obj,
@@ -5111,13 +5111,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4iv (
JNIEnv *env, jobject obj,
@@ -5146,13 +5146,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4sv (
JNIEnv *env, jobject obj,
@@ -5181,13 +5181,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2d (
JNIEnv *env, jobject obj,
@@ -5203,13 +5203,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2f (
JNIEnv *env, jobject obj,
@@ -5225,13 +5225,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2i (
JNIEnv *env, jobject obj,
@@ -5247,13 +5247,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2s (
JNIEnv *env, jobject obj,
@@ -5269,13 +5269,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3d (
JNIEnv *env, jobject obj,
@@ -5293,13 +5293,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3f (
JNIEnv *env, jobject obj,
@@ -5317,13 +5317,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3i (
JNIEnv *env, jobject obj,
@@ -5341,13 +5341,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3s (
JNIEnv *env, jobject obj,
@@ -5365,13 +5365,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4d (
JNIEnv *env, jobject obj,
@@ -5391,13 +5391,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4f (
JNIEnv *env, jobject obj,
@@ -5417,13 +5417,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4i (
JNIEnv *env, jobject obj,
@@ -5443,13 +5443,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4s (
JNIEnv *env, jobject obj,
@@ -5469,13 +5469,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2dv (
JNIEnv *env, jobject obj,
@@ -5504,13 +5504,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2fv (
JNIEnv *env, jobject obj,
@@ -5539,13 +5539,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2iv (
JNIEnv *env, jobject obj,
@@ -5574,13 +5574,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2sv (
JNIEnv *env, jobject obj,
@@ -5609,13 +5609,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3dv (
JNIEnv *env, jobject obj,
@@ -5644,13 +5644,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3fv (
JNIEnv *env, jobject obj,
@@ -5679,13 +5679,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3iv (
JNIEnv *env, jobject obj,
@@ -5714,13 +5714,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3sv (
JNIEnv *env, jobject obj,
@@ -5749,13 +5749,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4dv (
JNIEnv *env, jobject obj,
@@ -5784,13 +5784,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4fv (
JNIEnv *env, jobject obj,
@@ -5819,13 +5819,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4iv (
JNIEnv *env, jobject obj,
@@ -5854,13 +5854,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4sv (
JNIEnv *env, jobject obj,
@@ -5889,13 +5889,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectd (
JNIEnv *env, jobject obj,
@@ -5915,13 +5915,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectd ( GLdouble x1 , GLdouble y1 , GLdouble x2 , GLdouble y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectf (
JNIEnv *env, jobject obj,
@@ -5941,13 +5941,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectf ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRecti (
JNIEnv *env, jobject obj,
@@ -5967,13 +5967,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRecti ( GLint x1 , GLint y1 , GLint x2 , GLint y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRects (
JNIEnv *env, jobject obj,
@@ -5993,13 +5993,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRects ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectdv (
JNIEnv *env, jobject obj,
@@ -6045,13 +6045,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectdv ( const GLdouble * v1 , const GLdouble * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectfv (
JNIEnv *env, jobject obj,
@@ -6097,13 +6097,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectfv ( const GLfloat * v1 , const GLfloat * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectiv (
JNIEnv *env, jobject obj,
@@ -6149,13 +6149,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectiv ( const GLint * v1 , const GLint * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectsv (
JNIEnv *env, jobject obj,
@@ -6201,13 +6201,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectsv ( const GLshort * v1 , const GLshort * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -6446,13 +6446,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointer__II_3B (
JNIEnv *env, jobject obj,
@@ -6677,13 +6677,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -6922,13 +6922,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexPointer__II_3B (
JNIEnv *env, jobject obj,
@@ -7153,13 +7153,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -7398,13 +7398,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagPointer__I_3B (
JNIEnv *env, jobject obj,
@@ -7615,13 +7615,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointer ( GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPointerv__I_3_3B (
JNIEnv *env, jobject obj,
@@ -7832,13 +7832,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointerv ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glArrayElement (
JNIEnv *env, jobject obj,
@@ -7852,13 +7852,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElement ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawArrays (
JNIEnv *env, jobject obj,
@@ -7876,13 +7876,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArrays ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawElements__III_3B (
JNIEnv *env, jobject obj,
@@ -8121,13 +8121,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, indices, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawElements ( GLenum mode , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInterleavedArrays__II_3B (
JNIEnv *env, jobject obj,
@@ -8352,13 +8352,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pointer, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInterleavedArrays ( GLenum format , GLsizei stride , const GLvoid * pointer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShadeModel (
JNIEnv *env, jobject obj,
@@ -8372,13 +8372,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShadeModel ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightf (
JNIEnv *env, jobject obj,
@@ -8396,13 +8396,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightf ( GLenum light , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLighti (
JNIEnv *env, jobject obj,
@@ -8420,13 +8420,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLighti ( GLenum light , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightfv (
JNIEnv *env, jobject obj,
@@ -8459,13 +8459,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightfv ( GLenum light , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightiv (
JNIEnv *env, jobject obj,
@@ -8498,13 +8498,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightiv ( GLenum light , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLightfv (
JNIEnv *env, jobject obj,
@@ -8537,13 +8537,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightfv ( GLenum light , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLightiv (
JNIEnv *env, jobject obj,
@@ -8576,13 +8576,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightiv ( GLenum light , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModelf (
JNIEnv *env, jobject obj,
@@ -8598,13 +8598,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModeli (
JNIEnv *env, jobject obj,
@@ -8620,13 +8620,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeli ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModelfv (
JNIEnv *env, jobject obj,
@@ -8657,13 +8657,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModeliv (
JNIEnv *env, jobject obj,
@@ -8694,13 +8694,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeliv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMaterialf (
JNIEnv *env, jobject obj,
@@ -8718,13 +8718,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialf ( GLenum face , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMateriali (
JNIEnv *env, jobject obj,
@@ -8742,13 +8742,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMateriali ( GLenum face , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMaterialfv (
JNIEnv *env, jobject obj,
@@ -8781,13 +8781,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialfv ( GLenum face , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMaterialiv (
JNIEnv *env, jobject obj,
@@ -8820,13 +8820,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialiv ( GLenum face , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMaterialfv (
JNIEnv *env, jobject obj,
@@ -8859,13 +8859,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialfv ( GLenum face , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMaterialiv (
JNIEnv *env, jobject obj,
@@ -8898,13 +8898,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialiv ( GLenum face , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorMaterial (
JNIEnv *env, jobject obj,
@@ -8920,13 +8920,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMaterial ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelZoom (
JNIEnv *env, jobject obj,
@@ -8942,13 +8942,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelZoom ( GLfloat xfactor , GLfloat yfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelStoref (
JNIEnv *env, jobject obj,
@@ -8964,13 +8964,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStoref ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelStorei (
JNIEnv *env, jobject obj,
@@ -8986,13 +8986,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStorei ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransferf (
JNIEnv *env, jobject obj,
@@ -9008,13 +9008,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransferi (
JNIEnv *env, jobject obj,
@@ -9030,13 +9030,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelMapfv (
JNIEnv *env, jobject obj,
@@ -9069,13 +9069,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapfv ( GLenum map , GLint mapsize , const GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelMapuiv (
JNIEnv *env, jobject obj,
@@ -9108,13 +9108,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapuiv ( GLenum map , GLint mapsize , const GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelMapusv (
JNIEnv *env, jobject obj,
@@ -9147,13 +9147,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapusv ( GLenum map , GLint mapsize , const GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelMapfv (
JNIEnv *env, jobject obj,
@@ -9184,13 +9184,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapfv ( GLenum map , GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelMapuiv (
JNIEnv *env, jobject obj,
@@ -9221,13 +9221,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapuiv ( GLenum map , GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelMapusv (
JNIEnv *env, jobject obj,
@@ -9258,13 +9258,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapusv ( GLenum map , GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBitmap (
JNIEnv *env, jobject obj,
@@ -9305,13 +9305,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, bitmap, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBitmap ( GLsizei width , GLsizei height , GLfloat xorig , GLfloat yorig , GLfloat xmove , GLfloat ymove , const GLubyte * bitmap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReadPixels__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -9592,13 +9592,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr6, (isCopiedArray6 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawPixels__IIII_3B (
JNIEnv *env, jobject obj,
@@ -9851,13 +9851,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawPixels ( GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyPixels (
JNIEnv *env, jobject obj,
@@ -9879,13 +9879,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStencilFunc (
JNIEnv *env, jobject obj,
@@ -9903,13 +9903,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilFunc ( GLenum func , GLint ref , GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStencilMask (
JNIEnv *env, jobject obj,
@@ -9923,13 +9923,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStencilOp (
JNIEnv *env, jobject obj,
@@ -9947,13 +9947,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilOp ( GLenum fail , GLenum zfail , GLenum zpass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearStencil (
JNIEnv *env, jobject obj,
@@ -9967,13 +9967,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearStencil ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGend (
JNIEnv *env, jobject obj,
@@ -9991,13 +9991,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGend ( GLenum coord , GLenum pname , GLdouble param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGenf (
JNIEnv *env, jobject obj,
@@ -10015,13 +10015,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenf ( GLenum coord , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGeni (
JNIEnv *env, jobject obj,
@@ -10039,13 +10039,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeni ( GLenum coord , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGendv (
JNIEnv *env, jobject obj,
@@ -10078,13 +10078,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGendv ( GLenum coord , GLenum pname , const GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGenfv (
JNIEnv *env, jobject obj,
@@ -10117,13 +10117,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenfv ( GLenum coord , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGeniv (
JNIEnv *env, jobject obj,
@@ -10156,13 +10156,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeniv ( GLenum coord , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexGendv (
JNIEnv *env, jobject obj,
@@ -10195,13 +10195,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGendv ( GLenum coord , GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexGenfv (
JNIEnv *env, jobject obj,
@@ -10234,13 +10234,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGenfv ( GLenum coord , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexGeniv (
JNIEnv *env, jobject obj,
@@ -10273,13 +10273,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGeniv ( GLenum coord , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnvf (
JNIEnv *env, jobject obj,
@@ -10297,13 +10297,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnvi (
JNIEnv *env, jobject obj,
@@ -10321,13 +10321,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvi ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnvfv (
JNIEnv *env, jobject obj,
@@ -10360,13 +10360,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnviv (
JNIEnv *env, jobject obj,
@@ -10399,13 +10399,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnviv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexEnvfv (
JNIEnv *env, jobject obj,
@@ -10438,13 +10438,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnvfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexEnviv (
JNIEnv *env, jobject obj,
@@ -10477,13 +10477,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnviv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameterf (
JNIEnv *env, jobject obj,
@@ -10501,13 +10501,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameteri (
JNIEnv *env, jobject obj,
@@ -10525,13 +10525,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteri ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameterfv (
JNIEnv *env, jobject obj,
@@ -10564,13 +10564,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameteriv (
JNIEnv *env, jobject obj,
@@ -10603,13 +10603,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexParameterfv (
JNIEnv *env, jobject obj,
@@ -10642,13 +10642,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexParameteriv (
JNIEnv *env, jobject obj,
@@ -10681,13 +10681,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexLevelParameterfv (
JNIEnv *env, jobject obj,
@@ -10722,13 +10722,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameterfv ( GLenum target , GLint level , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexLevelParameteriv (
JNIEnv *env, jobject obj,
@@ -10763,13 +10763,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameteriv ( GLenum target , GLint level , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage1D__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -11064,13 +11064,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage1D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -11379,13 +11379,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage2D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLsizei height , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexImage__IIII_3B (
JNIEnv *env, jobject obj,
@@ -11638,13 +11638,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexImage ( GLenum target , GLint level , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenTextures (
JNIEnv *env, jobject obj,
@@ -11675,13 +11675,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTextures ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteTextures (
JNIEnv *env, jobject obj,
@@ -11712,13 +11712,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTextures ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindTexture (
JNIEnv *env, jobject obj,
@@ -11734,13 +11734,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTexture ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPrioritizeTextures (
JNIEnv *env, jobject obj,
@@ -11788,13 +11788,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, priorities, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTextures ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glAreTexturesResident (
JNIEnv *env, jobject obj,
@@ -11845,13 +11845,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResident ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsTexture (
JNIEnv *env, jobject obj,
@@ -11868,13 +11868,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTexture ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -12155,13 +12155,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -12470,13 +12470,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage1D (
JNIEnv *env, jobject obj,
@@ -12502,13 +12502,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage2D (
JNIEnv *env, jobject obj,
@@ -12536,13 +12536,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage1D (
JNIEnv *env, jobject obj,
@@ -12566,13 +12566,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage2D (
JNIEnv *env, jobject obj,
@@ -12600,13 +12600,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap1d (
JNIEnv *env, jobject obj,
@@ -12645,13 +12645,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint stride , GLint order , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap1f (
JNIEnv *env, jobject obj,
@@ -12690,13 +12690,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint stride , GLint order , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap2d (
JNIEnv *env, jobject obj,
@@ -12743,13 +12743,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint ustride , GLint uorder , GLdouble v1 , GLdouble v2 , GLint vstride , GLint vorder , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap2f (
JNIEnv *env, jobject obj,
@@ -12796,13 +12796,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint ustride , GLint uorder , GLfloat v1 , GLfloat v2 , GLint vstride , GLint vorder , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapdv (
JNIEnv *env, jobject obj,
@@ -12835,13 +12835,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapdv ( GLenum target , GLenum query , GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapfv (
JNIEnv *env, jobject obj,
@@ -12874,13 +12874,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapfv ( GLenum target , GLenum query , GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapiv (
JNIEnv *env, jobject obj,
@@ -12913,13 +12913,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapiv ( GLenum target , GLenum query , GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1d (
JNIEnv *env, jobject obj,
@@ -12933,13 +12933,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1d ( GLdouble u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1f (
JNIEnv *env, jobject obj,
@@ -12953,13 +12953,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1f ( GLfloat u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1dv (
JNIEnv *env, jobject obj,
@@ -12988,13 +12988,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1fv (
JNIEnv *env, jobject obj,
@@ -13023,13 +13023,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2d (
JNIEnv *env, jobject obj,
@@ -13045,13 +13045,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2d ( GLdouble u , GLdouble v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2f (
JNIEnv *env, jobject obj,
@@ -13067,13 +13067,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2f ( GLfloat u , GLfloat v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2dv (
JNIEnv *env, jobject obj,
@@ -13102,13 +13102,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2fv (
JNIEnv *env, jobject obj,
@@ -13137,13 +13137,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid1d (
JNIEnv *env, jobject obj,
@@ -13161,13 +13161,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1d ( GLint un , GLdouble u1 , GLdouble u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid1f (
JNIEnv *env, jobject obj,
@@ -13185,13 +13185,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1f ( GLint un , GLfloat u1 , GLfloat u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid2d (
JNIEnv *env, jobject obj,
@@ -13215,13 +13215,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2d ( GLint un , GLdouble u1 , GLdouble u2 , GLint vn , GLdouble v1 , GLdouble v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid2f (
JNIEnv *env, jobject obj,
@@ -13245,13 +13245,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2f ( GLint un , GLfloat u1 , GLfloat u2 , GLint vn , GLfloat v1 , GLfloat v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalPoint1 (
JNIEnv *env, jobject obj,
@@ -13265,13 +13265,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint1 ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalPoint2 (
JNIEnv *env, jobject obj,
@@ -13287,13 +13287,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint2 ( GLint i , GLint j ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalMesh1 (
JNIEnv *env, jobject obj,
@@ -13311,13 +13311,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh1 ( GLenum mode , GLint i1 , GLint i2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalMesh2 (
JNIEnv *env, jobject obj,
@@ -13339,13 +13339,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh2 ( GLenum mode , GLint i1 , GLint i2 , GLint j1 , GLint j2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogf (
JNIEnv *env, jobject obj,
@@ -13361,13 +13361,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogi (
JNIEnv *env, jobject obj,
@@ -13383,13 +13383,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogfv (
JNIEnv *env, jobject obj,
@@ -13420,13 +13420,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogiv (
JNIEnv *env, jobject obj,
@@ -13457,13 +13457,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogiv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFeedbackBuffer (
JNIEnv *env, jobject obj,
@@ -13496,13 +13496,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, buffer, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFeedbackBuffer ( GLsizei size , GLenum type , GLfloat * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPassThrough (
JNIEnv *env, jobject obj,
@@ -13516,13 +13516,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPassThrough ( GLfloat token ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSelectBuffer (
JNIEnv *env, jobject obj,
@@ -13553,13 +13553,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, buffer, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSelectBuffer ( GLsizei size , GLuint * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInitNames (
JNIEnv *env, jobject obj)
@@ -13571,13 +13571,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInitNames ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadName (
JNIEnv *env, jobject obj,
@@ -13591,13 +13591,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushName (
JNIEnv *env, jobject obj,
@@ -13611,13 +13611,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopName (
JNIEnv *env, jobject obj)
@@ -13629,13 +13629,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopName ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawRangeElements__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -13902,13 +13902,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, indices, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElements ( GLenum mode , GLuint start , GLuint end , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage3D__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -14231,13 +14231,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3D ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage3D__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -14574,13 +14574,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage3D (
JNIEnv *env, jobject obj,
@@ -14610,13 +14610,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTable__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -14883,13 +14883,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, table, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTable ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorSubTable__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -15156,13 +15156,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTable ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameteriv (
JNIEnv *env, jobject obj,
@@ -15195,13 +15195,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameterfv (
JNIEnv *env, jobject obj,
@@ -15234,13 +15234,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorSubTable (
JNIEnv *env, jobject obj,
@@ -15262,13 +15262,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTable ( GLenum target , GLsizei start , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorTable (
JNIEnv *env, jobject obj,
@@ -15290,13 +15290,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTable ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTable__III_3B (
JNIEnv *env, jobject obj,
@@ -15535,13 +15535,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, table, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTable ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterfv (
JNIEnv *env, jobject obj,
@@ -15574,13 +15574,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameteriv (
JNIEnv *env, jobject obj,
@@ -15613,13 +15613,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendEquation (
JNIEnv *env, jobject obj,
@@ -15633,13 +15633,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquation ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendColor (
JNIEnv *env, jobject obj,
@@ -15659,13 +15659,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHistogram (
JNIEnv *env, jobject obj,
@@ -15685,13 +15685,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogram ( GLenum target , GLsizei width , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetHistogram (
JNIEnv *env, jobject obj,
@@ -15705,13 +15705,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogram ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogram__IZII_3B (
JNIEnv *env, jobject obj,
@@ -15964,13 +15964,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogram ( GLenum target , GLboolean reset , GLenum format , GLenum type , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameterfv (
JNIEnv *env, jobject obj,
@@ -16003,13 +16003,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameteriv (
JNIEnv *env, jobject obj,
@@ -16042,13 +16042,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMinmax (
JNIEnv *env, jobject obj,
@@ -16066,13 +16066,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmax ( GLenum target , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetMinmax (
JNIEnv *env, jobject obj,
@@ -16086,13 +16086,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmax ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmax__IZII_3B (
JNIEnv *env, jobject obj,
@@ -16345,13 +16345,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmax ( GLenum target , GLboolean reset , GLenum format , GLenum types , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameterfv (
JNIEnv *env, jobject obj,
@@ -16384,13 +16384,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameteriv (
JNIEnv *env, jobject obj,
@@ -16423,13 +16423,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter1D__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -16696,13 +16696,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, image, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1D ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter2D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -16983,13 +16983,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, image, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterf (
JNIEnv *env, jobject obj,
@@ -17007,13 +17007,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterf ( GLenum target , GLenum pname , GLfloat params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterfv (
JNIEnv *env, jobject obj,
@@ -17046,13 +17046,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameteri (
JNIEnv *env, jobject obj,
@@ -17070,13 +17070,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteri ( GLenum target , GLenum pname , GLint params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameteriv (
JNIEnv *env, jobject obj,
@@ -17109,13 +17109,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter1D (
JNIEnv *env, jobject obj,
@@ -17137,13 +17137,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter2D (
JNIEnv *env, jobject obj,
@@ -17167,13 +17167,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionFilter__III_3B (
JNIEnv *env, jobject obj,
@@ -17412,13 +17412,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, image, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilter ( GLenum target , GLenum format , GLenum type , GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameterfv (
JNIEnv *env, jobject obj,
@@ -17451,13 +17451,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameteriv (
JNIEnv *env, jobject obj,
@@ -17490,13 +17490,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSeparableFilter2D__IIIIII_3B_3B (
JNIEnv *env, jobject obj,
@@ -17896,13 +17896,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, column, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * row , const GLvoid * column ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetSeparableFilter__III_3B_3B_3B (
JNIEnv *env, jobject obj,
@@ -18379,13 +18379,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, span, ptr5, (isCopiedArray5 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilter ( GLenum target , GLenum format , GLenum type , GLvoid * row , GLvoid * column , GLvoid * span ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glActiveTexture (
JNIEnv *env, jobject obj,
@@ -18399,13 +18399,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClientActiveTexture (
JNIEnv *env, jobject obj,
@@ -18419,13 +18419,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -18706,13 +18706,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage2D__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -19007,13 +19007,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage3D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -19322,13 +19322,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -19609,13 +19609,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -19924,13 +19924,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage3D__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -20267,13 +20267,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCompressedTexImage__II_3B (
JNIEnv *env, jobject obj,
@@ -20498,13 +20498,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, img, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImage ( GLenum target , GLint lod , GLvoid * img ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1d (
JNIEnv *env, jobject obj,
@@ -20520,13 +20520,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1d ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1dv (
JNIEnv *env, jobject obj,
@@ -20557,13 +20557,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1f (
JNIEnv *env, jobject obj,
@@ -20579,13 +20579,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1f ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1fv (
JNIEnv *env, jobject obj,
@@ -20616,13 +20616,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1i (
JNIEnv *env, jobject obj,
@@ -20638,13 +20638,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1i ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1iv (
JNIEnv *env, jobject obj,
@@ -20675,13 +20675,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1s (
JNIEnv *env, jobject obj,
@@ -20697,13 +20697,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1s ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1sv (
JNIEnv *env, jobject obj,
@@ -20734,13 +20734,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2d (
JNIEnv *env, jobject obj,
@@ -20758,13 +20758,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2d ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2dv (
JNIEnv *env, jobject obj,
@@ -20795,13 +20795,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2f (
JNIEnv *env, jobject obj,
@@ -20819,13 +20819,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2f ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2fv (
JNIEnv *env, jobject obj,
@@ -20856,13 +20856,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2i (
JNIEnv *env, jobject obj,
@@ -20880,13 +20880,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2i ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2iv (
JNIEnv *env, jobject obj,
@@ -20917,13 +20917,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2s (
JNIEnv *env, jobject obj,
@@ -20941,13 +20941,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2s ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2sv (
JNIEnv *env, jobject obj,
@@ -20978,13 +20978,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3d (
JNIEnv *env, jobject obj,
@@ -21004,13 +21004,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3d ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3dv (
JNIEnv *env, jobject obj,
@@ -21041,13 +21041,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3f (
JNIEnv *env, jobject obj,
@@ -21067,13 +21067,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3f ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3fv (
JNIEnv *env, jobject obj,
@@ -21104,13 +21104,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3i (
JNIEnv *env, jobject obj,
@@ -21130,13 +21130,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3i ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3iv (
JNIEnv *env, jobject obj,
@@ -21167,13 +21167,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3s (
JNIEnv *env, jobject obj,
@@ -21193,13 +21193,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3s ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3sv (
JNIEnv *env, jobject obj,
@@ -21230,13 +21230,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4d (
JNIEnv *env, jobject obj,
@@ -21258,13 +21258,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4d ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4dv (
JNIEnv *env, jobject obj,
@@ -21295,13 +21295,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4f (
JNIEnv *env, jobject obj,
@@ -21323,13 +21323,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4f ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4fv (
JNIEnv *env, jobject obj,
@@ -21360,13 +21360,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4i (
JNIEnv *env, jobject obj,
@@ -21388,13 +21388,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4i ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4iv (
JNIEnv *env, jobject obj,
@@ -21425,13 +21425,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4s (
JNIEnv *env, jobject obj,
@@ -21453,13 +21453,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4s ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4sv (
JNIEnv *env, jobject obj,
@@ -21490,13 +21490,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixd (
JNIEnv *env, jobject obj,
@@ -21525,13 +21525,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixf (
JNIEnv *env, jobject obj,
@@ -21560,13 +21560,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixd (
JNIEnv *env, jobject obj,
@@ -21595,13 +21595,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixf (
JNIEnv *env, jobject obj,
@@ -21630,13 +21630,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleCoverage (
JNIEnv *env, jobject obj,
@@ -21652,13 +21652,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverage ( GLclampf value , GLboolean invert ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSamplePass (
JNIEnv *env, jobject obj,
@@ -21672,13 +21672,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePass ( GLenum pass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glActiveTextureARB (
JNIEnv *env, jobject obj,
@@ -21692,13 +21692,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClientActiveTextureARB (
JNIEnv *env, jobject obj,
@@ -21712,13 +21712,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1dARB (
JNIEnv *env, jobject obj,
@@ -21734,13 +21734,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dARB ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1dvARB (
JNIEnv *env, jobject obj,
@@ -21771,13 +21771,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1fARB (
JNIEnv *env, jobject obj,
@@ -21793,13 +21793,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fARB ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1fvARB (
JNIEnv *env, jobject obj,
@@ -21830,13 +21830,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1iARB (
JNIEnv *env, jobject obj,
@@ -21852,13 +21852,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iARB ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1ivARB (
JNIEnv *env, jobject obj,
@@ -21889,13 +21889,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1sARB (
JNIEnv *env, jobject obj,
@@ -21911,13 +21911,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sARB ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1svARB (
JNIEnv *env, jobject obj,
@@ -21948,13 +21948,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2dARB (
JNIEnv *env, jobject obj,
@@ -21972,13 +21972,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dARB ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2dvARB (
JNIEnv *env, jobject obj,
@@ -22009,13 +22009,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2fARB (
JNIEnv *env, jobject obj,
@@ -22033,13 +22033,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fARB ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2fvARB (
JNIEnv *env, jobject obj,
@@ -22070,13 +22070,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2iARB (
JNIEnv *env, jobject obj,
@@ -22094,13 +22094,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iARB ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2ivARB (
JNIEnv *env, jobject obj,
@@ -22131,13 +22131,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2sARB (
JNIEnv *env, jobject obj,
@@ -22155,13 +22155,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sARB ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2svARB (
JNIEnv *env, jobject obj,
@@ -22192,13 +22192,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3dARB (
JNIEnv *env, jobject obj,
@@ -22218,13 +22218,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3dvARB (
JNIEnv *env, jobject obj,
@@ -22255,13 +22255,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3fARB (
JNIEnv *env, jobject obj,
@@ -22281,13 +22281,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3fvARB (
JNIEnv *env, jobject obj,
@@ -22318,13 +22318,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3iARB (
JNIEnv *env, jobject obj,
@@ -22344,13 +22344,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iARB ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3ivARB (
JNIEnv *env, jobject obj,
@@ -22381,13 +22381,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3sARB (
JNIEnv *env, jobject obj,
@@ -22407,13 +22407,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sARB ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3svARB (
JNIEnv *env, jobject obj,
@@ -22444,13 +22444,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4dARB (
JNIEnv *env, jobject obj,
@@ -22472,13 +22472,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4dvARB (
JNIEnv *env, jobject obj,
@@ -22509,13 +22509,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4fARB (
JNIEnv *env, jobject obj,
@@ -22537,13 +22537,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4fvARB (
JNIEnv *env, jobject obj,
@@ -22574,13 +22574,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4iARB (
JNIEnv *env, jobject obj,
@@ -22602,13 +22602,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iARB ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4ivARB (
JNIEnv *env, jobject obj,
@@ -22639,13 +22639,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4sARB (
JNIEnv *env, jobject obj,
@@ -22667,13 +22667,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sARB ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4svARB (
JNIEnv *env, jobject obj,
@@ -22704,13 +22704,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendColorEXT (
JNIEnv *env, jobject obj,
@@ -22730,13 +22730,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColorEXT ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonOffsetEXT (
JNIEnv *env, jobject obj,
@@ -22752,13 +22752,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffsetEXT ( GLfloat factor , GLfloat bias ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage3DEXT__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -23081,13 +23081,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3DEXT ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage3DEXT__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -23424,13 +23424,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage3DEXT (
JNIEnv *env, jobject obj,
@@ -23460,13 +23460,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3DEXT ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenTexturesEXT (
JNIEnv *env, jobject obj,
@@ -23497,13 +23497,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTexturesEXT ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteTexturesEXT (
JNIEnv *env, jobject obj,
@@ -23534,13 +23534,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTexturesEXT ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindTextureEXT (
JNIEnv *env, jobject obj,
@@ -23556,13 +23556,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTextureEXT ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPrioritizeTexturesEXT (
JNIEnv *env, jobject obj,
@@ -23610,13 +23610,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, priorities, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTexturesEXT ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glAreTexturesResidentEXT (
JNIEnv *env, jobject obj,
@@ -23667,13 +23667,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResidentEXT ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsTextureEXT (
JNIEnv *env, jobject obj,
@@ -23690,13 +23690,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTextureEXT ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -23949,13 +23949,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -24194,13 +24194,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -24453,13 +24453,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -24698,13 +24698,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -24957,13 +24957,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagPointerEXT (
JNIEnv *env, jobject obj,
@@ -24996,13 +24996,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerEXT ( GLsizei stride , GLsizei count , const GLboolean * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPointervEXT__I_3_3B (
JNIEnv *env, jobject obj,
@@ -25213,13 +25213,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointervEXT ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glArrayElementEXT (
JNIEnv *env, jobject obj,
@@ -25233,13 +25233,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElementEXT ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawArraysEXT (
JNIEnv *env, jobject obj,
@@ -25257,13 +25257,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArraysEXT ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendEquationEXT (
JNIEnv *env, jobject obj,
@@ -25277,13 +25277,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquationEXT ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfEXT (
JNIEnv *env, jobject obj,
@@ -25299,13 +25299,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfEXT ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -25336,13 +25336,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvEXT ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfSGIS (
JNIEnv *env, jobject obj,
@@ -25358,13 +25358,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfSGIS ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -25395,13 +25395,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvSGIS ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -25668,13 +25668,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, table, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableEXT ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorSubTableEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -25941,13 +25941,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTableEXT ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -26186,13 +26186,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, table, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableEXT ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -26225,13 +26225,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvEXT ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterivEXT (
JNIEnv *env, jobject obj,
@@ -26264,13 +26264,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivEXT ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLockArraysEXT (
JNIEnv *env, jobject obj,
@@ -26286,13 +26286,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLockArraysEXT ( GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glUnlockArraysEXT (
JNIEnv *env, jobject obj)
@@ -26304,13 +26304,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glUnlockArraysEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixfARB (
JNIEnv *env, jobject obj,
@@ -26339,13 +26339,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixdARB (
JNIEnv *env, jobject obj,
@@ -26374,13 +26374,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixfARB (
JNIEnv *env, jobject obj,
@@ -26409,13 +26409,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixdARB (
JNIEnv *env, jobject obj,
@@ -26444,13 +26444,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleCoverageARB (
JNIEnv *env, jobject obj,
@@ -26466,13 +26466,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverageARB ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage3DARB__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -26781,13 +26781,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage2DARB__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -27082,13 +27082,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg7, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage1DARB__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -27369,13 +27369,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1DARB ( GLenum , GLint , GLenum , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage3DARB__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -27712,13 +27712,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg10, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage3DARB ( GLenum , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage2DARB__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -28027,13 +28027,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2DARB ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage1DARB__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -28314,13 +28314,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1DARB ( GLenum , GLint , GLint , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCompressedTexImageARB__II_3B (
JNIEnv *env, jobject obj,
@@ -28545,13 +28545,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImageARB ( GLenum , GLint , void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightbvARB (
JNIEnv *env, jobject obj,
@@ -28582,13 +28582,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightbvARB ( GLint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightsvARB (
JNIEnv *env, jobject obj,
@@ -28619,13 +28619,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightsvARB ( GLint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightivARB (
JNIEnv *env, jobject obj,
@@ -28656,13 +28656,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightivARB ( GLint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightfvARB (
JNIEnv *env, jobject obj,
@@ -28693,13 +28693,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightfvARB ( GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightdvARB (
JNIEnv *env, jobject obj,
@@ -28730,13 +28730,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightdvARB ( GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightubvARB (
JNIEnv *env, jobject obj,
@@ -28767,13 +28767,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightusvARB (
JNIEnv *env, jobject obj,
@@ -28804,13 +28804,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightuivARB (
JNIEnv *env, jobject obj,
@@ -28841,13 +28841,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightPointerARB__III_3B (
JNIEnv *env, jobject obj,
@@ -29086,13 +29086,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexBlendARB (
JNIEnv *env, jobject obj,
@@ -29106,13 +29106,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCurrentPaletteMatrixARB (
JNIEnv *env, jobject obj,
@@ -29126,13 +29126,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCurrentPaletteMatrixARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexubvARB (
JNIEnv *env, jobject obj,
@@ -29163,13 +29163,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexusvARB (
JNIEnv *env, jobject obj,
@@ -29200,13 +29200,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexuivARB (
JNIEnv *env, jobject obj,
@@ -29237,13 +29237,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexPointerARB__III_3B (
JNIEnv *env, jobject obj,
@@ -29482,13 +29482,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexFilterFuncSGIS (
JNIEnv *env, jobject obj,
@@ -29521,13 +29521,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexFilterFuncSGIS ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexFilterFuncSGIS (
JNIEnv *env, jobject obj,
@@ -29562,13 +29562,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexFilterFuncSGIS ( GLenum , GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage1DEXT__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -29849,13 +29849,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1DEXT ( GLenum , GLint , GLint , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage2DEXT__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -30164,13 +30164,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage1DEXT (
JNIEnv *env, jobject obj,
@@ -30196,13 +30196,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage2DEXT (
JNIEnv *env, jobject obj,
@@ -30230,13 +30230,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage1DEXT (
JNIEnv *env, jobject obj,
@@ -30260,13 +30260,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1DEXT ( GLenum , GLint , GLint , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage2DEXT (
JNIEnv *env, jobject obj,
@@ -30294,13 +30294,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramEXT__IZII_3B (
JNIEnv *env, jobject obj,
@@ -30553,13 +30553,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -30592,13 +30592,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameterivEXT (
JNIEnv *env, jobject obj,
@@ -30631,13 +30631,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxEXT__IZII_3B (
JNIEnv *env, jobject obj,
@@ -30890,13 +30890,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -30929,13 +30929,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameterivEXT (
JNIEnv *env, jobject obj,
@@ -30968,13 +30968,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHistogramEXT (
JNIEnv *env, jobject obj,
@@ -30994,13 +30994,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogramEXT ( GLenum , GLsizei , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMinmaxEXT (
JNIEnv *env, jobject obj,
@@ -31018,13 +31018,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmaxEXT ( GLenum , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetHistogramEXT (
JNIEnv *env, jobject obj,
@@ -31038,13 +31038,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogramEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetMinmaxEXT (
JNIEnv *env, jobject obj,
@@ -31058,13 +31058,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmaxEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter1DEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -31331,13 +31331,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg5, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1DEXT ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter2DEXT__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -31618,13 +31618,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterfEXT (
JNIEnv *env, jobject obj,
@@ -31642,13 +31642,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -31681,13 +31681,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameteriEXT (
JNIEnv *env, jobject obj,
@@ -31705,13 +31705,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterivEXT (
JNIEnv *env, jobject obj,
@@ -31744,13 +31744,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter1DEXT (
JNIEnv *env, jobject obj,
@@ -31772,13 +31772,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1DEXT ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter2DEXT (
JNIEnv *env, jobject obj,
@@ -31802,13 +31802,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2DEXT ( GLenum , GLenum , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionFilterEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -32047,13 +32047,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilterEXT ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -32086,13 +32086,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameterivEXT (
JNIEnv *env, jobject obj,
@@ -32125,13 +32125,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetSeparableFilterEXT__III_3B_3B_3B (
JNIEnv *env, jobject obj,
@@ -32608,13 +32608,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg5, ptr5, (isCopiedArray5 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilterEXT ( GLenum , GLenum , GLenum , GLvoid * , GLvoid * , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSeparableFilter2DEXT__IIIIII_3B_3B (
JNIEnv *env, jobject obj,
@@ -33014,13 +33014,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg7, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableSGI__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -33287,13 +33287,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg5, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableSGI ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameterfvSGI (
JNIEnv *env, jobject obj,
@@ -33326,13 +33326,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfvSGI ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameterivSGI (
JNIEnv *env, jobject obj,
@@ -33365,13 +33365,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterivSGI ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorTableSGI (
JNIEnv *env, jobject obj,
@@ -33393,13 +33393,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTableSGI ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableSGI__III_3B (
JNIEnv *env, jobject obj,
@@ -33638,13 +33638,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableSGI ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterfvSGI (
JNIEnv *env, jobject obj,
@@ -33677,13 +33677,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvSGI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterivSGI (
JNIEnv *env, jobject obj,
@@ -33716,13 +33716,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivSGI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenSGIX (
JNIEnv *env, jobject obj,
@@ -33736,13 +33736,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenSGIX ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameteriSGIS (
JNIEnv *env, jobject obj,
@@ -33758,13 +33758,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameteriSGIS ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameterivSGIS (
JNIEnv *env, jobject obj,
@@ -33795,13 +33795,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterivSGIS ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameterfSGIS (
JNIEnv *env, jobject obj,
@@ -33817,13 +33817,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfSGIS ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -33854,13 +33854,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfvSGIS ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelTexGenParameterivSGIS (
JNIEnv *env, jobject obj,
@@ -33891,13 +33891,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterivSGIS ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelTexGenParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -33928,13 +33928,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterfvSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage4DSGIS__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -34271,13 +34271,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg10, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage4DSGIS ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLsizei , GLint , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage4DSGIS__IIIIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -34642,13 +34642,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg12, ptr12, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage4DSGIS ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDetailTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -34681,13 +34681,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDetailTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetDetailTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -34718,13 +34718,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDetailTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSharpenTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -34757,13 +34757,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSharpenTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetSharpenTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -34794,13 +34794,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSharpenTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleMaskSGIS (
JNIEnv *env, jobject obj,
@@ -34816,13 +34816,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskSGIS ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSamplePatternSGIS (
JNIEnv *env, jobject obj,
@@ -34836,13 +34836,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternSGIS ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameterfSGIX (
JNIEnv *env, jobject obj,
@@ -34858,13 +34858,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -34895,13 +34895,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameteriSGIX (
JNIEnv *env, jobject obj,
@@ -34917,13 +34917,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameteriSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -34954,13 +34954,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfARB (
JNIEnv *env, jobject obj,
@@ -34976,13 +34976,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfARB ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfvARB (
JNIEnv *env, jobject obj,
@@ -35013,13 +35013,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvARB ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGetInstrumentsSGIX (
JNIEnv *env, jobject obj)
@@ -35034,13 +35034,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glGetInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInstrumentsBufferSGIX (
JNIEnv *env, jobject obj,
@@ -35071,13 +35071,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInstrumentsBufferSGIX ( GLsizei , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glPollInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -35109,13 +35109,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollInstrumentsSGIX ( GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReadInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -35129,13 +35129,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStartInstrumentsSGIX (
JNIEnv *env, jobject obj)
@@ -35147,13 +35147,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStartInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStopInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -35167,13 +35167,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStopInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFrameZoomSGIX (
JNIEnv *env, jobject obj,
@@ -35187,13 +35187,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrameZoomSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTagSampleBufferSGIX (
JNIEnv *env, jobject obj)
@@ -35205,13 +35205,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTagSampleBufferSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeformationMap3dSGIX (
JNIEnv *env, jobject obj,
@@ -35266,13 +35266,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg13, ptr13, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3dSGIX ( GLenum , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeformationMap3fSGIX (
JNIEnv *env, jobject obj,
@@ -35327,13 +35327,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg13, ptr13, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3fSGIX ( GLenum , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeformSGIX (
JNIEnv *env, jobject obj,
@@ -35347,13 +35347,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadIdentityDeformationMapSGIX (
JNIEnv *env, jobject obj,
@@ -35367,13 +35367,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentityDeformationMapSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReferencePlaneSGIX (
JNIEnv *env, jobject obj,
@@ -35402,13 +35402,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReferencePlaneSGIX ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFlushRasterSGIX (
JNIEnv *env, jobject obj)
@@ -35420,13 +35420,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushRasterSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogFuncSGIS (
JNIEnv *env, jobject obj,
@@ -35457,13 +35457,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogFuncSGIS ( GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFogFuncSGIS (
JNIEnv *env, jobject obj,
@@ -35492,13 +35492,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, (isCopiedArray0 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFogFuncSGIS ( GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameteriHP (
JNIEnv *env, jobject obj,
@@ -35516,13 +35516,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameteriHP ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameterfHP (
JNIEnv *env, jobject obj,
@@ -35540,13 +35540,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfHP ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameterivHP (
JNIEnv *env, jobject obj,
@@ -35579,13 +35579,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterivHP ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameterfvHP (
JNIEnv *env, jobject obj,
@@ -35618,13 +35618,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfvHP ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetImageTransformParameterivHP (
JNIEnv *env, jobject obj,
@@ -35657,13 +35657,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterivHP ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetImageTransformParameterfvHP (
JNIEnv *env, jobject obj,
@@ -35696,13 +35696,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterfvHP ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorSubTableEXT (
JNIEnv *env, jobject obj,
@@ -35724,13 +35724,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTableEXT ( GLenum , GLsizei , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHintPGI (
JNIEnv *env, jobject obj,
@@ -35746,13 +35746,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHintPGI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetListParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -35785,13 +35785,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterfvSGIX ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetListParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -35824,13 +35824,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterivSGIX ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameterfSGIX (
JNIEnv *env, jobject obj,
@@ -35848,13 +35848,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfSGIX ( GLuint , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -35887,13 +35887,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfvSGIX ( GLuint , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameteriSGIX (
JNIEnv *env, jobject obj,
@@ -35911,13 +35911,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameteriSGIX ( GLuint , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -35950,13 +35950,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterivSGIX ( GLuint , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexMaterialEXT (
JNIEnv *env, jobject obj,
@@ -35972,13 +35972,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexFuncEXT (
JNIEnv *env, jobject obj,
@@ -35994,13 +35994,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexFuncEXT ( GLenum , GLclampf ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCullParameterdvEXT (
JNIEnv *env, jobject obj,
@@ -36031,13 +36031,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterdvEXT ( GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCullParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -36068,13 +36068,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterfvEXT ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentColorMaterialSGIX (
JNIEnv *env, jobject obj,
@@ -36090,13 +36090,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentColorMaterialSGIX ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightfSGIX (
JNIEnv *env, jobject obj,
@@ -36114,13 +36114,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightfvSGIX (
JNIEnv *env, jobject obj,
@@ -36153,13 +36153,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightiSGIX (
JNIEnv *env, jobject obj,
@@ -36177,13 +36177,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightivSGIX (
JNIEnv *env, jobject obj,
@@ -36216,13 +36216,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModelfSGIX (
JNIEnv *env, jobject obj,
@@ -36238,13 +36238,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModelfvSGIX (
JNIEnv *env, jobject obj,
@@ -36275,13 +36275,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModeliSGIX (
JNIEnv *env, jobject obj,
@@ -36297,13 +36297,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModeliSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModelivSGIX (
JNIEnv *env, jobject obj,
@@ -36334,13 +36334,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialfSGIX (
JNIEnv *env, jobject obj,
@@ -36358,13 +36358,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialfvSGIX (
JNIEnv *env, jobject obj,
@@ -36397,13 +36397,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialiSGIX (
JNIEnv *env, jobject obj,
@@ -36421,13 +36421,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialivSGIX (
JNIEnv *env, jobject obj,
@@ -36460,13 +36460,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentLightfvSGIX (
JNIEnv *env, jobject obj,
@@ -36499,13 +36499,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentLightivSGIX (
JNIEnv *env, jobject obj,
@@ -36538,13 +36538,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentMaterialfvSGIX (
JNIEnv *env, jobject obj,
@@ -36577,13 +36577,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentMaterialivSGIX (
JNIEnv *env, jobject obj,
@@ -36616,13 +36616,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightEnviSGIX (
JNIEnv *env, jobject obj,
@@ -36638,13 +36638,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightEnviSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawRangeElementsEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -36911,13 +36911,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg5, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElementsEXT ( GLenum , GLuint , GLuint , GLsizei , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glApplyTextureEXT (
JNIEnv *env, jobject obj,
@@ -36931,13 +36931,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glApplyTextureEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureLightEXT (
JNIEnv *env, jobject obj,
@@ -36951,13 +36951,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureLightEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureMaterialEXT (
JNIEnv *env, jobject obj,
@@ -36973,13 +36973,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAsyncMarkerSGIX (
JNIEnv *env, jobject obj,
@@ -36993,13 +36993,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glFinishAsyncSGIX (
JNIEnv *env, jobject obj,
@@ -37031,13 +37031,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glFinishAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glPollAsyncSGIX (
JNIEnv *env, jobject obj,
@@ -37069,13 +37069,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenAsyncMarkersSGIX (
JNIEnv *env, jobject obj,
@@ -37092,13 +37092,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenAsyncMarkersSGIX ( GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteAsyncMarkersSGIX (
JNIEnv *env, jobject obj,
@@ -37114,13 +37114,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteAsyncMarkersSGIX ( GLuint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsAsyncMarkerSGIX (
JNIEnv *env, jobject obj,
@@ -37137,13 +37137,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -37368,13 +37368,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointervINTEL__I_3_3B (
JNIEnv *env, jobject obj,
@@ -37585,13 +37585,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointervINTEL ( GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -37816,13 +37816,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -38047,13 +38047,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameteriEXT (
JNIEnv *env, jobject obj,
@@ -38071,13 +38071,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameterfEXT (
JNIEnv *env, jobject obj,
@@ -38095,13 +38095,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameterivEXT (
JNIEnv *env, jobject obj,
@@ -38134,13 +38134,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -38173,13 +38173,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3bEXT (
JNIEnv *env, jobject obj,
@@ -38197,13 +38197,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3bvEXT (
JNIEnv *env, jobject obj,
@@ -38232,13 +38232,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3dEXT (
JNIEnv *env, jobject obj,
@@ -38256,13 +38256,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3dvEXT (
JNIEnv *env, jobject obj,
@@ -38291,13 +38291,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3fEXT (
JNIEnv *env, jobject obj,
@@ -38315,13 +38315,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3fvEXT (
JNIEnv *env, jobject obj,
@@ -38350,13 +38350,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3iEXT (
JNIEnv *env, jobject obj,
@@ -38374,13 +38374,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3ivEXT (
JNIEnv *env, jobject obj,
@@ -38409,13 +38409,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3sEXT (
JNIEnv *env, jobject obj,
@@ -38433,13 +38433,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3svEXT (
JNIEnv *env, jobject obj,
@@ -38468,13 +38468,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3ubEXT (
JNIEnv *env, jobject obj,
@@ -38492,13 +38492,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubEXT ( GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3ubvEXT (
JNIEnv *env, jobject obj,
@@ -38527,13 +38527,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubvEXT ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3uiEXT (
JNIEnv *env, jobject obj,
@@ -38551,13 +38551,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uiEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3uivEXT (
JNIEnv *env, jobject obj,
@@ -38586,13 +38586,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uivEXT ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3usEXT (
JNIEnv *env, jobject obj,
@@ -38610,13 +38610,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usEXT ( GLushort , GLushort , GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3usvEXT (
JNIEnv *env, jobject obj,
@@ -38645,13 +38645,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usvEXT ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColorPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -38890,13 +38890,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerEXT ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureNormalEXT (
JNIEnv *env, jobject obj,
@@ -38910,13 +38910,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureNormalEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiDrawArraysEXT (
JNIEnv *env, jobject obj,
@@ -38966,13 +38966,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawArraysEXT ( GLenum , GLint * , GLsizei * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiDrawElementsEXT__I_3II_3_3BI (
JNIEnv *env, jobject obj,
@@ -39330,13 +39330,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawElementsEXT ( GLenum , const GLsizei * , GLenum , const GLvoid * * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordfEXT (
JNIEnv *env, jobject obj,
@@ -39350,13 +39350,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordfvEXT (
JNIEnv *env, jobject obj,
@@ -39385,13 +39385,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoorddEXT (
JNIEnv *env, jobject obj,
@@ -39405,13 +39405,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddEXT ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoorddvEXT (
JNIEnv *env, jobject obj,
@@ -39440,13 +39440,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -39671,13 +39671,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3bEXT (
JNIEnv *env, jobject obj,
@@ -39695,13 +39695,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3bvEXT (
JNIEnv *env, jobject obj,
@@ -39730,13 +39730,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3dEXT (
JNIEnv *env, jobject obj,
@@ -39754,13 +39754,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3dvEXT (
JNIEnv *env, jobject obj,
@@ -39789,13 +39789,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3fEXT (
JNIEnv *env, jobject obj,
@@ -39813,13 +39813,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3fvEXT (
JNIEnv *env, jobject obj,
@@ -39848,13 +39848,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3iEXT (
JNIEnv *env, jobject obj,
@@ -39872,13 +39872,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3ivEXT (
JNIEnv *env, jobject obj,
@@ -39907,13 +39907,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3sEXT (
JNIEnv *env, jobject obj,
@@ -39931,13 +39931,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3svEXT (
JNIEnv *env, jobject obj,
@@ -39966,13 +39966,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3bEXT (
JNIEnv *env, jobject obj,
@@ -39990,13 +39990,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3bvEXT (
JNIEnv *env, jobject obj,
@@ -40025,13 +40025,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3dEXT (
JNIEnv *env, jobject obj,
@@ -40049,13 +40049,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3dvEXT (
JNIEnv *env, jobject obj,
@@ -40084,13 +40084,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3fEXT (
JNIEnv *env, jobject obj,
@@ -40108,13 +40108,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3fvEXT (
JNIEnv *env, jobject obj,
@@ -40143,13 +40143,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3iEXT (
JNIEnv *env, jobject obj,
@@ -40167,13 +40167,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3ivEXT (
JNIEnv *env, jobject obj,
@@ -40202,13 +40202,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3sEXT (
JNIEnv *env, jobject obj,
@@ -40226,13 +40226,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3svEXT (
JNIEnv *env, jobject obj,
@@ -40261,13 +40261,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangentPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -40492,13 +40492,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangentPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormalPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -40723,13 +40723,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormalPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinishTextureSUNX (
JNIEnv *env, jobject obj)
@@ -40741,13 +40741,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishTextureSUNX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorbSUN (
JNIEnv *env, jobject obj,
@@ -40761,13 +40761,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorbSUN ( GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorsSUN (
JNIEnv *env, jobject obj,
@@ -40781,13 +40781,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorsSUN ( GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactoriSUN (
JNIEnv *env, jobject obj,
@@ -40801,13 +40801,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoriSUN ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorfSUN (
JNIEnv *env, jobject obj,
@@ -40821,13 +40821,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorfSUN ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactordSUN (
JNIEnv *env, jobject obj,
@@ -40841,13 +40841,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactordSUN ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorubSUN (
JNIEnv *env, jobject obj,
@@ -40861,13 +40861,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorusSUN (
JNIEnv *env, jobject obj,
@@ -40881,13 +40881,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactoruiSUN (
JNIEnv *env, jobject obj,
@@ -40901,13 +40901,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoruiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiSUN (
JNIEnv *env, jobject obj,
@@ -40921,13 +40921,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeusSUN (
JNIEnv *env, jobject obj,
@@ -40941,13 +40941,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeubSUN (
JNIEnv *env, jobject obj,
@@ -40961,13 +40961,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuivSUN (
JNIEnv *env, jobject obj,
@@ -40996,13 +40996,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuivSUN ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeusvSUN (
JNIEnv *env, jobject obj,
@@ -41031,13 +41031,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusvSUN ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeubvSUN (
JNIEnv *env, jobject obj,
@@ -41066,13 +41066,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubvSUN ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodePointerSUN__II_3_3B (
JNIEnv *env, jobject obj,
@@ -41297,13 +41297,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodePointerSUN ( GLenum , GLsizei , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex2fSUN (
JNIEnv *env, jobject obj,
@@ -41327,13 +41327,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex2fvSUN (
JNIEnv *env, jobject obj,
@@ -41379,13 +41379,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -41411,13 +41411,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -41463,13 +41463,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -41493,13 +41493,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -41545,13 +41545,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -41575,13 +41575,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -41627,13 +41627,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -41665,13 +41665,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -41734,13 +41734,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -41762,13 +41762,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -41814,13 +41814,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fVertex4fSUN (
JNIEnv *env, jobject obj,
@@ -41848,13 +41848,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fVertex4fvSUN (
JNIEnv *env, jobject obj,
@@ -41900,13 +41900,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -41936,13 +41936,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fSUN ( GLfloat , GLfloat , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -42005,13 +42005,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fvSUN ( const GLfloat * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -42039,13 +42039,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -42108,13 +42108,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -42142,13 +42142,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -42211,13 +42211,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -42253,13 +42253,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -42339,13 +42339,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fColor4fNormal3fVertex4fSUN (
JNIEnv *env, jobject obj,
@@ -42387,13 +42387,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fColor4fNormal3fVertex4fvSUN (
JNIEnv *env, jobject obj,
@@ -42473,13 +42473,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -42499,13 +42499,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -42551,13 +42551,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fvSUN ( const GLenum * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -42585,13 +42585,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fSUN ( GLenum , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -42654,13 +42654,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fvSUN ( const GLenum * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -42686,13 +42686,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -42755,13 +42755,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -42787,13 +42787,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -42856,13 +42856,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -42896,13 +42896,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -42982,13 +42982,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -43012,13 +43012,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -43081,13 +43081,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -43117,13 +43117,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -43203,13 +43203,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -43247,13 +43247,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -43350,13 +43350,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendFuncSeparateEXT (
JNIEnv *env, jobject obj,
@@ -43376,13 +43376,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateEXT ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendFuncSeparateINGR (
JNIEnv *env, jobject obj,
@@ -43402,13 +43402,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateINGR ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexWeightfEXT (
JNIEnv *env, jobject obj,
@@ -43422,13 +43422,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexWeightfvEXT (
JNIEnv *env, jobject obj,
@@ -43457,13 +43457,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexWeightPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -43702,13 +43702,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightPointerEXT ( GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFlushVertexArrayRangeNV (
JNIEnv *env, jobject obj)
@@ -43720,13 +43720,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushVertexArrayRangeNV ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexArrayRangeNV__I_3B (
JNIEnv *env, jobject obj,
@@ -43937,13 +43937,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexArrayRangeNV ( GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameterfvNV (
JNIEnv *env, jobject obj,
@@ -43974,13 +43974,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfvNV ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameterfNV (
JNIEnv *env, jobject obj,
@@ -43996,13 +43996,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfNV ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameterivNV (
JNIEnv *env, jobject obj,
@@ -44033,13 +44033,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterivNV ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameteriNV (
JNIEnv *env, jobject obj,
@@ -44055,13 +44055,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameteriNV ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerInputNV (
JNIEnv *env, jobject obj,
@@ -44085,13 +44085,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerInputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerOutputNV (
JNIEnv *env, jobject obj,
@@ -44123,13 +44123,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerOutputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinalCombinerInputNV (
JNIEnv *env, jobject obj,
@@ -44149,13 +44149,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinalCombinerInputNV ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerInputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -44192,13 +44192,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterfvNV ( GLenum , GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerInputParameterivNV (
JNIEnv *env, jobject obj,
@@ -44235,13 +44235,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterivNV ( GLenum , GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerOutputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -44276,13 +44276,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterfvNV ( GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerOutputParameterivNV (
JNIEnv *env, jobject obj,
@@ -44317,13 +44317,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterivNV ( GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFinalCombinerInputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -44356,13 +44356,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFinalCombinerInputParameterivNV (
JNIEnv *env, jobject obj,
@@ -44395,13 +44395,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiModeDrawArraysIBM (
JNIEnv *env, jobject obj,
@@ -44453,13 +44453,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawArraysIBM ( GLenum , const GLint * , const GLsizei * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiModeDrawElementsIBM___3I_3II_3_3BII (
JNIEnv *env, jobject obj,
@@ -44936,13 +44936,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawElementsIBM ( const GLenum * , const GLsizei * , GLenum , const GLvoid * * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -45195,13 +45195,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColorPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -45454,13 +45454,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagPointerListIBM (
JNIEnv *env, jobject obj,
@@ -45493,13 +45493,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerListIBM ( GLint , const GLboolean * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -45738,13 +45738,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -45983,13 +45983,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -46228,13 +46228,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -46487,13 +46487,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -46746,13 +46746,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTbufferMask3DFX (
JNIEnv *env, jobject obj,
@@ -46766,13 +46766,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTbufferMask3DFX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleMaskEXT (
JNIEnv *env, jobject obj,
@@ -46788,13 +46788,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskEXT ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSamplePatternEXT (
JNIEnv *env, jobject obj,
@@ -46808,13 +46808,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureColorMaskSGIS (
JNIEnv *env, jobject obj,
@@ -46834,13 +46834,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureColorMaskSGIS ( GLboolean , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIglooInterfaceSGIX__I_3B (
JNIEnv *env, jobject obj,
@@ -47051,13 +47051,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIglooInterfaceSGIX ( GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenFencesNV (
JNIEnv *env, jobject obj,
@@ -47088,13 +47088,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenFencesNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteFencesNV (
JNIEnv *env, jobject obj,
@@ -47125,13 +47125,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFencesNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetFenceNV (
JNIEnv *env, jobject obj,
@@ -47147,13 +47147,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFenceNV ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glTestFenceNV (
JNIEnv *env, jobject obj,
@@ -47170,13 +47170,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glTestFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinishFenceNV (
JNIEnv *env, jobject obj,
@@ -47190,13 +47190,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsFenceNV (
JNIEnv *env, jobject obj,
@@ -47213,13 +47213,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFenceivNV (
JNIEnv *env, jobject obj,
@@ -47252,13 +47252,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFenceivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapControlPointsNV__IIIIIIIZ_3B (
JNIEnv *env, jobject obj,
@@ -47567,13 +47567,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLint , GLint , GLboolean , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapParameterivNV (
JNIEnv *env, jobject obj,
@@ -47606,13 +47606,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterivNV ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapParameterfvNV (
JNIEnv *env, jobject obj,
@@ -47645,13 +47645,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapControlPointsNV__IIIIIZ_3B (
JNIEnv *env, jobject obj,
@@ -47932,13 +47932,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, (isCopiedArray6 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLboolean , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapParameterivNV (
JNIEnv *env, jobject obj,
@@ -47971,13 +47971,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapParameterfvNV (
JNIEnv *env, jobject obj,
@@ -48010,13 +48010,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapAttribParameterivNV (
JNIEnv *env, jobject obj,
@@ -48051,13 +48051,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapAttribParameterfvNV (
JNIEnv *env, jobject obj,
@@ -48092,13 +48092,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalMapsNV (
JNIEnv *env, jobject obj,
@@ -48114,13 +48114,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMapsNV ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerStageParameterfvNV (
JNIEnv *env, jobject obj,
@@ -48153,13 +48153,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerStageParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerStageParameterfvNV (
JNIEnv *env, jobject obj,
@@ -48192,13 +48192,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerStageParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindProgramNV (
JNIEnv *env, jobject obj,
@@ -48214,13 +48214,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindProgramNV ( GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteProgramsNV (
JNIEnv *env, jobject obj,
@@ -48251,13 +48251,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glExecuteProgramNV (
JNIEnv *env, jobject obj,
@@ -48290,13 +48290,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glExecuteProgramNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenProgramsNV (
JNIEnv *env, jobject obj,
@@ -48327,13 +48327,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenProgramsNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glAreProgramsResidentNV (
JNIEnv *env, jobject obj,
@@ -48384,13 +48384,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreProgramsResidentNV ( GLsizei , const GLuint * , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRequestResidentProgramsNV (
JNIEnv *env, jobject obj,
@@ -48421,13 +48421,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRequestResidentProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramParameterfvNV (
JNIEnv *env, jobject obj,
@@ -48462,13 +48462,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramParameterdvNV (
JNIEnv *env, jobject obj,
@@ -48503,13 +48503,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterdvNV ( GLenum , GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramivNV (
JNIEnv *env, jobject obj,
@@ -48542,13 +48542,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramStringNV (
JNIEnv *env, jobject obj,
@@ -48581,13 +48581,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramStringNV ( GLuint , GLenum , GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTrackMatrixivNV (
JNIEnv *env, jobject obj,
@@ -48622,13 +48622,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTrackMatrixivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribdvNV (
JNIEnv *env, jobject obj,
@@ -48661,13 +48661,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribdvNV ( GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribfvNV (
JNIEnv *env, jobject obj,
@@ -48700,13 +48700,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribfvNV ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribivNV (
JNIEnv *env, jobject obj,
@@ -48739,13 +48739,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribPointervNV__II_3_3B (
JNIEnv *env, jobject obj,
@@ -48970,13 +48970,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribPointervNV ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsProgramNV (
JNIEnv *env, jobject obj,
@@ -48993,13 +48993,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsProgramNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadProgramNV (
JNIEnv *env, jobject obj,
@@ -49034,13 +49034,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadProgramNV ( GLenum , GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4fNV (
JNIEnv *env, jobject obj,
@@ -49064,13 +49064,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fNV ( GLenum , GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4dNV (
JNIEnv *env, jobject obj,
@@ -49094,13 +49094,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dNV ( GLenum , GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4dvNV (
JNIEnv *env, jobject obj,
@@ -49133,13 +49133,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dvNV ( GLenum , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4fvNV (
JNIEnv *env, jobject obj,
@@ -49172,13 +49172,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fvNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameters4dvNV (
JNIEnv *env, jobject obj,
@@ -49213,13 +49213,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4dvNV ( GLenum , GLuint , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameters4fvNV (
JNIEnv *env, jobject obj,
@@ -49254,13 +49254,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4fvNV ( GLenum , GLuint , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTrackMatrixNV (
JNIEnv *env, jobject obj,
@@ -49280,13 +49280,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTrackMatrixNV ( GLenum , GLuint , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribPointerNV__IIII_3B (
JNIEnv *env, jobject obj,
@@ -49539,13 +49539,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribPointerNV ( GLuint , GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1sNV (
JNIEnv *env, jobject obj,
@@ -49561,13 +49561,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1sNV ( GLuint , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1fNV (
JNIEnv *env, jobject obj,
@@ -49583,13 +49583,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fNV ( GLuint , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1dNV (
JNIEnv *env, jobject obj,
@@ -49605,13 +49605,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dNV ( GLuint , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2sNV (
JNIEnv *env, jobject obj,
@@ -49629,13 +49629,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2sNV ( GLuint , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2fNV (
JNIEnv *env, jobject obj,
@@ -49653,13 +49653,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fNV ( GLuint , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2dNV (
JNIEnv *env, jobject obj,
@@ -49677,13 +49677,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dNV ( GLuint , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3sNV (
JNIEnv *env, jobject obj,
@@ -49703,13 +49703,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3sNV ( GLuint , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3fNV (
JNIEnv *env, jobject obj,
@@ -49729,13 +49729,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fNV ( GLuint , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3dNV (
JNIEnv *env, jobject obj,
@@ -49755,13 +49755,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dNV ( GLuint , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4sNV (
JNIEnv *env, jobject obj,
@@ -49783,13 +49783,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4sNV ( GLuint , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4fNV (
JNIEnv *env, jobject obj,
@@ -49811,13 +49811,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fNV ( GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4dNV (
JNIEnv *env, jobject obj,
@@ -49839,13 +49839,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dNV ( GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4ubNV (
JNIEnv *env, jobject obj,
@@ -49867,13 +49867,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubNV ( GLuint , GLubyte , GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1svNV (
JNIEnv *env, jobject obj,
@@ -49904,13 +49904,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1fvNV (
JNIEnv *env, jobject obj,
@@ -49941,13 +49941,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1dvNV (
JNIEnv *env, jobject obj,
@@ -49978,13 +49978,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2svNV (
JNIEnv *env, jobject obj,
@@ -50015,13 +50015,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2fvNV (
JNIEnv *env, jobject obj,
@@ -50052,13 +50052,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2dvNV (
JNIEnv *env, jobject obj,
@@ -50089,13 +50089,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3svNV (
JNIEnv *env, jobject obj,
@@ -50126,13 +50126,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3fvNV (
JNIEnv *env, jobject obj,
@@ -50163,13 +50163,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3dvNV (
JNIEnv *env, jobject obj,
@@ -50200,13 +50200,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4svNV (
JNIEnv *env, jobject obj,
@@ -50237,13 +50237,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4fvNV (
JNIEnv *env, jobject obj,
@@ -50274,13 +50274,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4dvNV (
JNIEnv *env, jobject obj,
@@ -50311,13 +50311,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4ubvNV (
JNIEnv *env, jobject obj,
@@ -50348,13 +50348,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubvNV ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs1svNV (
JNIEnv *env, jobject obj,
@@ -50387,13 +50387,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs1fvNV (
JNIEnv *env, jobject obj,
@@ -50426,13 +50426,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs1dvNV (
JNIEnv *env, jobject obj,
@@ -50465,13 +50465,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs2svNV (
JNIEnv *env, jobject obj,
@@ -50504,13 +50504,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs2fvNV (
JNIEnv *env, jobject obj,
@@ -50543,13 +50543,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs2dvNV (
JNIEnv *env, jobject obj,
@@ -50582,13 +50582,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs3svNV (
JNIEnv *env, jobject obj,
@@ -50621,13 +50621,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs3fvNV (
JNIEnv *env, jobject obj,
@@ -50660,13 +50660,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs3dvNV (
JNIEnv *env, jobject obj,
@@ -50699,13 +50699,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4svNV (
JNIEnv *env, jobject obj,
@@ -50738,13 +50738,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4fvNV (
JNIEnv *env, jobject obj,
@@ -50777,13 +50777,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4dvNV (
JNIEnv *env, jobject obj,
@@ -50816,13 +50816,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4ubvNV (
JNIEnv *env, jobject obj,
@@ -50855,13 +50855,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4ubvNV ( GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexBumpParameterivATI (
JNIEnv *env, jobject obj,
@@ -50892,13 +50892,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterivATI ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexBumpParameterfvATI (
JNIEnv *env, jobject obj,
@@ -50929,13 +50929,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterfvATI ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexBumpParameterivATI (
JNIEnv *env, jobject obj,
@@ -50966,13 +50966,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterivATI ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexBumpParameterfvATI (
JNIEnv *env, jobject obj,
@@ -51003,13 +51003,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterfvATI ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenFragmentShadersATI (
JNIEnv *env, jobject obj,
@@ -51026,13 +51026,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenFragmentShadersATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindFragmentShaderATI (
JNIEnv *env, jobject obj,
@@ -51046,13 +51046,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteFragmentShaderATI (
JNIEnv *env, jobject obj,
@@ -51066,13 +51066,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBeginFragmentShaderATI (
JNIEnv *env, jobject obj)
@@ -51084,13 +51084,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEndFragmentShaderATI (
JNIEnv *env, jobject obj)
@@ -51102,13 +51102,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPassTexCoordATI (
JNIEnv *env, jobject obj,
@@ -51126,13 +51126,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPassTexCoordATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleMapATI (
JNIEnv *env, jobject obj,
@@ -51150,13 +51150,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMapATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorFragmentOp1ATI (
JNIEnv *env, jobject obj,
@@ -51182,13 +51182,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorFragmentOp2ATI (
JNIEnv *env, jobject obj,
@@ -51220,13 +51220,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorFragmentOp3ATI (
JNIEnv *env, jobject obj,
@@ -51264,13 +51264,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFragmentOp1ATI (
JNIEnv *env, jobject obj,
@@ -51294,13 +51294,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFragmentOp2ATI (
JNIEnv *env, jobject obj,
@@ -51330,13 +51330,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFragmentOp3ATI (
JNIEnv *env, jobject obj,
@@ -51372,13 +51372,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetFragmentShaderConstantATI (
JNIEnv *env, jobject obj,
@@ -51409,13 +51409,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFragmentShaderConstantATI ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPNTrianglesiATI (
JNIEnv *env, jobject obj,
@@ -51431,13 +51431,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesiATI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPNTrianglesfATI (
JNIEnv *env, jobject obj,
@@ -51453,13 +51453,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesfATI ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glNewObjectBufferATI__I_3BI (
JNIEnv *env, jobject obj,
@@ -51705,13 +51705,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glNewObjectBufferATI ( GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsObjectBufferATI (
JNIEnv *env, jobject obj,
@@ -51728,13 +51728,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glUpdateObjectBufferATI__III_3BI (
JNIEnv *env, jobject obj,
@@ -51987,13 +51987,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glUpdateObjectBufferATI ( GLuint , GLuint , GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetObjectBufferfvATI (
JNIEnv *env, jobject obj,
@@ -52026,13 +52026,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetObjectBufferivATI (
JNIEnv *env, jobject obj,
@@ -52065,13 +52065,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteObjectBufferATI (
JNIEnv *env, jobject obj,
@@ -52085,13 +52085,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glArrayObjectATI (
JNIEnv *env, jobject obj,
@@ -52115,13 +52115,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayObjectATI ( GLenum , GLint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetArrayObjectfvATI (
JNIEnv *env, jobject obj,
@@ -52154,13 +52154,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectfvATI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetArrayObjectivATI (
JNIEnv *env, jobject obj,
@@ -52193,13 +52193,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectivATI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantArrayObjectATI (
JNIEnv *env, jobject obj,
@@ -52221,13 +52221,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantArrayObjectATI ( GLuint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantArrayObjectfvATI (
JNIEnv *env, jobject obj,
@@ -52260,13 +52260,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantArrayObjectivATI (
JNIEnv *env, jobject obj,
@@ -52299,13 +52299,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBeginVertexShaderEXT (
JNIEnv *env, jobject obj)
@@ -52317,13 +52317,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEndVertexShaderEXT (
JNIEnv *env, jobject obj)
@@ -52335,13 +52335,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindVertexShaderEXT (
JNIEnv *env, jobject obj,
@@ -52355,13 +52355,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenVertexShadersEXT (
JNIEnv *env, jobject obj,
@@ -52378,13 +52378,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenVertexShadersEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteVertexShaderEXT (
JNIEnv *env, jobject obj,
@@ -52398,13 +52398,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShaderOp1EXT (
JNIEnv *env, jobject obj,
@@ -52422,13 +52422,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp1EXT ( GLenum , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShaderOp2EXT (
JNIEnv *env, jobject obj,
@@ -52448,13 +52448,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp2EXT ( GLenum , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShaderOp3EXT (
JNIEnv *env, jobject obj,
@@ -52476,13 +52476,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp3EXT ( GLenum , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSwizzleEXT (
JNIEnv *env, jobject obj,
@@ -52506,13 +52506,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSwizzleEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWriteMaskEXT (
JNIEnv *env, jobject obj,
@@ -52536,13 +52536,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWriteMaskEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInsertComponentEXT (
JNIEnv *env, jobject obj,
@@ -52560,13 +52560,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInsertComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glExtractComponentEXT (
JNIEnv *env, jobject obj,
@@ -52584,13 +52584,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glExtractComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenSymbolsEXT (
JNIEnv *env, jobject obj,
@@ -52613,13 +52613,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenSymbolsEXT ( GLenum , GLenum , GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetInvariantEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -52844,13 +52844,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetInvariantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetLocalConstantEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -53075,13 +53075,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetLocalConstantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantbvEXT (
JNIEnv *env, jobject obj,
@@ -53112,13 +53112,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantbvEXT ( GLuint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantsvEXT (
JNIEnv *env, jobject obj,
@@ -53149,13 +53149,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantsvEXT ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantivEXT (
JNIEnv *env, jobject obj,
@@ -53186,13 +53186,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantivEXT ( GLuint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantfvEXT (
JNIEnv *env, jobject obj,
@@ -53223,13 +53223,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantfvEXT ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantdvEXT (
JNIEnv *env, jobject obj,
@@ -53260,13 +53260,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantdvEXT ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantubvEXT (
JNIEnv *env, jobject obj,
@@ -53297,13 +53297,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantubvEXT ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantusvEXT (
JNIEnv *env, jobject obj,
@@ -53334,13 +53334,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantusvEXT ( GLuint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantuivEXT (
JNIEnv *env, jobject obj,
@@ -53371,13 +53371,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantuivEXT ( GLuint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -53616,13 +53616,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantPointerEXT ( GLuint , GLenum , GLuint , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnableVariantClientStateEXT (
JNIEnv *env, jobject obj,
@@ -53636,13 +53636,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDisableVariantClientStateEXT (
JNIEnv *env, jobject obj,
@@ -53656,13 +53656,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindLightParameterEXT (
JNIEnv *env, jobject obj,
@@ -53681,13 +53681,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindLightParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindMaterialParameterEXT (
JNIEnv *env, jobject obj,
@@ -53706,13 +53706,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindMaterialParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindTexGenParameterEXT (
JNIEnv *env, jobject obj,
@@ -53733,13 +53733,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTexGenParameterEXT ( GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindTextureUnitParameterEXT (
JNIEnv *env, jobject obj,
@@ -53758,13 +53758,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTextureUnitParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindParameterEXT (
JNIEnv *env, jobject obj,
@@ -53781,13 +53781,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindParameterEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsVariantEnabledEXT (
JNIEnv *env, jobject obj,
@@ -53806,13 +53806,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsVariantEnabledEXT ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -53845,13 +53845,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -53884,13 +53884,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -53923,13 +53923,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantPointervEXT__II_3_3B (
JNIEnv *env, jobject obj,
@@ -54154,13 +54154,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantPointervEXT ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetInvariantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -54193,13 +54193,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetInvariantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -54232,13 +54232,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetInvariantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -54271,13 +54271,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLocalConstantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -54310,13 +54310,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLocalConstantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -54349,13 +54349,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLocalConstantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -54388,13 +54388,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1s (
JNIEnv *env, jobject obj,
@@ -54410,13 +54410,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1s ( GLenum , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1sv (
JNIEnv *env, jobject obj,
@@ -54447,13 +54447,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1i (
JNIEnv *env, jobject obj,
@@ -54469,13 +54469,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1i ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1iv (
JNIEnv *env, jobject obj,
@@ -54506,13 +54506,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1f (
JNIEnv *env, jobject obj,
@@ -54528,13 +54528,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1f ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1fv (
JNIEnv *env, jobject obj,
@@ -54565,13 +54565,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1d (
JNIEnv *env, jobject obj,
@@ -54587,13 +54587,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1d ( GLenum , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1dv (
JNIEnv *env, jobject obj,
@@ -54624,13 +54624,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2s (
JNIEnv *env, jobject obj,
@@ -54648,13 +54648,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2s ( GLenum , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2sv (
JNIEnv *env, jobject obj,
@@ -54685,13 +54685,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2i (
JNIEnv *env, jobject obj,
@@ -54709,13 +54709,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2i ( GLenum , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2iv (
JNIEnv *env, jobject obj,
@@ -54746,13 +54746,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2f (
JNIEnv *env, jobject obj,
@@ -54770,13 +54770,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2f ( GLenum , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2fv (
JNIEnv *env, jobject obj,
@@ -54807,13 +54807,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2d (
JNIEnv *env, jobject obj,
@@ -54831,13 +54831,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2d ( GLenum , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2dv (
JNIEnv *env, jobject obj,
@@ -54868,13 +54868,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3s (
JNIEnv *env, jobject obj,
@@ -54894,13 +54894,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3sv (
JNIEnv *env, jobject obj,
@@ -54931,13 +54931,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3i (
JNIEnv *env, jobject obj,
@@ -54957,13 +54957,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3iv (
JNIEnv *env, jobject obj,
@@ -54994,13 +54994,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3f (
JNIEnv *env, jobject obj,
@@ -55020,13 +55020,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3fv (
JNIEnv *env, jobject obj,
@@ -55057,13 +55057,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3d (
JNIEnv *env, jobject obj,
@@ -55083,13 +55083,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3dv (
JNIEnv *env, jobject obj,
@@ -55120,13 +55120,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4s (
JNIEnv *env, jobject obj,
@@ -55148,13 +55148,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4s ( GLenum , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4sv (
JNIEnv *env, jobject obj,
@@ -55185,13 +55185,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4i (
JNIEnv *env, jobject obj,
@@ -55213,13 +55213,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4i ( GLenum , GLint , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4iv (
JNIEnv *env, jobject obj,
@@ -55250,13 +55250,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4f (
JNIEnv *env, jobject obj,
@@ -55278,13 +55278,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4f ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4fv (
JNIEnv *env, jobject obj,
@@ -55315,13 +55315,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4d (
JNIEnv *env, jobject obj,
@@ -55343,13 +55343,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4d ( GLenum , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4dv (
JNIEnv *env, jobject obj,
@@ -55380,13 +55380,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3b (
JNIEnv *env, jobject obj,
@@ -55406,13 +55406,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3b ( GLenum , GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3bv (
JNIEnv *env, jobject obj,
@@ -55443,13 +55443,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3bv ( GLenum , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3s (
JNIEnv *env, jobject obj,
@@ -55469,13 +55469,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3sv (
JNIEnv *env, jobject obj,
@@ -55506,13 +55506,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3i (
JNIEnv *env, jobject obj,
@@ -55532,13 +55532,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3iv (
JNIEnv *env, jobject obj,
@@ -55569,13 +55569,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3f (
JNIEnv *env, jobject obj,
@@ -55595,13 +55595,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3fv (
JNIEnv *env, jobject obj,
@@ -55632,13 +55632,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3d (
JNIEnv *env, jobject obj,
@@ -55658,13 +55658,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3dv (
JNIEnv *env, jobject obj,
@@ -55695,13 +55695,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClientActiveVertexStream (
JNIEnv *env, jobject obj,
@@ -55715,13 +55715,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveVertexStream ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexBlendEnvi (
JNIEnv *env, jobject obj,
@@ -55737,13 +55737,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvi ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexBlendEnvf (
JNIEnv *env, jobject obj,
@@ -55759,5 +55759,5 @@
);
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/C2J/gl-proto-dynauto.c b/C2J/gl-proto-dynauto.c
index 6f207d2..ecc268f 100644
--- a/C2J/gl-proto-dynauto.c
+++ b/C2J/gl-proto-dynauto.c
@@ -4,13 +4,13 @@
* Reading from file: gl-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvf ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearIndex (
JNIEnv *env, jobject obj,
@@ -24,13 +24,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearIndex ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearColor (
JNIEnv *env, jobject obj,
@@ -50,13 +50,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClear (
JNIEnv *env, jobject obj,
@@ -70,13 +70,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClear ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexMask (
JNIEnv *env, jobject obj,
@@ -90,13 +90,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorMask (
JNIEnv *env, jobject obj,
@@ -116,13 +116,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMask ( GLboolean red , GLboolean green , GLboolean blue , GLboolean alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFunc (
JNIEnv *env, jobject obj,
@@ -138,13 +138,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFunc ( GLenum func , GLclampf ref ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendFunc (
JNIEnv *env, jobject obj,
@@ -160,13 +160,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFunc ( GLenum sfactor , GLenum dfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLogicOp (
JNIEnv *env, jobject obj,
@@ -180,13 +180,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLogicOp ( GLenum opcode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCullFace (
JNIEnv *env, jobject obj,
@@ -200,13 +200,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFrontFace (
JNIEnv *env, jobject obj,
@@ -220,13 +220,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrontFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointSize (
JNIEnv *env, jobject obj,
@@ -240,13 +240,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointSize ( GLfloat size ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLineWidth (
JNIEnv *env, jobject obj,
@@ -260,13 +260,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLineWidth ( GLfloat width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLineStipple (
JNIEnv *env, jobject obj,
@@ -282,13 +282,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLineStipple ( GLint factor , GLushort pattern ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonMode (
JNIEnv *env, jobject obj,
@@ -304,13 +304,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonMode ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonOffset (
JNIEnv *env, jobject obj,
@@ -326,13 +326,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffset ( GLfloat factor , GLfloat units ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonStipple (
JNIEnv *env, jobject obj,
@@ -355,13 +355,13 @@
(*env)->ReleaseByteArrayElements(env, mask, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonStipple ( const GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPolygonStipple (
JNIEnv *env, jobject obj,
@@ -385,13 +385,13 @@
(*env)->ReleaseByteArrayElements(env, mask, ptr0, (isCopiedArray0 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPolygonStipple ( GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlag (
JNIEnv *env, jobject obj,
@@ -405,13 +405,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlag ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagv (
JNIEnv *env, jobject obj,
@@ -434,13 +434,13 @@
(*env)->ReleaseBooleanArrayElements(env, flag, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagv ( const GLboolean * flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glScissor (
JNIEnv *env, jobject obj,
@@ -460,13 +460,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScissor ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClipPlane (
JNIEnv *env, jobject obj,
@@ -491,13 +491,13 @@
(*env)->ReleaseDoubleArrayElements(env, equation, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClipPlane ( GLenum plane , const GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetClipPlane (
JNIEnv *env, jobject obj,
@@ -523,13 +523,13 @@
(*env)->ReleaseDoubleArrayElements(env, equation, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetClipPlane ( GLenum plane , GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawBuffer (
JNIEnv *env, jobject obj,
@@ -543,13 +543,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReadBuffer (
JNIEnv *env, jobject obj,
@@ -563,13 +563,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnable (
JNIEnv *env, jobject obj,
@@ -583,13 +583,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDisable (
JNIEnv *env, jobject obj,
@@ -603,13 +603,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsEnabled (
JNIEnv *env, jobject obj,
@@ -626,13 +626,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsEnabled ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnableClientState (
JNIEnv *env, jobject obj,
@@ -646,13 +646,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDisableClientState (
JNIEnv *env, jobject obj,
@@ -666,13 +666,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetBooleanv (
JNIEnv *env, jobject obj,
@@ -698,13 +698,13 @@
(*env)->ReleaseBooleanArrayElements(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetBooleanv ( GLenum pname , GLboolean * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetDoublev (
JNIEnv *env, jobject obj,
@@ -730,13 +730,13 @@
(*env)->ReleaseDoubleArrayElements(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDoublev ( GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFloatv (
JNIEnv *env, jobject obj,
@@ -762,13 +762,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFloatv ( GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetIntegerv (
JNIEnv *env, jobject obj,
@@ -794,13 +794,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetIntegerv ( GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushAttrib (
JNIEnv *env, jobject obj,
@@ -814,13 +814,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopAttrib (
JNIEnv *env, jobject obj)
@@ -832,13 +832,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushClientAttrib (
JNIEnv *env, jobject obj,
@@ -852,13 +852,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushClientAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopClientAttrib (
JNIEnv *env, jobject obj)
@@ -870,13 +870,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopClientAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glRenderMode (
JNIEnv *env, jobject obj,
@@ -893,13 +893,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glRenderMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGetError (
JNIEnv *env, jobject obj)
@@ -914,13 +914,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLenum glGetError ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinish (
JNIEnv *env, jobject obj)
@@ -932,13 +932,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinish ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFlush (
JNIEnv *env, jobject obj)
@@ -950,13 +950,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlush ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHint (
JNIEnv *env, jobject obj,
@@ -972,13 +972,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHint ( GLenum target , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearDepth (
JNIEnv *env, jobject obj,
@@ -992,13 +992,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearDepth ( GLclampd depth ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDepthFunc (
JNIEnv *env, jobject obj,
@@ -1012,13 +1012,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthFunc ( GLenum func ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDepthMask (
JNIEnv *env, jobject obj,
@@ -1032,13 +1032,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthMask ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDepthRange (
JNIEnv *env, jobject obj,
@@ -1054,13 +1054,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthRange ( GLclampd near_val , GLclampd far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearAccum (
JNIEnv *env, jobject obj,
@@ -1080,13 +1080,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearAccum ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAccum (
JNIEnv *env, jobject obj,
@@ -1102,13 +1102,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAccum ( GLenum op , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixMode (
JNIEnv *env, jobject obj,
@@ -1122,13 +1122,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glOrtho (
JNIEnv *env, jobject obj,
@@ -1152,13 +1152,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glOrtho ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFrustum (
JNIEnv *env, jobject obj,
@@ -1182,13 +1182,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrustum ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glViewport (
JNIEnv *env, jobject obj,
@@ -1208,13 +1208,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glViewport ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushMatrix (
JNIEnv *env, jobject obj)
@@ -1226,13 +1226,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopMatrix (
JNIEnv *env, jobject obj)
@@ -1244,13 +1244,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadIdentity (
JNIEnv *env, jobject obj)
@@ -1262,13 +1262,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentity ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadMatrixd (
JNIEnv *env, jobject obj,
@@ -1291,13 +1291,13 @@
(*env)->ReleaseDoubleArrayElements(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadMatrixf (
JNIEnv *env, jobject obj,
@@ -1320,13 +1320,13 @@
(*env)->ReleaseFloatArrayElements(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultMatrixd (
JNIEnv *env, jobject obj,
@@ -1349,13 +1349,13 @@
(*env)->ReleaseDoubleArrayElements(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultMatrixf (
JNIEnv *env, jobject obj,
@@ -1378,13 +1378,13 @@
(*env)->ReleaseFloatArrayElements(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRotated (
JNIEnv *env, jobject obj,
@@ -1404,13 +1404,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRotated ( GLdouble angle , GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRotatef (
JNIEnv *env, jobject obj,
@@ -1430,13 +1430,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRotatef ( GLfloat angle , GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glScaled (
JNIEnv *env, jobject obj,
@@ -1454,13 +1454,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScaled ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glScalef (
JNIEnv *env, jobject obj,
@@ -1478,13 +1478,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScalef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTranslated (
JNIEnv *env, jobject obj,
@@ -1502,13 +1502,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslated ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTranslatef (
JNIEnv *env, jobject obj,
@@ -1526,13 +1526,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslatef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsList (
JNIEnv *env, jobject obj,
@@ -1549,13 +1549,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteLists (
JNIEnv *env, jobject obj,
@@ -1571,13 +1571,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteLists ( GLuint list , GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenLists (
JNIEnv *env, jobject obj,
@@ -1594,13 +1594,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenLists ( GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNewList (
JNIEnv *env, jobject obj,
@@ -1616,13 +1616,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNewList ( GLuint list , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEndList (
JNIEnv *env, jobject obj)
@@ -1634,13 +1634,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndList ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCallList (
JNIEnv *env, jobject obj,
@@ -1654,13 +1654,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCallList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCallLists__II_3B (
JNIEnv *env, jobject obj,
@@ -1843,13 +1843,13 @@
(*env)->ReleaseLongArrayElements(env, lists, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCallLists ( GLsizei n , GLenum type , const GLvoid * lists ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListBase (
JNIEnv *env, jobject obj,
@@ -1863,13 +1863,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListBase ( GLuint base ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBegin (
JNIEnv *env, jobject obj,
@@ -1883,13 +1883,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBegin ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnd (
JNIEnv *env, jobject obj)
@@ -1901,13 +1901,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnd ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2d (
JNIEnv *env, jobject obj,
@@ -1923,13 +1923,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2f (
JNIEnv *env, jobject obj,
@@ -1945,13 +1945,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2i (
JNIEnv *env, jobject obj,
@@ -1967,13 +1967,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2s (
JNIEnv *env, jobject obj,
@@ -1989,13 +1989,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3d (
JNIEnv *env, jobject obj,
@@ -2013,13 +2013,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3f (
JNIEnv *env, jobject obj,
@@ -2037,13 +2037,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3i (
JNIEnv *env, jobject obj,
@@ -2061,13 +2061,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3s (
JNIEnv *env, jobject obj,
@@ -2085,13 +2085,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4d (
JNIEnv *env, jobject obj,
@@ -2111,13 +2111,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4f (
JNIEnv *env, jobject obj,
@@ -2137,13 +2137,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4i (
JNIEnv *env, jobject obj,
@@ -2163,13 +2163,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4s (
JNIEnv *env, jobject obj,
@@ -2189,13 +2189,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2dv (
JNIEnv *env, jobject obj,
@@ -2218,13 +2218,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2fv (
JNIEnv *env, jobject obj,
@@ -2247,13 +2247,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2iv (
JNIEnv *env, jobject obj,
@@ -2276,13 +2276,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2sv (
JNIEnv *env, jobject obj,
@@ -2305,13 +2305,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3dv (
JNIEnv *env, jobject obj,
@@ -2334,13 +2334,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3fv (
JNIEnv *env, jobject obj,
@@ -2363,13 +2363,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3iv (
JNIEnv *env, jobject obj,
@@ -2392,13 +2392,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3sv (
JNIEnv *env, jobject obj,
@@ -2421,13 +2421,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4dv (
JNIEnv *env, jobject obj,
@@ -2450,13 +2450,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4fv (
JNIEnv *env, jobject obj,
@@ -2479,13 +2479,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4iv (
JNIEnv *env, jobject obj,
@@ -2508,13 +2508,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4sv (
JNIEnv *env, jobject obj,
@@ -2537,13 +2537,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3b (
JNIEnv *env, jobject obj,
@@ -2561,13 +2561,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3b ( GLbyte nx , GLbyte ny , GLbyte nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3d (
JNIEnv *env, jobject obj,
@@ -2585,13 +2585,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3d ( GLdouble nx , GLdouble ny , GLdouble nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3f (
JNIEnv *env, jobject obj,
@@ -2609,13 +2609,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3f ( GLfloat nx , GLfloat ny , GLfloat nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3i (
JNIEnv *env, jobject obj,
@@ -2633,13 +2633,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3i ( GLint nx , GLint ny , GLint nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3s (
JNIEnv *env, jobject obj,
@@ -2657,13 +2657,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3s ( GLshort nx , GLshort ny , GLshort nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3bv (
JNIEnv *env, jobject obj,
@@ -2686,13 +2686,13 @@
(*env)->ReleaseByteArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3dv (
JNIEnv *env, jobject obj,
@@ -2715,13 +2715,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3fv (
JNIEnv *env, jobject obj,
@@ -2744,13 +2744,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3iv (
JNIEnv *env, jobject obj,
@@ -2773,13 +2773,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3sv (
JNIEnv *env, jobject obj,
@@ -2802,13 +2802,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexd (
JNIEnv *env, jobject obj,
@@ -2822,13 +2822,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexd ( GLdouble c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexf (
JNIEnv *env, jobject obj,
@@ -2842,13 +2842,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexf ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexi (
JNIEnv *env, jobject obj,
@@ -2862,13 +2862,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexi ( GLint c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexs (
JNIEnv *env, jobject obj,
@@ -2882,13 +2882,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexs ( GLshort c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexub (
JNIEnv *env, jobject obj,
@@ -2902,13 +2902,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexub ( GLubyte c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexdv (
JNIEnv *env, jobject obj,
@@ -2931,13 +2931,13 @@
(*env)->ReleaseDoubleArrayElements(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexdv ( const GLdouble * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexfv (
JNIEnv *env, jobject obj,
@@ -2960,13 +2960,13 @@
(*env)->ReleaseFloatArrayElements(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexfv ( const GLfloat * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexiv (
JNIEnv *env, jobject obj,
@@ -2989,13 +2989,13 @@
(*env)->ReleaseIntArrayElements(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexiv ( const GLint * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexsv (
JNIEnv *env, jobject obj,
@@ -3018,13 +3018,13 @@
(*env)->ReleaseShortArrayElements(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexsv ( const GLshort * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexubv (
JNIEnv *env, jobject obj,
@@ -3047,13 +3047,13 @@
(*env)->ReleaseByteArrayElements(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexubv ( const GLubyte * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3b (
JNIEnv *env, jobject obj,
@@ -3071,13 +3071,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3b ( GLbyte red , GLbyte green , GLbyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3d (
JNIEnv *env, jobject obj,
@@ -3095,13 +3095,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3d ( GLdouble red , GLdouble green , GLdouble blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3f (
JNIEnv *env, jobject obj,
@@ -3119,13 +3119,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3f ( GLfloat red , GLfloat green , GLfloat blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3i (
JNIEnv *env, jobject obj,
@@ -3143,13 +3143,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3i ( GLint red , GLint green , GLint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3s (
JNIEnv *env, jobject obj,
@@ -3167,13 +3167,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3s ( GLshort red , GLshort green , GLshort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3ub (
JNIEnv *env, jobject obj,
@@ -3191,13 +3191,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ub ( GLubyte red , GLubyte green , GLubyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3ui (
JNIEnv *env, jobject obj,
@@ -3215,13 +3215,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ui ( GLuint red , GLuint green , GLuint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3us (
JNIEnv *env, jobject obj,
@@ -3239,13 +3239,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3us ( GLushort red , GLushort green , GLushort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4b (
JNIEnv *env, jobject obj,
@@ -3265,13 +3265,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4b ( GLbyte red , GLbyte green , GLbyte blue , GLbyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4d (
JNIEnv *env, jobject obj,
@@ -3291,13 +3291,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4d ( GLdouble red , GLdouble green , GLdouble blue , GLdouble alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4f (
JNIEnv *env, jobject obj,
@@ -3317,13 +3317,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4f ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4i (
JNIEnv *env, jobject obj,
@@ -3343,13 +3343,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4i ( GLint red , GLint green , GLint blue , GLint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4s (
JNIEnv *env, jobject obj,
@@ -3369,13 +3369,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4s ( GLshort red , GLshort green , GLshort blue , GLshort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ub (
JNIEnv *env, jobject obj,
@@ -3395,13 +3395,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ub ( GLubyte red , GLubyte green , GLubyte blue , GLubyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ui (
JNIEnv *env, jobject obj,
@@ -3421,13 +3421,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ui ( GLuint red , GLuint green , GLuint blue , GLuint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4us (
JNIEnv *env, jobject obj,
@@ -3447,13 +3447,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4us ( GLushort red , GLushort green , GLushort blue , GLushort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3bv (
JNIEnv *env, jobject obj,
@@ -3476,13 +3476,13 @@
(*env)->ReleaseByteArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3dv (
JNIEnv *env, jobject obj,
@@ -3505,13 +3505,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3fv (
JNIEnv *env, jobject obj,
@@ -3534,13 +3534,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3iv (
JNIEnv *env, jobject obj,
@@ -3563,13 +3563,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3sv (
JNIEnv *env, jobject obj,
@@ -3592,13 +3592,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3ubv (
JNIEnv *env, jobject obj,
@@ -3621,13 +3621,13 @@
(*env)->ReleaseByteArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3uiv (
JNIEnv *env, jobject obj,
@@ -3650,13 +3650,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3usv (
JNIEnv *env, jobject obj,
@@ -3679,13 +3679,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4bv (
JNIEnv *env, jobject obj,
@@ -3708,13 +3708,13 @@
(*env)->ReleaseByteArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4dv (
JNIEnv *env, jobject obj,
@@ -3737,13 +3737,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4fv (
JNIEnv *env, jobject obj,
@@ -3766,13 +3766,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4iv (
JNIEnv *env, jobject obj,
@@ -3795,13 +3795,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4sv (
JNIEnv *env, jobject obj,
@@ -3824,13 +3824,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubv (
JNIEnv *env, jobject obj,
@@ -3853,13 +3853,13 @@
(*env)->ReleaseByteArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4uiv (
JNIEnv *env, jobject obj,
@@ -3882,13 +3882,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4usv (
JNIEnv *env, jobject obj,
@@ -3911,13 +3911,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1d (
JNIEnv *env, jobject obj,
@@ -3931,13 +3931,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1d ( GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1f (
JNIEnv *env, jobject obj,
@@ -3951,13 +3951,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1f ( GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1i (
JNIEnv *env, jobject obj,
@@ -3971,13 +3971,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1i ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1s (
JNIEnv *env, jobject obj,
@@ -3991,13 +3991,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1s ( GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2d (
JNIEnv *env, jobject obj,
@@ -4013,13 +4013,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2d ( GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2f (
JNIEnv *env, jobject obj,
@@ -4035,13 +4035,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2f ( GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2i (
JNIEnv *env, jobject obj,
@@ -4057,13 +4057,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2i ( GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2s (
JNIEnv *env, jobject obj,
@@ -4079,13 +4079,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2s ( GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3d (
JNIEnv *env, jobject obj,
@@ -4103,13 +4103,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3d ( GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3f (
JNIEnv *env, jobject obj,
@@ -4127,13 +4127,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3f ( GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3i (
JNIEnv *env, jobject obj,
@@ -4151,13 +4151,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3i ( GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3s (
JNIEnv *env, jobject obj,
@@ -4175,13 +4175,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3s ( GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4d (
JNIEnv *env, jobject obj,
@@ -4201,13 +4201,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4d ( GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4f (
JNIEnv *env, jobject obj,
@@ -4227,13 +4227,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4f ( GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4i (
JNIEnv *env, jobject obj,
@@ -4253,13 +4253,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4i ( GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4s (
JNIEnv *env, jobject obj,
@@ -4279,13 +4279,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4s ( GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1dv (
JNIEnv *env, jobject obj,
@@ -4308,13 +4308,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1fv (
JNIEnv *env, jobject obj,
@@ -4337,13 +4337,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1iv (
JNIEnv *env, jobject obj,
@@ -4366,13 +4366,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1sv (
JNIEnv *env, jobject obj,
@@ -4395,13 +4395,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2dv (
JNIEnv *env, jobject obj,
@@ -4424,13 +4424,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fv (
JNIEnv *env, jobject obj,
@@ -4453,13 +4453,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2iv (
JNIEnv *env, jobject obj,
@@ -4482,13 +4482,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2sv (
JNIEnv *env, jobject obj,
@@ -4511,13 +4511,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3dv (
JNIEnv *env, jobject obj,
@@ -4540,13 +4540,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3fv (
JNIEnv *env, jobject obj,
@@ -4569,13 +4569,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3iv (
JNIEnv *env, jobject obj,
@@ -4598,13 +4598,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3sv (
JNIEnv *env, jobject obj,
@@ -4627,13 +4627,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4dv (
JNIEnv *env, jobject obj,
@@ -4656,13 +4656,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fv (
JNIEnv *env, jobject obj,
@@ -4685,13 +4685,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4iv (
JNIEnv *env, jobject obj,
@@ -4714,13 +4714,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4sv (
JNIEnv *env, jobject obj,
@@ -4743,13 +4743,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2d (
JNIEnv *env, jobject obj,
@@ -4765,13 +4765,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2f (
JNIEnv *env, jobject obj,
@@ -4787,13 +4787,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2i (
JNIEnv *env, jobject obj,
@@ -4809,13 +4809,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2s (
JNIEnv *env, jobject obj,
@@ -4831,13 +4831,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3d (
JNIEnv *env, jobject obj,
@@ -4855,13 +4855,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3f (
JNIEnv *env, jobject obj,
@@ -4879,13 +4879,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3i (
JNIEnv *env, jobject obj,
@@ -4903,13 +4903,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3s (
JNIEnv *env, jobject obj,
@@ -4927,13 +4927,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4d (
JNIEnv *env, jobject obj,
@@ -4953,13 +4953,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4f (
JNIEnv *env, jobject obj,
@@ -4979,13 +4979,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4i (
JNIEnv *env, jobject obj,
@@ -5005,13 +5005,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4s (
JNIEnv *env, jobject obj,
@@ -5031,13 +5031,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2dv (
JNIEnv *env, jobject obj,
@@ -5060,13 +5060,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2fv (
JNIEnv *env, jobject obj,
@@ -5089,13 +5089,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2iv (
JNIEnv *env, jobject obj,
@@ -5118,13 +5118,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2sv (
JNIEnv *env, jobject obj,
@@ -5147,13 +5147,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3dv (
JNIEnv *env, jobject obj,
@@ -5176,13 +5176,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3fv (
JNIEnv *env, jobject obj,
@@ -5205,13 +5205,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3iv (
JNIEnv *env, jobject obj,
@@ -5234,13 +5234,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3sv (
JNIEnv *env, jobject obj,
@@ -5263,13 +5263,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4dv (
JNIEnv *env, jobject obj,
@@ -5292,13 +5292,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4fv (
JNIEnv *env, jobject obj,
@@ -5321,13 +5321,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4iv (
JNIEnv *env, jobject obj,
@@ -5350,13 +5350,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4sv (
JNIEnv *env, jobject obj,
@@ -5379,13 +5379,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectd (
JNIEnv *env, jobject obj,
@@ -5405,13 +5405,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectd ( GLdouble x1 , GLdouble y1 , GLdouble x2 , GLdouble y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectf (
JNIEnv *env, jobject obj,
@@ -5431,13 +5431,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectf ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRecti (
JNIEnv *env, jobject obj,
@@ -5457,13 +5457,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRecti ( GLint x1 , GLint y1 , GLint x2 , GLint y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRects (
JNIEnv *env, jobject obj,
@@ -5483,13 +5483,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRects ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectdv (
JNIEnv *env, jobject obj,
@@ -5523,13 +5523,13 @@
(*env)->ReleaseDoubleArrayElements(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectdv ( const GLdouble * v1 , const GLdouble * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectfv (
JNIEnv *env, jobject obj,
@@ -5563,13 +5563,13 @@
(*env)->ReleaseFloatArrayElements(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectfv ( const GLfloat * v1 , const GLfloat * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectiv (
JNIEnv *env, jobject obj,
@@ -5603,13 +5603,13 @@
(*env)->ReleaseIntArrayElements(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectiv ( const GLint * v1 , const GLint * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectsv (
JNIEnv *env, jobject obj,
@@ -5643,13 +5643,13 @@
(*env)->ReleaseShortArrayElements(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectsv ( const GLshort * v1 , const GLshort * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -5846,13 +5846,13 @@
(*env)->ReleaseLongArrayElements(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointer__II_3B (
JNIEnv *env, jobject obj,
@@ -6035,13 +6035,13 @@
(*env)->ReleaseLongArrayElements(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -6238,13 +6238,13 @@
(*env)->ReleaseLongArrayElements(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexPointer__II_3B (
JNIEnv *env, jobject obj,
@@ -6427,13 +6427,13 @@
(*env)->ReleaseLongArrayElements(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -6630,13 +6630,13 @@
(*env)->ReleaseLongArrayElements(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagPointer__I_3B (
JNIEnv *env, jobject obj,
@@ -6805,13 +6805,13 @@
(*env)->ReleaseLongArrayElements(env, ptr, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointer ( GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPointerv__I_3_3B (
JNIEnv *env, jobject obj,
@@ -6987,13 +6987,13 @@
(*env)->ReleaseLongArrayElements(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointerv ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glArrayElement (
JNIEnv *env, jobject obj,
@@ -7007,13 +7007,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElement ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawArrays (
JNIEnv *env, jobject obj,
@@ -7031,13 +7031,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArrays ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawElements__III_3B (
JNIEnv *env, jobject obj,
@@ -7234,13 +7234,13 @@
(*env)->ReleaseLongArrayElements(env, indices, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawElements ( GLenum mode , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInterleavedArrays__II_3B (
JNIEnv *env, jobject obj,
@@ -7423,13 +7423,13 @@
(*env)->ReleaseLongArrayElements(env, pointer, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInterleavedArrays ( GLenum format , GLsizei stride , const GLvoid * pointer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShadeModel (
JNIEnv *env, jobject obj,
@@ -7443,13 +7443,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShadeModel ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightf (
JNIEnv *env, jobject obj,
@@ -7467,13 +7467,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightf ( GLenum light , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLighti (
JNIEnv *env, jobject obj,
@@ -7491,13 +7491,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLighti ( GLenum light , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightfv (
JNIEnv *env, jobject obj,
@@ -7524,13 +7524,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightfv ( GLenum light , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightiv (
JNIEnv *env, jobject obj,
@@ -7557,13 +7557,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightiv ( GLenum light , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLightfv (
JNIEnv *env, jobject obj,
@@ -7591,13 +7591,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightfv ( GLenum light , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLightiv (
JNIEnv *env, jobject obj,
@@ -7625,13 +7625,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightiv ( GLenum light , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModelf (
JNIEnv *env, jobject obj,
@@ -7647,13 +7647,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModeli (
JNIEnv *env, jobject obj,
@@ -7669,13 +7669,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeli ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModelfv (
JNIEnv *env, jobject obj,
@@ -7700,13 +7700,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModeliv (
JNIEnv *env, jobject obj,
@@ -7731,13 +7731,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeliv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMaterialf (
JNIEnv *env, jobject obj,
@@ -7755,13 +7755,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialf ( GLenum face , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMateriali (
JNIEnv *env, jobject obj,
@@ -7779,13 +7779,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMateriali ( GLenum face , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMaterialfv (
JNIEnv *env, jobject obj,
@@ -7812,13 +7812,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialfv ( GLenum face , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMaterialiv (
JNIEnv *env, jobject obj,
@@ -7845,13 +7845,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialiv ( GLenum face , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMaterialfv (
JNIEnv *env, jobject obj,
@@ -7879,13 +7879,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialfv ( GLenum face , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMaterialiv (
JNIEnv *env, jobject obj,
@@ -7913,13 +7913,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialiv ( GLenum face , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorMaterial (
JNIEnv *env, jobject obj,
@@ -7935,13 +7935,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMaterial ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelZoom (
JNIEnv *env, jobject obj,
@@ -7957,13 +7957,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelZoom ( GLfloat xfactor , GLfloat yfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelStoref (
JNIEnv *env, jobject obj,
@@ -7979,13 +7979,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStoref ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelStorei (
JNIEnv *env, jobject obj,
@@ -8001,13 +8001,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStorei ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransferf (
JNIEnv *env, jobject obj,
@@ -8023,13 +8023,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransferi (
JNIEnv *env, jobject obj,
@@ -8045,13 +8045,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelMapfv (
JNIEnv *env, jobject obj,
@@ -8078,13 +8078,13 @@
(*env)->ReleaseFloatArrayElements(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapfv ( GLenum map , GLint mapsize , const GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelMapuiv (
JNIEnv *env, jobject obj,
@@ -8111,13 +8111,13 @@
(*env)->ReleaseIntArrayElements(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapuiv ( GLenum map , GLint mapsize , const GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelMapusv (
JNIEnv *env, jobject obj,
@@ -8144,13 +8144,13 @@
(*env)->ReleaseShortArrayElements(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapusv ( GLenum map , GLint mapsize , const GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelMapfv (
JNIEnv *env, jobject obj,
@@ -8176,13 +8176,13 @@
(*env)->ReleaseFloatArrayElements(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapfv ( GLenum map , GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelMapuiv (
JNIEnv *env, jobject obj,
@@ -8208,13 +8208,13 @@
(*env)->ReleaseIntArrayElements(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapuiv ( GLenum map , GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelMapusv (
JNIEnv *env, jobject obj,
@@ -8240,13 +8240,13 @@
(*env)->ReleaseShortArrayElements(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapusv ( GLenum map , GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBitmap (
JNIEnv *env, jobject obj,
@@ -8281,13 +8281,13 @@
(*env)->ReleaseByteArrayElements(env, bitmap, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBitmap ( GLsizei width , GLsizei height , GLfloat xorig , GLfloat yorig , GLfloat xmove , GLfloat ymove , const GLubyte * bitmap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReadPixels__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -8533,13 +8533,13 @@
(*env)->ReleaseLongArrayElements(env, pixels, ptr6, (isCopiedArray6 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawPixels__IIII_3B (
JNIEnv *env, jobject obj,
@@ -8750,13 +8750,13 @@
(*env)->ReleaseLongArrayElements(env, pixels, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawPixels ( GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyPixels (
JNIEnv *env, jobject obj,
@@ -8778,13 +8778,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStencilFunc (
JNIEnv *env, jobject obj,
@@ -8802,13 +8802,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilFunc ( GLenum func , GLint ref , GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStencilMask (
JNIEnv *env, jobject obj,
@@ -8822,13 +8822,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStencilOp (
JNIEnv *env, jobject obj,
@@ -8846,13 +8846,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilOp ( GLenum fail , GLenum zfail , GLenum zpass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearStencil (
JNIEnv *env, jobject obj,
@@ -8866,13 +8866,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearStencil ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGend (
JNIEnv *env, jobject obj,
@@ -8890,13 +8890,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGend ( GLenum coord , GLenum pname , GLdouble param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGenf (
JNIEnv *env, jobject obj,
@@ -8914,13 +8914,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenf ( GLenum coord , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGeni (
JNIEnv *env, jobject obj,
@@ -8938,13 +8938,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeni ( GLenum coord , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGendv (
JNIEnv *env, jobject obj,
@@ -8971,13 +8971,13 @@
(*env)->ReleaseDoubleArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGendv ( GLenum coord , GLenum pname , const GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGenfv (
JNIEnv *env, jobject obj,
@@ -9004,13 +9004,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenfv ( GLenum coord , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGeniv (
JNIEnv *env, jobject obj,
@@ -9037,13 +9037,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeniv ( GLenum coord , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexGendv (
JNIEnv *env, jobject obj,
@@ -9071,13 +9071,13 @@
(*env)->ReleaseDoubleArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGendv ( GLenum coord , GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexGenfv (
JNIEnv *env, jobject obj,
@@ -9105,13 +9105,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGenfv ( GLenum coord , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexGeniv (
JNIEnv *env, jobject obj,
@@ -9139,13 +9139,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGeniv ( GLenum coord , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnvf (
JNIEnv *env, jobject obj,
@@ -9163,13 +9163,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnvi (
JNIEnv *env, jobject obj,
@@ -9187,13 +9187,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvi ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnvfv (
JNIEnv *env, jobject obj,
@@ -9220,13 +9220,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnviv (
JNIEnv *env, jobject obj,
@@ -9253,13 +9253,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnviv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexEnvfv (
JNIEnv *env, jobject obj,
@@ -9287,13 +9287,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnvfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexEnviv (
JNIEnv *env, jobject obj,
@@ -9321,13 +9321,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnviv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameterf (
JNIEnv *env, jobject obj,
@@ -9345,13 +9345,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameteri (
JNIEnv *env, jobject obj,
@@ -9369,13 +9369,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteri ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameterfv (
JNIEnv *env, jobject obj,
@@ -9402,13 +9402,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameteriv (
JNIEnv *env, jobject obj,
@@ -9435,13 +9435,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexParameterfv (
JNIEnv *env, jobject obj,
@@ -9469,13 +9469,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexParameteriv (
JNIEnv *env, jobject obj,
@@ -9503,13 +9503,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexLevelParameterfv (
JNIEnv *env, jobject obj,
@@ -9539,13 +9539,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameterfv ( GLenum target , GLint level , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexLevelParameteriv (
JNIEnv *env, jobject obj,
@@ -9575,13 +9575,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameteriv ( GLenum target , GLint level , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage1D__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -9834,13 +9834,13 @@
(*env)->ReleaseLongArrayElements(env, pixels, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage1D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -10107,13 +10107,13 @@
(*env)->ReleaseLongArrayElements(env, pixels, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage2D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLsizei height , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexImage__IIII_3B (
JNIEnv *env, jobject obj,
@@ -10331,13 +10331,13 @@
(*env)->ReleaseLongArrayElements(env, pixels, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexImage ( GLenum target , GLint level , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenTextures (
JNIEnv *env, jobject obj,
@@ -10363,13 +10363,13 @@
(*env)->ReleaseIntArrayElements(env, textures, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTextures ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteTextures (
JNIEnv *env, jobject obj,
@@ -10394,13 +10394,13 @@
(*env)->ReleaseIntArrayElements(env, textures, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTextures ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindTexture (
JNIEnv *env, jobject obj,
@@ -10416,13 +10416,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTexture ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPrioritizeTextures (
JNIEnv *env, jobject obj,
@@ -10458,13 +10458,13 @@
(*env)->ReleaseFloatArrayElements(env, priorities, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTextures ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glAreTexturesResident (
JNIEnv *env, jobject obj,
@@ -10504,13 +10504,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResident ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsTexture (
JNIEnv *env, jobject obj,
@@ -10527,13 +10527,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTexture ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -10772,13 +10772,13 @@
(*env)->ReleaseLongArrayElements(env, pixels, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -11045,13 +11045,13 @@
(*env)->ReleaseLongArrayElements(env, pixels, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage1D (
JNIEnv *env, jobject obj,
@@ -11077,13 +11077,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage2D (
JNIEnv *env, jobject obj,
@@ -11111,13 +11111,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage1D (
JNIEnv *env, jobject obj,
@@ -11141,13 +11141,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage2D (
JNIEnv *env, jobject obj,
@@ -11175,13 +11175,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap1d (
JNIEnv *env, jobject obj,
@@ -11214,13 +11214,13 @@
(*env)->ReleaseDoubleArrayElements(env, points, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint stride , GLint order , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap1f (
JNIEnv *env, jobject obj,
@@ -11253,13 +11253,13 @@
(*env)->ReleaseFloatArrayElements(env, points, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint stride , GLint order , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap2d (
JNIEnv *env, jobject obj,
@@ -11300,13 +11300,13 @@
(*env)->ReleaseDoubleArrayElements(env, points, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint ustride , GLint uorder , GLdouble v1 , GLdouble v2 , GLint vstride , GLint vorder , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap2f (
JNIEnv *env, jobject obj,
@@ -11347,13 +11347,13 @@
(*env)->ReleaseFloatArrayElements(env, points, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint ustride , GLint uorder , GLfloat v1 , GLfloat v2 , GLint vstride , GLint vorder , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapdv (
JNIEnv *env, jobject obj,
@@ -11381,13 +11381,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapdv ( GLenum target , GLenum query , GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapfv (
JNIEnv *env, jobject obj,
@@ -11415,13 +11415,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapfv ( GLenum target , GLenum query , GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapiv (
JNIEnv *env, jobject obj,
@@ -11449,13 +11449,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapiv ( GLenum target , GLenum query , GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1d (
JNIEnv *env, jobject obj,
@@ -11469,13 +11469,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1d ( GLdouble u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1f (
JNIEnv *env, jobject obj,
@@ -11489,13 +11489,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1f ( GLfloat u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1dv (
JNIEnv *env, jobject obj,
@@ -11518,13 +11518,13 @@
(*env)->ReleaseDoubleArrayElements(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1fv (
JNIEnv *env, jobject obj,
@@ -11547,13 +11547,13 @@
(*env)->ReleaseFloatArrayElements(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2d (
JNIEnv *env, jobject obj,
@@ -11569,13 +11569,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2d ( GLdouble u , GLdouble v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2f (
JNIEnv *env, jobject obj,
@@ -11591,13 +11591,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2f ( GLfloat u , GLfloat v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2dv (
JNIEnv *env, jobject obj,
@@ -11620,13 +11620,13 @@
(*env)->ReleaseDoubleArrayElements(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2fv (
JNIEnv *env, jobject obj,
@@ -11649,13 +11649,13 @@
(*env)->ReleaseFloatArrayElements(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid1d (
JNIEnv *env, jobject obj,
@@ -11673,13 +11673,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1d ( GLint un , GLdouble u1 , GLdouble u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid1f (
JNIEnv *env, jobject obj,
@@ -11697,13 +11697,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1f ( GLint un , GLfloat u1 , GLfloat u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid2d (
JNIEnv *env, jobject obj,
@@ -11727,13 +11727,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2d ( GLint un , GLdouble u1 , GLdouble u2 , GLint vn , GLdouble v1 , GLdouble v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid2f (
JNIEnv *env, jobject obj,
@@ -11757,13 +11757,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2f ( GLint un , GLfloat u1 , GLfloat u2 , GLint vn , GLfloat v1 , GLfloat v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalPoint1 (
JNIEnv *env, jobject obj,
@@ -11777,13 +11777,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint1 ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalPoint2 (
JNIEnv *env, jobject obj,
@@ -11799,13 +11799,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint2 ( GLint i , GLint j ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalMesh1 (
JNIEnv *env, jobject obj,
@@ -11823,13 +11823,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh1 ( GLenum mode , GLint i1 , GLint i2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalMesh2 (
JNIEnv *env, jobject obj,
@@ -11851,13 +11851,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh2 ( GLenum mode , GLint i1 , GLint i2 , GLint j1 , GLint j2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogf (
JNIEnv *env, jobject obj,
@@ -11873,13 +11873,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogi (
JNIEnv *env, jobject obj,
@@ -11895,13 +11895,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogfv (
JNIEnv *env, jobject obj,
@@ -11926,13 +11926,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogiv (
JNIEnv *env, jobject obj,
@@ -11957,13 +11957,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogiv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFeedbackBuffer (
JNIEnv *env, jobject obj,
@@ -11991,13 +11991,13 @@
(*env)->ReleaseFloatArrayElements(env, buffer, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFeedbackBuffer ( GLsizei size , GLenum type , GLfloat * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPassThrough (
JNIEnv *env, jobject obj,
@@ -12011,13 +12011,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPassThrough ( GLfloat token ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSelectBuffer (
JNIEnv *env, jobject obj,
@@ -12043,13 +12043,13 @@
(*env)->ReleaseIntArrayElements(env, buffer, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSelectBuffer ( GLsizei size , GLuint * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInitNames (
JNIEnv *env, jobject obj)
@@ -12061,13 +12061,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInitNames ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadName (
JNIEnv *env, jobject obj,
@@ -12081,13 +12081,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushName (
JNIEnv *env, jobject obj,
@@ -12101,13 +12101,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopName (
JNIEnv *env, jobject obj)
@@ -12119,13 +12119,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopName ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawRangeElements__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -12350,13 +12350,13 @@
(*env)->ReleaseLongArrayElements(env, indices, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElements ( GLenum mode , GLuint start , GLuint end , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage3D__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -12637,13 +12637,13 @@
(*env)->ReleaseLongArrayElements(env, pixels, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3D ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage3D__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -12938,13 +12938,13 @@
(*env)->ReleaseLongArrayElements(env, pixels, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage3D (
JNIEnv *env, jobject obj,
@@ -12974,13 +12974,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTable__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -13205,13 +13205,13 @@
(*env)->ReleaseLongArrayElements(env, table, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTable ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorSubTable__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -13436,13 +13436,13 @@
(*env)->ReleaseLongArrayElements(env, data, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTable ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameteriv (
JNIEnv *env, jobject obj,
@@ -13469,13 +13469,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameterfv (
JNIEnv *env, jobject obj,
@@ -13502,13 +13502,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorSubTable (
JNIEnv *env, jobject obj,
@@ -13530,13 +13530,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTable ( GLenum target , GLsizei start , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorTable (
JNIEnv *env, jobject obj,
@@ -13558,13 +13558,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTable ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTable__III_3B (
JNIEnv *env, jobject obj,
@@ -13768,13 +13768,13 @@
(*env)->ReleaseLongArrayElements(env, table, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTable ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterfv (
JNIEnv *env, jobject obj,
@@ -13802,13 +13802,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameteriv (
JNIEnv *env, jobject obj,
@@ -13836,13 +13836,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendEquation (
JNIEnv *env, jobject obj,
@@ -13856,13 +13856,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquation ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendColor (
JNIEnv *env, jobject obj,
@@ -13882,13 +13882,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHistogram (
JNIEnv *env, jobject obj,
@@ -13908,13 +13908,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogram ( GLenum target , GLsizei width , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetHistogram (
JNIEnv *env, jobject obj,
@@ -13928,13 +13928,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogram ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogram__IZII_3B (
JNIEnv *env, jobject obj,
@@ -14152,13 +14152,13 @@
(*env)->ReleaseLongArrayElements(env, values, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogram ( GLenum target , GLboolean reset , GLenum format , GLenum type , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameterfv (
JNIEnv *env, jobject obj,
@@ -14186,13 +14186,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameteriv (
JNIEnv *env, jobject obj,
@@ -14220,13 +14220,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMinmax (
JNIEnv *env, jobject obj,
@@ -14244,13 +14244,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmax ( GLenum target , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetMinmax (
JNIEnv *env, jobject obj,
@@ -14264,13 +14264,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmax ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmax__IZII_3B (
JNIEnv *env, jobject obj,
@@ -14488,13 +14488,13 @@
(*env)->ReleaseLongArrayElements(env, values, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmax ( GLenum target , GLboolean reset , GLenum format , GLenum types , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameterfv (
JNIEnv *env, jobject obj,
@@ -14522,13 +14522,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameteriv (
JNIEnv *env, jobject obj,
@@ -14556,13 +14556,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter1D__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -14787,13 +14787,13 @@
(*env)->ReleaseLongArrayElements(env, image, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1D ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter2D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -15032,13 +15032,13 @@
(*env)->ReleaseLongArrayElements(env, image, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterf (
JNIEnv *env, jobject obj,
@@ -15056,13 +15056,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterf ( GLenum target , GLenum pname , GLfloat params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterfv (
JNIEnv *env, jobject obj,
@@ -15089,13 +15089,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameteri (
JNIEnv *env, jobject obj,
@@ -15113,13 +15113,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteri ( GLenum target , GLenum pname , GLint params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameteriv (
JNIEnv *env, jobject obj,
@@ -15146,13 +15146,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter1D (
JNIEnv *env, jobject obj,
@@ -15174,13 +15174,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter2D (
JNIEnv *env, jobject obj,
@@ -15204,13 +15204,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionFilter__III_3B (
JNIEnv *env, jobject obj,
@@ -15414,13 +15414,13 @@
(*env)->ReleaseLongArrayElements(env, image, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilter ( GLenum target , GLenum format , GLenum type , GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameterfv (
JNIEnv *env, jobject obj,
@@ -15448,13 +15448,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameteriv (
JNIEnv *env, jobject obj,
@@ -15482,13 +15482,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSeparableFilter2D__IIIIII_3B_3B (
JNIEnv *env, jobject obj,
@@ -15804,13 +15804,13 @@
(*env)->ReleaseLongArrayElements(env, column, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * row , const GLvoid * column ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetSeparableFilter__III_3B_3B_3B (
JNIEnv *env, jobject obj,
@@ -16182,13 +16182,13 @@
(*env)->ReleaseLongArrayElements(env, span, ptr5, (isCopiedArray5 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilter ( GLenum target , GLenum format , GLenum type , GLvoid * row , GLvoid * column , GLvoid * span ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glActiveTexture (
JNIEnv *env, jobject obj,
@@ -16202,13 +16202,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClientActiveTexture (
JNIEnv *env, jobject obj,
@@ -16222,13 +16222,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -16467,13 +16467,13 @@
(*env)->ReleaseLongArrayElements(env, data, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage2D__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -16726,13 +16726,13 @@
(*env)->ReleaseLongArrayElements(env, data, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage3D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -16999,13 +16999,13 @@
(*env)->ReleaseLongArrayElements(env, data, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17244,13 +17244,13 @@
(*env)->ReleaseLongArrayElements(env, data, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17517,13 +17517,13 @@
(*env)->ReleaseLongArrayElements(env, data, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage3D__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17818,13 +17818,13 @@
(*env)->ReleaseLongArrayElements(env, data, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCompressedTexImage__II_3B (
JNIEnv *env, jobject obj,
@@ -18014,13 +18014,13 @@
(*env)->ReleaseLongArrayElements(env, img, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImage ( GLenum target , GLint lod , GLvoid * img ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1d (
JNIEnv *env, jobject obj,
@@ -18036,13 +18036,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1d ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1dv (
JNIEnv *env, jobject obj,
@@ -18067,13 +18067,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1f (
JNIEnv *env, jobject obj,
@@ -18089,13 +18089,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1f ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1fv (
JNIEnv *env, jobject obj,
@@ -18120,13 +18120,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1i (
JNIEnv *env, jobject obj,
@@ -18142,13 +18142,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1i ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1iv (
JNIEnv *env, jobject obj,
@@ -18173,13 +18173,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1s (
JNIEnv *env, jobject obj,
@@ -18195,13 +18195,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1s ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1sv (
JNIEnv *env, jobject obj,
@@ -18226,13 +18226,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2d (
JNIEnv *env, jobject obj,
@@ -18250,13 +18250,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2d ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2dv (
JNIEnv *env, jobject obj,
@@ -18281,13 +18281,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2f (
JNIEnv *env, jobject obj,
@@ -18305,13 +18305,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2f ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2fv (
JNIEnv *env, jobject obj,
@@ -18336,13 +18336,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2i (
JNIEnv *env, jobject obj,
@@ -18360,13 +18360,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2i ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2iv (
JNIEnv *env, jobject obj,
@@ -18391,13 +18391,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2s (
JNIEnv *env, jobject obj,
@@ -18415,13 +18415,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2s ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2sv (
JNIEnv *env, jobject obj,
@@ -18446,13 +18446,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3d (
JNIEnv *env, jobject obj,
@@ -18472,13 +18472,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3d ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3dv (
JNIEnv *env, jobject obj,
@@ -18503,13 +18503,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3f (
JNIEnv *env, jobject obj,
@@ -18529,13 +18529,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3f ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3fv (
JNIEnv *env, jobject obj,
@@ -18560,13 +18560,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3i (
JNIEnv *env, jobject obj,
@@ -18586,13 +18586,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3i ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3iv (
JNIEnv *env, jobject obj,
@@ -18617,13 +18617,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3s (
JNIEnv *env, jobject obj,
@@ -18643,13 +18643,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3s ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3sv (
JNIEnv *env, jobject obj,
@@ -18674,13 +18674,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4d (
JNIEnv *env, jobject obj,
@@ -18702,13 +18702,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4d ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4dv (
JNIEnv *env, jobject obj,
@@ -18733,13 +18733,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4f (
JNIEnv *env, jobject obj,
@@ -18761,13 +18761,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4f ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4fv (
JNIEnv *env, jobject obj,
@@ -18792,13 +18792,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4i (
JNIEnv *env, jobject obj,
@@ -18820,13 +18820,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4i ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4iv (
JNIEnv *env, jobject obj,
@@ -18851,13 +18851,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4s (
JNIEnv *env, jobject obj,
@@ -18879,13 +18879,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4s ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4sv (
JNIEnv *env, jobject obj,
@@ -18910,13 +18910,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixd (
JNIEnv *env, jobject obj,
@@ -18939,13 +18939,13 @@
(*env)->ReleaseDoubleArrayElements(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixf (
JNIEnv *env, jobject obj,
@@ -18968,13 +18968,13 @@
(*env)->ReleaseFloatArrayElements(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixd (
JNIEnv *env, jobject obj,
@@ -18997,13 +18997,13 @@
(*env)->ReleaseDoubleArrayElements(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixf (
JNIEnv *env, jobject obj,
@@ -19026,13 +19026,13 @@
(*env)->ReleaseFloatArrayElements(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleCoverage (
JNIEnv *env, jobject obj,
@@ -19048,13 +19048,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverage ( GLclampf value , GLboolean invert ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSamplePass (
JNIEnv *env, jobject obj,
@@ -19068,13 +19068,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePass ( GLenum pass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glActiveTextureARB (
JNIEnv *env, jobject obj,
@@ -19088,13 +19088,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClientActiveTextureARB (
JNIEnv *env, jobject obj,
@@ -19108,13 +19108,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1dARB (
JNIEnv *env, jobject obj,
@@ -19130,13 +19130,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dARB ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1dvARB (
JNIEnv *env, jobject obj,
@@ -19161,13 +19161,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1fARB (
JNIEnv *env, jobject obj,
@@ -19183,13 +19183,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fARB ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1fvARB (
JNIEnv *env, jobject obj,
@@ -19214,13 +19214,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1iARB (
JNIEnv *env, jobject obj,
@@ -19236,13 +19236,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iARB ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1ivARB (
JNIEnv *env, jobject obj,
@@ -19267,13 +19267,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1sARB (
JNIEnv *env, jobject obj,
@@ -19289,13 +19289,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sARB ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1svARB (
JNIEnv *env, jobject obj,
@@ -19320,13 +19320,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2dARB (
JNIEnv *env, jobject obj,
@@ -19344,13 +19344,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dARB ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2dvARB (
JNIEnv *env, jobject obj,
@@ -19375,13 +19375,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2fARB (
JNIEnv *env, jobject obj,
@@ -19399,13 +19399,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fARB ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2fvARB (
JNIEnv *env, jobject obj,
@@ -19430,13 +19430,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2iARB (
JNIEnv *env, jobject obj,
@@ -19454,13 +19454,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iARB ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2ivARB (
JNIEnv *env, jobject obj,
@@ -19485,13 +19485,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2sARB (
JNIEnv *env, jobject obj,
@@ -19509,13 +19509,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sARB ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2svARB (
JNIEnv *env, jobject obj,
@@ -19540,13 +19540,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3dARB (
JNIEnv *env, jobject obj,
@@ -19566,13 +19566,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3dvARB (
JNIEnv *env, jobject obj,
@@ -19597,13 +19597,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3fARB (
JNIEnv *env, jobject obj,
@@ -19623,13 +19623,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3fvARB (
JNIEnv *env, jobject obj,
@@ -19654,13 +19654,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3iARB (
JNIEnv *env, jobject obj,
@@ -19680,13 +19680,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iARB ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3ivARB (
JNIEnv *env, jobject obj,
@@ -19711,13 +19711,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3sARB (
JNIEnv *env, jobject obj,
@@ -19737,13 +19737,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sARB ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3svARB (
JNIEnv *env, jobject obj,
@@ -19768,13 +19768,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4dARB (
JNIEnv *env, jobject obj,
@@ -19796,13 +19796,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4dvARB (
JNIEnv *env, jobject obj,
@@ -19827,13 +19827,13 @@
(*env)->ReleaseDoubleArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4fARB (
JNIEnv *env, jobject obj,
@@ -19855,13 +19855,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4fvARB (
JNIEnv *env, jobject obj,
@@ -19886,13 +19886,13 @@
(*env)->ReleaseFloatArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4iARB (
JNIEnv *env, jobject obj,
@@ -19914,13 +19914,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iARB ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4ivARB (
JNIEnv *env, jobject obj,
@@ -19945,13 +19945,13 @@
(*env)->ReleaseIntArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4sARB (
JNIEnv *env, jobject obj,
@@ -19973,13 +19973,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sARB ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4svARB (
JNIEnv *env, jobject obj,
@@ -20004,13 +20004,13 @@
(*env)->ReleaseShortArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendColorEXT (
JNIEnv *env, jobject obj,
@@ -20030,13 +20030,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColorEXT ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonOffsetEXT (
JNIEnv *env, jobject obj,
@@ -20052,13 +20052,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffsetEXT ( GLfloat factor , GLfloat bias ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage3DEXT__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -20339,13 +20339,13 @@
(*env)->ReleaseLongArrayElements(env, pixels, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3DEXT ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage3DEXT__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -20640,13 +20640,13 @@
(*env)->ReleaseLongArrayElements(env, pixels, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage3DEXT (
JNIEnv *env, jobject obj,
@@ -20676,13 +20676,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3DEXT ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenTexturesEXT (
JNIEnv *env, jobject obj,
@@ -20708,13 +20708,13 @@
(*env)->ReleaseIntArrayElements(env, textures, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTexturesEXT ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteTexturesEXT (
JNIEnv *env, jobject obj,
@@ -20739,13 +20739,13 @@
(*env)->ReleaseIntArrayElements(env, textures, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTexturesEXT ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindTextureEXT (
JNIEnv *env, jobject obj,
@@ -20761,13 +20761,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTextureEXT ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPrioritizeTexturesEXT (
JNIEnv *env, jobject obj,
@@ -20803,13 +20803,13 @@
(*env)->ReleaseFloatArrayElements(env, priorities, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTexturesEXT ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glAreTexturesResidentEXT (
JNIEnv *env, jobject obj,
@@ -20849,13 +20849,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResidentEXT ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsTextureEXT (
JNIEnv *env, jobject obj,
@@ -20872,13 +20872,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTextureEXT ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -21089,13 +21089,13 @@
(*env)->ReleaseLongArrayElements(env, ptr, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -21292,13 +21292,13 @@
(*env)->ReleaseLongArrayElements(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -21509,13 +21509,13 @@
(*env)->ReleaseLongArrayElements(env, ptr, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -21712,13 +21712,13 @@
(*env)->ReleaseLongArrayElements(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -21929,13 +21929,13 @@
(*env)->ReleaseLongArrayElements(env, ptr, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagPointerEXT (
JNIEnv *env, jobject obj,
@@ -21962,13 +21962,13 @@
(*env)->ReleaseBooleanArrayElements(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerEXT ( GLsizei stride , GLsizei count , const GLboolean * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPointervEXT__I_3_3B (
JNIEnv *env, jobject obj,
@@ -22144,13 +22144,13 @@
(*env)->ReleaseLongArrayElements(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointervEXT ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glArrayElementEXT (
JNIEnv *env, jobject obj,
@@ -22164,13 +22164,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElementEXT ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawArraysEXT (
JNIEnv *env, jobject obj,
@@ -22188,13 +22188,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArraysEXT ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendEquationEXT (
JNIEnv *env, jobject obj,
@@ -22208,13 +22208,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquationEXT ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfEXT (
JNIEnv *env, jobject obj,
@@ -22230,13 +22230,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfEXT ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -22261,13 +22261,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvEXT ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfSGIS (
JNIEnv *env, jobject obj,
@@ -22283,13 +22283,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfSGIS ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -22314,13 +22314,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvSGIS ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -22545,13 +22545,13 @@
(*env)->ReleaseLongArrayElements(env, table, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableEXT ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorSubTableEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -22776,13 +22776,13 @@
(*env)->ReleaseLongArrayElements(env, data, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTableEXT ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -22986,13 +22986,13 @@
(*env)->ReleaseLongArrayElements(env, table, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableEXT ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -23020,13 +23020,13 @@
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvEXT ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterivEXT (
JNIEnv *env, jobject obj,
@@ -23054,13 +23054,13 @@
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivEXT ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLockArraysEXT (
JNIEnv *env, jobject obj,
@@ -23076,13 +23076,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLockArraysEXT ( GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glUnlockArraysEXT (
JNIEnv *env, jobject obj)
@@ -23094,13 +23094,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glUnlockArraysEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixfARB (
JNIEnv *env, jobject obj,
@@ -23123,13 +23123,13 @@
(*env)->ReleaseFloatArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixdARB (
JNIEnv *env, jobject obj,
@@ -23152,13 +23152,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixfARB (
JNIEnv *env, jobject obj,
@@ -23181,13 +23181,13 @@
(*env)->ReleaseFloatArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixdARB (
JNIEnv *env, jobject obj,
@@ -23210,13 +23210,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleCoverageARB (
JNIEnv *env, jobject obj,
@@ -23232,13 +23232,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverageARB ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage3DARB__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -23505,13 +23505,13 @@
(*env)->ReleaseLongArrayElements(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage2DARB__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -23764,13 +23764,13 @@
(*env)->ReleaseLongArrayElements(env, arg7, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage1DARB__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -24009,13 +24009,13 @@
(*env)->ReleaseLongArrayElements(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1DARB ( GLenum , GLint , GLenum , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage3DARB__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -24310,13 +24310,13 @@
(*env)->ReleaseLongArrayElements(env, arg10, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage3DARB ( GLenum , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage2DARB__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -24583,13 +24583,13 @@
(*env)->ReleaseLongArrayElements(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2DARB ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage1DARB__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -24828,13 +24828,13 @@
(*env)->ReleaseLongArrayElements(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1DARB ( GLenum , GLint , GLint , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCompressedTexImageARB__II_3B (
JNIEnv *env, jobject obj,
@@ -25024,13 +25024,13 @@
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImageARB ( GLenum , GLint , void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightbvARB (
JNIEnv *env, jobject obj,
@@ -25055,13 +25055,13 @@
(*env)->ReleaseByteArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightbvARB ( GLint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightsvARB (
JNIEnv *env, jobject obj,
@@ -25086,13 +25086,13 @@
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightsvARB ( GLint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightivARB (
JNIEnv *env, jobject obj,
@@ -25117,13 +25117,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightivARB ( GLint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightfvARB (
JNIEnv *env, jobject obj,
@@ -25148,13 +25148,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightfvARB ( GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightdvARB (
JNIEnv *env, jobject obj,
@@ -25179,13 +25179,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightdvARB ( GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightubvARB (
JNIEnv *env, jobject obj,
@@ -25210,13 +25210,13 @@
(*env)->ReleaseByteArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightusvARB (
JNIEnv *env, jobject obj,
@@ -25241,13 +25241,13 @@
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightuivARB (
JNIEnv *env, jobject obj,
@@ -25272,13 +25272,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightPointerARB__III_3B (
JNIEnv *env, jobject obj,
@@ -25475,13 +25475,13 @@
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexBlendARB (
JNIEnv *env, jobject obj,
@@ -25495,13 +25495,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCurrentPaletteMatrixARB (
JNIEnv *env, jobject obj,
@@ -25515,13 +25515,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCurrentPaletteMatrixARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexubvARB (
JNIEnv *env, jobject obj,
@@ -25546,13 +25546,13 @@
(*env)->ReleaseByteArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexusvARB (
JNIEnv *env, jobject obj,
@@ -25577,13 +25577,13 @@
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexuivARB (
JNIEnv *env, jobject obj,
@@ -25608,13 +25608,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexPointerARB__III_3B (
JNIEnv *env, jobject obj,
@@ -25811,13 +25811,13 @@
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexFilterFuncSGIS (
JNIEnv *env, jobject obj,
@@ -25845,13 +25845,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexFilterFuncSGIS ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexFilterFuncSGIS (
JNIEnv *env, jobject obj,
@@ -25880,13 +25880,13 @@
(*env)->ReleaseFloatArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexFilterFuncSGIS ( GLenum , GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage1DEXT__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -26125,13 +26125,13 @@
(*env)->ReleaseLongArrayElements(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1DEXT ( GLenum , GLint , GLint , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage2DEXT__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -26398,13 +26398,13 @@
(*env)->ReleaseLongArrayElements(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage1DEXT (
JNIEnv *env, jobject obj,
@@ -26430,13 +26430,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage2DEXT (
JNIEnv *env, jobject obj,
@@ -26464,13 +26464,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage1DEXT (
JNIEnv *env, jobject obj,
@@ -26494,13 +26494,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1DEXT ( GLenum , GLint , GLint , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage2DEXT (
JNIEnv *env, jobject obj,
@@ -26528,13 +26528,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramEXT__IZII_3B (
JNIEnv *env, jobject obj,
@@ -26752,13 +26752,13 @@
(*env)->ReleaseLongArrayElements(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -26786,13 +26786,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameterivEXT (
JNIEnv *env, jobject obj,
@@ -26820,13 +26820,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxEXT__IZII_3B (
JNIEnv *env, jobject obj,
@@ -27044,13 +27044,13 @@
(*env)->ReleaseLongArrayElements(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -27078,13 +27078,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameterivEXT (
JNIEnv *env, jobject obj,
@@ -27112,13 +27112,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHistogramEXT (
JNIEnv *env, jobject obj,
@@ -27138,13 +27138,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogramEXT ( GLenum , GLsizei , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMinmaxEXT (
JNIEnv *env, jobject obj,
@@ -27162,13 +27162,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmaxEXT ( GLenum , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetHistogramEXT (
JNIEnv *env, jobject obj,
@@ -27182,13 +27182,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogramEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetMinmaxEXT (
JNIEnv *env, jobject obj,
@@ -27202,13 +27202,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmaxEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter1DEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -27433,13 +27433,13 @@
(*env)->ReleaseLongArrayElements(env, arg5, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1DEXT ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter2DEXT__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -27678,13 +27678,13 @@
(*env)->ReleaseLongArrayElements(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterfEXT (
JNIEnv *env, jobject obj,
@@ -27702,13 +27702,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -27735,13 +27735,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameteriEXT (
JNIEnv *env, jobject obj,
@@ -27759,13 +27759,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterivEXT (
JNIEnv *env, jobject obj,
@@ -27792,13 +27792,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter1DEXT (
JNIEnv *env, jobject obj,
@@ -27820,13 +27820,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1DEXT ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter2DEXT (
JNIEnv *env, jobject obj,
@@ -27850,13 +27850,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2DEXT ( GLenum , GLenum , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionFilterEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -28060,13 +28060,13 @@
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilterEXT ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -28094,13 +28094,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameterivEXT (
JNIEnv *env, jobject obj,
@@ -28128,13 +28128,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetSeparableFilterEXT__III_3B_3B_3B (
JNIEnv *env, jobject obj,
@@ -28506,13 +28506,13 @@
(*env)->ReleaseLongArrayElements(env, arg5, ptr5, (isCopiedArray5 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilterEXT ( GLenum , GLenum , GLenum , GLvoid * , GLvoid * , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSeparableFilter2DEXT__IIIIII_3B_3B (
JNIEnv *env, jobject obj,
@@ -28828,13 +28828,13 @@
(*env)->ReleaseLongArrayElements(env, arg7, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableSGI__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -29059,13 +29059,13 @@
(*env)->ReleaseLongArrayElements(env, arg5, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableSGI ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameterfvSGI (
JNIEnv *env, jobject obj,
@@ -29092,13 +29092,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfvSGI ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameterivSGI (
JNIEnv *env, jobject obj,
@@ -29125,13 +29125,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterivSGI ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorTableSGI (
JNIEnv *env, jobject obj,
@@ -29153,13 +29153,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTableSGI ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableSGI__III_3B (
JNIEnv *env, jobject obj,
@@ -29363,13 +29363,13 @@
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableSGI ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterfvSGI (
JNIEnv *env, jobject obj,
@@ -29397,13 +29397,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvSGI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterivSGI (
JNIEnv *env, jobject obj,
@@ -29431,13 +29431,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivSGI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenSGIX (
JNIEnv *env, jobject obj,
@@ -29451,13 +29451,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenSGIX ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameteriSGIS (
JNIEnv *env, jobject obj,
@@ -29473,13 +29473,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameteriSGIS ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameterivSGIS (
JNIEnv *env, jobject obj,
@@ -29504,13 +29504,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterivSGIS ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameterfSGIS (
JNIEnv *env, jobject obj,
@@ -29526,13 +29526,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfSGIS ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -29557,13 +29557,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfvSGIS ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelTexGenParameterivSGIS (
JNIEnv *env, jobject obj,
@@ -29589,13 +29589,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterivSGIS ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelTexGenParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -29621,13 +29621,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterfvSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage4DSGIS__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -29922,13 +29922,13 @@
(*env)->ReleaseLongArrayElements(env, arg10, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage4DSGIS ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLsizei , GLint , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage4DSGIS__IIIIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -30251,13 +30251,13 @@
(*env)->ReleaseLongArrayElements(env, arg12, ptr12, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage4DSGIS ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDetailTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -30284,13 +30284,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDetailTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetDetailTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -30316,13 +30316,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDetailTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSharpenTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -30349,13 +30349,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSharpenTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetSharpenTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -30381,13 +30381,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSharpenTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleMaskSGIS (
JNIEnv *env, jobject obj,
@@ -30403,13 +30403,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskSGIS ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSamplePatternSGIS (
JNIEnv *env, jobject obj,
@@ -30423,13 +30423,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternSGIS ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameterfSGIX (
JNIEnv *env, jobject obj,
@@ -30445,13 +30445,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -30476,13 +30476,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameteriSGIX (
JNIEnv *env, jobject obj,
@@ -30498,13 +30498,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameteriSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -30529,13 +30529,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfARB (
JNIEnv *env, jobject obj,
@@ -30551,13 +30551,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfARB ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfvARB (
JNIEnv *env, jobject obj,
@@ -30582,13 +30582,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvARB ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGetInstrumentsSGIX (
JNIEnv *env, jobject obj)
@@ -30603,13 +30603,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glGetInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInstrumentsBufferSGIX (
JNIEnv *env, jobject obj,
@@ -30635,13 +30635,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInstrumentsBufferSGIX ( GLsizei , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glPollInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -30668,13 +30668,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollInstrumentsSGIX ( GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReadInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -30688,13 +30688,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStartInstrumentsSGIX (
JNIEnv *env, jobject obj)
@@ -30706,13 +30706,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStartInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStopInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -30726,13 +30726,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStopInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFrameZoomSGIX (
JNIEnv *env, jobject obj,
@@ -30746,13 +30746,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrameZoomSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTagSampleBufferSGIX (
JNIEnv *env, jobject obj)
@@ -30764,13 +30764,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTagSampleBufferSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeformationMap3dSGIX (
JNIEnv *env, jobject obj,
@@ -30819,13 +30819,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg13, ptr13, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3dSGIX ( GLenum , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeformationMap3fSGIX (
JNIEnv *env, jobject obj,
@@ -30874,13 +30874,13 @@
(*env)->ReleaseFloatArrayElements(env, arg13, ptr13, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3fSGIX ( GLenum , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeformSGIX (
JNIEnv *env, jobject obj,
@@ -30894,13 +30894,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadIdentityDeformationMapSGIX (
JNIEnv *env, jobject obj,
@@ -30914,13 +30914,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentityDeformationMapSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReferencePlaneSGIX (
JNIEnv *env, jobject obj,
@@ -30943,13 +30943,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReferencePlaneSGIX ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFlushRasterSGIX (
JNIEnv *env, jobject obj)
@@ -30961,13 +30961,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushRasterSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogFuncSGIS (
JNIEnv *env, jobject obj,
@@ -30992,13 +30992,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogFuncSGIS ( GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFogFuncSGIS (
JNIEnv *env, jobject obj,
@@ -31022,13 +31022,13 @@
(*env)->ReleaseFloatArrayElements(env, arg0, ptr0, (isCopiedArray0 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFogFuncSGIS ( GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameteriHP (
JNIEnv *env, jobject obj,
@@ -31046,13 +31046,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameteriHP ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameterfHP (
JNIEnv *env, jobject obj,
@@ -31070,13 +31070,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfHP ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameterivHP (
JNIEnv *env, jobject obj,
@@ -31103,13 +31103,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterivHP ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameterfvHP (
JNIEnv *env, jobject obj,
@@ -31136,13 +31136,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfvHP ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetImageTransformParameterivHP (
JNIEnv *env, jobject obj,
@@ -31170,13 +31170,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterivHP ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetImageTransformParameterfvHP (
JNIEnv *env, jobject obj,
@@ -31204,13 +31204,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterfvHP ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorSubTableEXT (
JNIEnv *env, jobject obj,
@@ -31232,13 +31232,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTableEXT ( GLenum , GLsizei , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHintPGI (
JNIEnv *env, jobject obj,
@@ -31254,13 +31254,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHintPGI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetListParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -31288,13 +31288,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterfvSGIX ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetListParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -31322,13 +31322,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterivSGIX ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameterfSGIX (
JNIEnv *env, jobject obj,
@@ -31346,13 +31346,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfSGIX ( GLuint , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -31379,13 +31379,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfvSGIX ( GLuint , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameteriSGIX (
JNIEnv *env, jobject obj,
@@ -31403,13 +31403,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameteriSGIX ( GLuint , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -31436,13 +31436,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterivSGIX ( GLuint , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexMaterialEXT (
JNIEnv *env, jobject obj,
@@ -31458,13 +31458,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexFuncEXT (
JNIEnv *env, jobject obj,
@@ -31480,13 +31480,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexFuncEXT ( GLenum , GLclampf ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCullParameterdvEXT (
JNIEnv *env, jobject obj,
@@ -31512,13 +31512,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterdvEXT ( GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCullParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -31544,13 +31544,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterfvEXT ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentColorMaterialSGIX (
JNIEnv *env, jobject obj,
@@ -31566,13 +31566,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentColorMaterialSGIX ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightfSGIX (
JNIEnv *env, jobject obj,
@@ -31590,13 +31590,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightfvSGIX (
JNIEnv *env, jobject obj,
@@ -31623,13 +31623,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightiSGIX (
JNIEnv *env, jobject obj,
@@ -31647,13 +31647,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightivSGIX (
JNIEnv *env, jobject obj,
@@ -31680,13 +31680,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModelfSGIX (
JNIEnv *env, jobject obj,
@@ -31702,13 +31702,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModelfvSGIX (
JNIEnv *env, jobject obj,
@@ -31733,13 +31733,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModeliSGIX (
JNIEnv *env, jobject obj,
@@ -31755,13 +31755,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModeliSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModelivSGIX (
JNIEnv *env, jobject obj,
@@ -31786,13 +31786,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialfSGIX (
JNIEnv *env, jobject obj,
@@ -31810,13 +31810,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialfvSGIX (
JNIEnv *env, jobject obj,
@@ -31843,13 +31843,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialiSGIX (
JNIEnv *env, jobject obj,
@@ -31867,13 +31867,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialivSGIX (
JNIEnv *env, jobject obj,
@@ -31900,13 +31900,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentLightfvSGIX (
JNIEnv *env, jobject obj,
@@ -31934,13 +31934,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentLightivSGIX (
JNIEnv *env, jobject obj,
@@ -31968,13 +31968,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentMaterialfvSGIX (
JNIEnv *env, jobject obj,
@@ -32002,13 +32002,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentMaterialivSGIX (
JNIEnv *env, jobject obj,
@@ -32036,13 +32036,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightEnviSGIX (
JNIEnv *env, jobject obj,
@@ -32058,13 +32058,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightEnviSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawRangeElementsEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -32289,13 +32289,13 @@
(*env)->ReleaseLongArrayElements(env, arg5, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElementsEXT ( GLenum , GLuint , GLuint , GLsizei , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glApplyTextureEXT (
JNIEnv *env, jobject obj,
@@ -32309,13 +32309,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glApplyTextureEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureLightEXT (
JNIEnv *env, jobject obj,
@@ -32329,13 +32329,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureLightEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureMaterialEXT (
JNIEnv *env, jobject obj,
@@ -32351,13 +32351,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAsyncMarkerSGIX (
JNIEnv *env, jobject obj,
@@ -32371,13 +32371,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glFinishAsyncSGIX (
JNIEnv *env, jobject obj,
@@ -32404,13 +32404,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glFinishAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glPollAsyncSGIX (
JNIEnv *env, jobject obj,
@@ -32437,13 +32437,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenAsyncMarkersSGIX (
JNIEnv *env, jobject obj,
@@ -32460,13 +32460,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenAsyncMarkersSGIX ( GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteAsyncMarkersSGIX (
JNIEnv *env, jobject obj,
@@ -32482,13 +32482,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteAsyncMarkersSGIX ( GLuint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsAsyncMarkerSGIX (
JNIEnv *env, jobject obj,
@@ -32505,13 +32505,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -32694,13 +32694,13 @@
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointervINTEL__I_3_3B (
JNIEnv *env, jobject obj,
@@ -32869,13 +32869,13 @@
(*env)->ReleaseLongArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointervINTEL ( GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -33058,13 +33058,13 @@
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -33247,13 +33247,13 @@
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameteriEXT (
JNIEnv *env, jobject obj,
@@ -33271,13 +33271,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameterfEXT (
JNIEnv *env, jobject obj,
@@ -33295,13 +33295,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameterivEXT (
JNIEnv *env, jobject obj,
@@ -33328,13 +33328,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -33361,13 +33361,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3bEXT (
JNIEnv *env, jobject obj,
@@ -33385,13 +33385,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3bvEXT (
JNIEnv *env, jobject obj,
@@ -33414,13 +33414,13 @@
(*env)->ReleaseByteArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3dEXT (
JNIEnv *env, jobject obj,
@@ -33438,13 +33438,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3dvEXT (
JNIEnv *env, jobject obj,
@@ -33467,13 +33467,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3fEXT (
JNIEnv *env, jobject obj,
@@ -33491,13 +33491,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3fvEXT (
JNIEnv *env, jobject obj,
@@ -33520,13 +33520,13 @@
(*env)->ReleaseFloatArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3iEXT (
JNIEnv *env, jobject obj,
@@ -33544,13 +33544,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3ivEXT (
JNIEnv *env, jobject obj,
@@ -33573,13 +33573,13 @@
(*env)->ReleaseIntArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3sEXT (
JNIEnv *env, jobject obj,
@@ -33597,13 +33597,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3svEXT (
JNIEnv *env, jobject obj,
@@ -33626,13 +33626,13 @@
(*env)->ReleaseShortArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3ubEXT (
JNIEnv *env, jobject obj,
@@ -33650,13 +33650,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubEXT ( GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3ubvEXT (
JNIEnv *env, jobject obj,
@@ -33679,13 +33679,13 @@
(*env)->ReleaseByteArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubvEXT ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3uiEXT (
JNIEnv *env, jobject obj,
@@ -33703,13 +33703,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uiEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3uivEXT (
JNIEnv *env, jobject obj,
@@ -33732,13 +33732,13 @@
(*env)->ReleaseIntArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uivEXT ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3usEXT (
JNIEnv *env, jobject obj,
@@ -33756,13 +33756,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usEXT ( GLushort , GLushort , GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3usvEXT (
JNIEnv *env, jobject obj,
@@ -33785,13 +33785,13 @@
(*env)->ReleaseShortArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usvEXT ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColorPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -33988,13 +33988,13 @@
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerEXT ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureNormalEXT (
JNIEnv *env, jobject obj,
@@ -34008,13 +34008,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureNormalEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiDrawArraysEXT (
JNIEnv *env, jobject obj,
@@ -34054,13 +34054,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawArraysEXT ( GLenum , GLint * , GLsizei * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiDrawElementsEXT__I_3II_3_3BI (
JNIEnv *env, jobject obj,
@@ -34334,13 +34334,13 @@
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawElementsEXT ( GLenum , const GLsizei * , GLenum , const GLvoid * * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordfEXT (
JNIEnv *env, jobject obj,
@@ -34354,13 +34354,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordfvEXT (
JNIEnv *env, jobject obj,
@@ -34383,13 +34383,13 @@
(*env)->ReleaseFloatArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoorddEXT (
JNIEnv *env, jobject obj,
@@ -34403,13 +34403,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddEXT ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoorddvEXT (
JNIEnv *env, jobject obj,
@@ -34432,13 +34432,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -34621,13 +34621,13 @@
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3bEXT (
JNIEnv *env, jobject obj,
@@ -34645,13 +34645,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3bvEXT (
JNIEnv *env, jobject obj,
@@ -34674,13 +34674,13 @@
(*env)->ReleaseByteArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3dEXT (
JNIEnv *env, jobject obj,
@@ -34698,13 +34698,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3dvEXT (
JNIEnv *env, jobject obj,
@@ -34727,13 +34727,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3fEXT (
JNIEnv *env, jobject obj,
@@ -34751,13 +34751,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3fvEXT (
JNIEnv *env, jobject obj,
@@ -34780,13 +34780,13 @@
(*env)->ReleaseFloatArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3iEXT (
JNIEnv *env, jobject obj,
@@ -34804,13 +34804,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3ivEXT (
JNIEnv *env, jobject obj,
@@ -34833,13 +34833,13 @@
(*env)->ReleaseIntArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3sEXT (
JNIEnv *env, jobject obj,
@@ -34857,13 +34857,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3svEXT (
JNIEnv *env, jobject obj,
@@ -34886,13 +34886,13 @@
(*env)->ReleaseShortArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3bEXT (
JNIEnv *env, jobject obj,
@@ -34910,13 +34910,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3bvEXT (
JNIEnv *env, jobject obj,
@@ -34939,13 +34939,13 @@
(*env)->ReleaseByteArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3dEXT (
JNIEnv *env, jobject obj,
@@ -34963,13 +34963,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3dvEXT (
JNIEnv *env, jobject obj,
@@ -34992,13 +34992,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3fEXT (
JNIEnv *env, jobject obj,
@@ -35016,13 +35016,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3fvEXT (
JNIEnv *env, jobject obj,
@@ -35045,13 +35045,13 @@
(*env)->ReleaseFloatArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3iEXT (
JNIEnv *env, jobject obj,
@@ -35069,13 +35069,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3ivEXT (
JNIEnv *env, jobject obj,
@@ -35098,13 +35098,13 @@
(*env)->ReleaseIntArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3sEXT (
JNIEnv *env, jobject obj,
@@ -35122,13 +35122,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3svEXT (
JNIEnv *env, jobject obj,
@@ -35151,13 +35151,13 @@
(*env)->ReleaseShortArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangentPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -35340,13 +35340,13 @@
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangentPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormalPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -35529,13 +35529,13 @@
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormalPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinishTextureSUNX (
JNIEnv *env, jobject obj)
@@ -35547,13 +35547,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishTextureSUNX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorbSUN (
JNIEnv *env, jobject obj,
@@ -35567,13 +35567,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorbSUN ( GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorsSUN (
JNIEnv *env, jobject obj,
@@ -35587,13 +35587,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorsSUN ( GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactoriSUN (
JNIEnv *env, jobject obj,
@@ -35607,13 +35607,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoriSUN ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorfSUN (
JNIEnv *env, jobject obj,
@@ -35627,13 +35627,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorfSUN ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactordSUN (
JNIEnv *env, jobject obj,
@@ -35647,13 +35647,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactordSUN ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorubSUN (
JNIEnv *env, jobject obj,
@@ -35667,13 +35667,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorusSUN (
JNIEnv *env, jobject obj,
@@ -35687,13 +35687,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactoruiSUN (
JNIEnv *env, jobject obj,
@@ -35707,13 +35707,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoruiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiSUN (
JNIEnv *env, jobject obj,
@@ -35727,13 +35727,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeusSUN (
JNIEnv *env, jobject obj,
@@ -35747,13 +35747,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeubSUN (
JNIEnv *env, jobject obj,
@@ -35767,13 +35767,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuivSUN (
JNIEnv *env, jobject obj,
@@ -35796,13 +35796,13 @@
(*env)->ReleaseIntArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuivSUN ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeusvSUN (
JNIEnv *env, jobject obj,
@@ -35825,13 +35825,13 @@
(*env)->ReleaseShortArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusvSUN ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeubvSUN (
JNIEnv *env, jobject obj,
@@ -35854,13 +35854,13 @@
(*env)->ReleaseByteArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubvSUN ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodePointerSUN__II_3_3B (
JNIEnv *env, jobject obj,
@@ -36043,13 +36043,13 @@
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodePointerSUN ( GLenum , GLsizei , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex2fSUN (
JNIEnv *env, jobject obj,
@@ -36073,13 +36073,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex2fvSUN (
JNIEnv *env, jobject obj,
@@ -36113,13 +36113,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36145,13 +36145,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36185,13 +36185,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36215,13 +36215,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36255,13 +36255,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36285,13 +36285,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36325,13 +36325,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36363,13 +36363,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36414,13 +36414,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36442,13 +36442,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36482,13 +36482,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fVertex4fSUN (
JNIEnv *env, jobject obj,
@@ -36516,13 +36516,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fVertex4fvSUN (
JNIEnv *env, jobject obj,
@@ -36556,13 +36556,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36592,13 +36592,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fSUN ( GLfloat , GLfloat , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36643,13 +36643,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fvSUN ( const GLfloat * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36677,13 +36677,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36728,13 +36728,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36762,13 +36762,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36813,13 +36813,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36855,13 +36855,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36917,13 +36917,13 @@
(*env)->ReleaseFloatArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fColor4fNormal3fVertex4fSUN (
JNIEnv *env, jobject obj,
@@ -36965,13 +36965,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fColor4fNormal3fVertex4fvSUN (
JNIEnv *env, jobject obj,
@@ -37027,13 +37027,13 @@
(*env)->ReleaseFloatArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37053,13 +37053,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37093,13 +37093,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fvSUN ( const GLenum * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37127,13 +37127,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fSUN ( GLenum , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37178,13 +37178,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fvSUN ( const GLenum * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37210,13 +37210,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37261,13 +37261,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37293,13 +37293,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37344,13 +37344,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37384,13 +37384,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37446,13 +37446,13 @@
(*env)->ReleaseFloatArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37476,13 +37476,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37527,13 +37527,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37563,13 +37563,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37625,13 +37625,13 @@
(*env)->ReleaseFloatArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37669,13 +37669,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37742,13 +37742,13 @@
(*env)->ReleaseFloatArrayElements(env, arg4, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendFuncSeparateEXT (
JNIEnv *env, jobject obj,
@@ -37768,13 +37768,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateEXT ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendFuncSeparateINGR (
JNIEnv *env, jobject obj,
@@ -37794,13 +37794,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateINGR ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexWeightfEXT (
JNIEnv *env, jobject obj,
@@ -37814,13 +37814,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexWeightfvEXT (
JNIEnv *env, jobject obj,
@@ -37843,13 +37843,13 @@
(*env)->ReleaseFloatArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexWeightPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -38046,13 +38046,13 @@
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightPointerEXT ( GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFlushVertexArrayRangeNV (
JNIEnv *env, jobject obj)
@@ -38064,13 +38064,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushVertexArrayRangeNV ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexArrayRangeNV__I_3B (
JNIEnv *env, jobject obj,
@@ -38239,13 +38239,13 @@
(*env)->ReleaseLongArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexArrayRangeNV ( GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameterfvNV (
JNIEnv *env, jobject obj,
@@ -38270,13 +38270,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfvNV ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameterfNV (
JNIEnv *env, jobject obj,
@@ -38292,13 +38292,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfNV ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameterivNV (
JNIEnv *env, jobject obj,
@@ -38323,13 +38323,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterivNV ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameteriNV (
JNIEnv *env, jobject obj,
@@ -38345,13 +38345,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameteriNV ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerInputNV (
JNIEnv *env, jobject obj,
@@ -38375,13 +38375,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerInputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerOutputNV (
JNIEnv *env, jobject obj,
@@ -38413,13 +38413,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerOutputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinalCombinerInputNV (
JNIEnv *env, jobject obj,
@@ -38439,13 +38439,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinalCombinerInputNV ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerInputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -38477,13 +38477,13 @@
(*env)->ReleaseFloatArrayElements(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterfvNV ( GLenum , GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerInputParameterivNV (
JNIEnv *env, jobject obj,
@@ -38515,13 +38515,13 @@
(*env)->ReleaseIntArrayElements(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterivNV ( GLenum , GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerOutputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -38551,13 +38551,13 @@
(*env)->ReleaseFloatArrayElements(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterfvNV ( GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerOutputParameterivNV (
JNIEnv *env, jobject obj,
@@ -38587,13 +38587,13 @@
(*env)->ReleaseIntArrayElements(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterivNV ( GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFinalCombinerInputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -38621,13 +38621,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFinalCombinerInputParameterivNV (
JNIEnv *env, jobject obj,
@@ -38655,13 +38655,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiModeDrawArraysIBM (
JNIEnv *env, jobject obj,
@@ -38701,13 +38701,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawArraysIBM ( GLenum , const GLint * , const GLsizei * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiModeDrawElementsIBM___3I_3II_3_3BII (
JNIEnv *env, jobject obj,
@@ -39058,13 +39058,13 @@
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawElementsIBM ( const GLenum * , const GLsizei * , GLenum , const GLvoid * * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -39275,13 +39275,13 @@
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColorPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -39492,13 +39492,13 @@
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagPointerListIBM (
JNIEnv *env, jobject obj,
@@ -39525,13 +39525,13 @@
(*env)->ReleaseBooleanArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerListIBM ( GLint , const GLboolean * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -39728,13 +39728,13 @@
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -39931,13 +39931,13 @@
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -40134,13 +40134,13 @@
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -40351,13 +40351,13 @@
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -40568,13 +40568,13 @@
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTbufferMask3DFX (
JNIEnv *env, jobject obj,
@@ -40588,13 +40588,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTbufferMask3DFX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleMaskEXT (
JNIEnv *env, jobject obj,
@@ -40610,13 +40610,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskEXT ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSamplePatternEXT (
JNIEnv *env, jobject obj,
@@ -40630,13 +40630,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureColorMaskSGIS (
JNIEnv *env, jobject obj,
@@ -40656,13 +40656,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureColorMaskSGIS ( GLboolean , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIglooInterfaceSGIX__I_3B (
JNIEnv *env, jobject obj,
@@ -40831,13 +40831,13 @@
(*env)->ReleaseLongArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIglooInterfaceSGIX ( GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenFencesNV (
JNIEnv *env, jobject obj,
@@ -40863,13 +40863,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenFencesNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteFencesNV (
JNIEnv *env, jobject obj,
@@ -40894,13 +40894,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFencesNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetFenceNV (
JNIEnv *env, jobject obj,
@@ -40916,13 +40916,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFenceNV ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glTestFenceNV (
JNIEnv *env, jobject obj,
@@ -40939,13 +40939,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glTestFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinishFenceNV (
JNIEnv *env, jobject obj,
@@ -40959,13 +40959,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsFenceNV (
JNIEnv *env, jobject obj,
@@ -40982,13 +40982,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFenceivNV (
JNIEnv *env, jobject obj,
@@ -41016,13 +41016,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFenceivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapControlPointsNV__IIIIIIIZ_3B (
JNIEnv *env, jobject obj,
@@ -41289,13 +41289,13 @@
(*env)->ReleaseLongArrayElements(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLint , GLint , GLboolean , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapParameterivNV (
JNIEnv *env, jobject obj,
@@ -41322,13 +41322,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterivNV ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41355,13 +41355,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapControlPointsNV__IIIIIZ_3B (
JNIEnv *env, jobject obj,
@@ -41607,13 +41607,13 @@
(*env)->ReleaseLongArrayElements(env, arg6, ptr6, (isCopiedArray6 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLboolean , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapParameterivNV (
JNIEnv *env, jobject obj,
@@ -41641,13 +41641,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41675,13 +41675,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapAttribParameterivNV (
JNIEnv *env, jobject obj,
@@ -41711,13 +41711,13 @@
(*env)->ReleaseIntArrayElements(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapAttribParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41747,13 +41747,13 @@
(*env)->ReleaseFloatArrayElements(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalMapsNV (
JNIEnv *env, jobject obj,
@@ -41769,13 +41769,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMapsNV ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerStageParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41802,13 +41802,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerStageParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerStageParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41836,13 +41836,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerStageParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindProgramNV (
JNIEnv *env, jobject obj,
@@ -41858,13 +41858,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindProgramNV ( GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteProgramsNV (
JNIEnv *env, jobject obj,
@@ -41889,13 +41889,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glExecuteProgramNV (
JNIEnv *env, jobject obj,
@@ -41922,13 +41922,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glExecuteProgramNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenProgramsNV (
JNIEnv *env, jobject obj,
@@ -41954,13 +41954,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenProgramsNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glAreProgramsResidentNV (
JNIEnv *env, jobject obj,
@@ -42000,13 +42000,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreProgramsResidentNV ( GLsizei , const GLuint * , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRequestResidentProgramsNV (
JNIEnv *env, jobject obj,
@@ -42031,13 +42031,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRequestResidentProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramParameterfvNV (
JNIEnv *env, jobject obj,
@@ -42067,13 +42067,13 @@
(*env)->ReleaseFloatArrayElements(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramParameterdvNV (
JNIEnv *env, jobject obj,
@@ -42103,13 +42103,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterdvNV ( GLenum , GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramivNV (
JNIEnv *env, jobject obj,
@@ -42137,13 +42137,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramStringNV (
JNIEnv *env, jobject obj,
@@ -42171,13 +42171,13 @@
(*env)->ReleaseByteArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramStringNV ( GLuint , GLenum , GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTrackMatrixivNV (
JNIEnv *env, jobject obj,
@@ -42207,13 +42207,13 @@
(*env)->ReleaseIntArrayElements(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTrackMatrixivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribdvNV (
JNIEnv *env, jobject obj,
@@ -42241,13 +42241,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribdvNV ( GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribfvNV (
JNIEnv *env, jobject obj,
@@ -42275,13 +42275,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribfvNV ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribivNV (
JNIEnv *env, jobject obj,
@@ -42309,13 +42309,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribPointervNV__II_3_3B (
JNIEnv *env, jobject obj,
@@ -42505,13 +42505,13 @@
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribPointervNV ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsProgramNV (
JNIEnv *env, jobject obj,
@@ -42528,13 +42528,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsProgramNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadProgramNV (
JNIEnv *env, jobject obj,
@@ -42563,13 +42563,13 @@
(*env)->ReleaseByteArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadProgramNV ( GLenum , GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4fNV (
JNIEnv *env, jobject obj,
@@ -42593,13 +42593,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fNV ( GLenum , GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4dNV (
JNIEnv *env, jobject obj,
@@ -42623,13 +42623,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dNV ( GLenum , GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4dvNV (
JNIEnv *env, jobject obj,
@@ -42656,13 +42656,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dvNV ( GLenum , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4fvNV (
JNIEnv *env, jobject obj,
@@ -42689,13 +42689,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fvNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameters4dvNV (
JNIEnv *env, jobject obj,
@@ -42724,13 +42724,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4dvNV ( GLenum , GLuint , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameters4fvNV (
JNIEnv *env, jobject obj,
@@ -42759,13 +42759,13 @@
(*env)->ReleaseFloatArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4fvNV ( GLenum , GLuint , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTrackMatrixNV (
JNIEnv *env, jobject obj,
@@ -42785,13 +42785,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTrackMatrixNV ( GLenum , GLuint , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribPointerNV__IIII_3B (
JNIEnv *env, jobject obj,
@@ -43002,13 +43002,13 @@
(*env)->ReleaseLongArrayElements(env, arg4, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribPointerNV ( GLuint , GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1sNV (
JNIEnv *env, jobject obj,
@@ -43024,13 +43024,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1sNV ( GLuint , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1fNV (
JNIEnv *env, jobject obj,
@@ -43046,13 +43046,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fNV ( GLuint , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1dNV (
JNIEnv *env, jobject obj,
@@ -43068,13 +43068,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dNV ( GLuint , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2sNV (
JNIEnv *env, jobject obj,
@@ -43092,13 +43092,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2sNV ( GLuint , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2fNV (
JNIEnv *env, jobject obj,
@@ -43116,13 +43116,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fNV ( GLuint , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2dNV (
JNIEnv *env, jobject obj,
@@ -43140,13 +43140,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dNV ( GLuint , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3sNV (
JNIEnv *env, jobject obj,
@@ -43166,13 +43166,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3sNV ( GLuint , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3fNV (
JNIEnv *env, jobject obj,
@@ -43192,13 +43192,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fNV ( GLuint , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3dNV (
JNIEnv *env, jobject obj,
@@ -43218,13 +43218,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dNV ( GLuint , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4sNV (
JNIEnv *env, jobject obj,
@@ -43246,13 +43246,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4sNV ( GLuint , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4fNV (
JNIEnv *env, jobject obj,
@@ -43274,13 +43274,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fNV ( GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4dNV (
JNIEnv *env, jobject obj,
@@ -43302,13 +43302,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dNV ( GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4ubNV (
JNIEnv *env, jobject obj,
@@ -43330,13 +43330,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubNV ( GLuint , GLubyte , GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1svNV (
JNIEnv *env, jobject obj,
@@ -43361,13 +43361,13 @@
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1fvNV (
JNIEnv *env, jobject obj,
@@ -43392,13 +43392,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1dvNV (
JNIEnv *env, jobject obj,
@@ -43423,13 +43423,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2svNV (
JNIEnv *env, jobject obj,
@@ -43454,13 +43454,13 @@
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2fvNV (
JNIEnv *env, jobject obj,
@@ -43485,13 +43485,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2dvNV (
JNIEnv *env, jobject obj,
@@ -43516,13 +43516,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3svNV (
JNIEnv *env, jobject obj,
@@ -43547,13 +43547,13 @@
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3fvNV (
JNIEnv *env, jobject obj,
@@ -43578,13 +43578,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3dvNV (
JNIEnv *env, jobject obj,
@@ -43609,13 +43609,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4svNV (
JNIEnv *env, jobject obj,
@@ -43640,13 +43640,13 @@
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4fvNV (
JNIEnv *env, jobject obj,
@@ -43671,13 +43671,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4dvNV (
JNIEnv *env, jobject obj,
@@ -43702,13 +43702,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4ubvNV (
JNIEnv *env, jobject obj,
@@ -43733,13 +43733,13 @@
(*env)->ReleaseByteArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubvNV ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs1svNV (
JNIEnv *env, jobject obj,
@@ -43766,13 +43766,13 @@
(*env)->ReleaseShortArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs1fvNV (
JNIEnv *env, jobject obj,
@@ -43799,13 +43799,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs1dvNV (
JNIEnv *env, jobject obj,
@@ -43832,13 +43832,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs2svNV (
JNIEnv *env, jobject obj,
@@ -43865,13 +43865,13 @@
(*env)->ReleaseShortArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs2fvNV (
JNIEnv *env, jobject obj,
@@ -43898,13 +43898,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs2dvNV (
JNIEnv *env, jobject obj,
@@ -43931,13 +43931,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs3svNV (
JNIEnv *env, jobject obj,
@@ -43964,13 +43964,13 @@
(*env)->ReleaseShortArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs3fvNV (
JNIEnv *env, jobject obj,
@@ -43997,13 +43997,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs3dvNV (
JNIEnv *env, jobject obj,
@@ -44030,13 +44030,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4svNV (
JNIEnv *env, jobject obj,
@@ -44063,13 +44063,13 @@
(*env)->ReleaseShortArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4fvNV (
JNIEnv *env, jobject obj,
@@ -44096,13 +44096,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4dvNV (
JNIEnv *env, jobject obj,
@@ -44129,13 +44129,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4ubvNV (
JNIEnv *env, jobject obj,
@@ -44162,13 +44162,13 @@
(*env)->ReleaseByteArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4ubvNV ( GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexBumpParameterivATI (
JNIEnv *env, jobject obj,
@@ -44193,13 +44193,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterivATI ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexBumpParameterfvATI (
JNIEnv *env, jobject obj,
@@ -44224,13 +44224,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterfvATI ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexBumpParameterivATI (
JNIEnv *env, jobject obj,
@@ -44256,13 +44256,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterivATI ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexBumpParameterfvATI (
JNIEnv *env, jobject obj,
@@ -44288,13 +44288,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterfvATI ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenFragmentShadersATI (
JNIEnv *env, jobject obj,
@@ -44311,13 +44311,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenFragmentShadersATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindFragmentShaderATI (
JNIEnv *env, jobject obj,
@@ -44331,13 +44331,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteFragmentShaderATI (
JNIEnv *env, jobject obj,
@@ -44351,13 +44351,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBeginFragmentShaderATI (
JNIEnv *env, jobject obj)
@@ -44369,13 +44369,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEndFragmentShaderATI (
JNIEnv *env, jobject obj)
@@ -44387,13 +44387,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPassTexCoordATI (
JNIEnv *env, jobject obj,
@@ -44411,13 +44411,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPassTexCoordATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleMapATI (
JNIEnv *env, jobject obj,
@@ -44435,13 +44435,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMapATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorFragmentOp1ATI (
JNIEnv *env, jobject obj,
@@ -44467,13 +44467,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorFragmentOp2ATI (
JNIEnv *env, jobject obj,
@@ -44505,13 +44505,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorFragmentOp3ATI (
JNIEnv *env, jobject obj,
@@ -44549,13 +44549,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFragmentOp1ATI (
JNIEnv *env, jobject obj,
@@ -44579,13 +44579,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFragmentOp2ATI (
JNIEnv *env, jobject obj,
@@ -44615,13 +44615,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFragmentOp3ATI (
JNIEnv *env, jobject obj,
@@ -44657,13 +44657,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetFragmentShaderConstantATI (
JNIEnv *env, jobject obj,
@@ -44688,13 +44688,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFragmentShaderConstantATI ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPNTrianglesiATI (
JNIEnv *env, jobject obj,
@@ -44710,13 +44710,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesiATI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPNTrianglesfATI (
JNIEnv *env, jobject obj,
@@ -44732,13 +44732,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesfATI ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glNewObjectBufferATI__I_3BI (
JNIEnv *env, jobject obj,
@@ -44942,13 +44942,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glNewObjectBufferATI ( GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsObjectBufferATI (
JNIEnv *env, jobject obj,
@@ -44965,13 +44965,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glUpdateObjectBufferATI__III_3BI (
JNIEnv *env, jobject obj,
@@ -45182,13 +45182,13 @@
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glUpdateObjectBufferATI ( GLuint , GLuint , GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetObjectBufferfvATI (
JNIEnv *env, jobject obj,
@@ -45216,13 +45216,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetObjectBufferivATI (
JNIEnv *env, jobject obj,
@@ -45250,13 +45250,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteObjectBufferATI (
JNIEnv *env, jobject obj,
@@ -45270,13 +45270,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glArrayObjectATI (
JNIEnv *env, jobject obj,
@@ -45300,13 +45300,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayObjectATI ( GLenum , GLint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetArrayObjectfvATI (
JNIEnv *env, jobject obj,
@@ -45334,13 +45334,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectfvATI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetArrayObjectivATI (
JNIEnv *env, jobject obj,
@@ -45368,13 +45368,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectivATI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantArrayObjectATI (
JNIEnv *env, jobject obj,
@@ -45396,13 +45396,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantArrayObjectATI ( GLuint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantArrayObjectfvATI (
JNIEnv *env, jobject obj,
@@ -45430,13 +45430,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantArrayObjectivATI (
JNIEnv *env, jobject obj,
@@ -45464,13 +45464,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBeginVertexShaderEXT (
JNIEnv *env, jobject obj)
@@ -45482,13 +45482,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEndVertexShaderEXT (
JNIEnv *env, jobject obj)
@@ -45500,13 +45500,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindVertexShaderEXT (
JNIEnv *env, jobject obj,
@@ -45520,13 +45520,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenVertexShadersEXT (
JNIEnv *env, jobject obj,
@@ -45543,13 +45543,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenVertexShadersEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteVertexShaderEXT (
JNIEnv *env, jobject obj,
@@ -45563,13 +45563,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShaderOp1EXT (
JNIEnv *env, jobject obj,
@@ -45587,13 +45587,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp1EXT ( GLenum , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShaderOp2EXT (
JNIEnv *env, jobject obj,
@@ -45613,13 +45613,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp2EXT ( GLenum , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShaderOp3EXT (
JNIEnv *env, jobject obj,
@@ -45641,13 +45641,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp3EXT ( GLenum , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSwizzleEXT (
JNIEnv *env, jobject obj,
@@ -45671,13 +45671,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSwizzleEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWriteMaskEXT (
JNIEnv *env, jobject obj,
@@ -45701,13 +45701,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWriteMaskEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInsertComponentEXT (
JNIEnv *env, jobject obj,
@@ -45725,13 +45725,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInsertComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glExtractComponentEXT (
JNIEnv *env, jobject obj,
@@ -45749,13 +45749,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glExtractComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenSymbolsEXT (
JNIEnv *env, jobject obj,
@@ -45778,13 +45778,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenSymbolsEXT ( GLenum , GLenum , GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetInvariantEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -45967,13 +45967,13 @@
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetInvariantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetLocalConstantEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -46156,13 +46156,13 @@
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetLocalConstantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantbvEXT (
JNIEnv *env, jobject obj,
@@ -46187,13 +46187,13 @@
(*env)->ReleaseByteArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantbvEXT ( GLuint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantsvEXT (
JNIEnv *env, jobject obj,
@@ -46218,13 +46218,13 @@
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantsvEXT ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantivEXT (
JNIEnv *env, jobject obj,
@@ -46249,13 +46249,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantivEXT ( GLuint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantfvEXT (
JNIEnv *env, jobject obj,
@@ -46280,13 +46280,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantfvEXT ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantdvEXT (
JNIEnv *env, jobject obj,
@@ -46311,13 +46311,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantdvEXT ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantubvEXT (
JNIEnv *env, jobject obj,
@@ -46342,13 +46342,13 @@
(*env)->ReleaseByteArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantubvEXT ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantusvEXT (
JNIEnv *env, jobject obj,
@@ -46373,13 +46373,13 @@
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantusvEXT ( GLuint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantuivEXT (
JNIEnv *env, jobject obj,
@@ -46404,13 +46404,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantuivEXT ( GLuint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -46607,13 +46607,13 @@
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantPointerEXT ( GLuint , GLenum , GLuint , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnableVariantClientStateEXT (
JNIEnv *env, jobject obj,
@@ -46627,13 +46627,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDisableVariantClientStateEXT (
JNIEnv *env, jobject obj,
@@ -46647,13 +46647,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindLightParameterEXT (
JNIEnv *env, jobject obj,
@@ -46672,13 +46672,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindLightParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindMaterialParameterEXT (
JNIEnv *env, jobject obj,
@@ -46697,13 +46697,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindMaterialParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindTexGenParameterEXT (
JNIEnv *env, jobject obj,
@@ -46724,13 +46724,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTexGenParameterEXT ( GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindTextureUnitParameterEXT (
JNIEnv *env, jobject obj,
@@ -46749,13 +46749,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTextureUnitParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindParameterEXT (
JNIEnv *env, jobject obj,
@@ -46772,13 +46772,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindParameterEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsVariantEnabledEXT (
JNIEnv *env, jobject obj,
@@ -46797,13 +46797,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsVariantEnabledEXT ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -46831,13 +46831,13 @@
(*env)->ReleaseBooleanArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -46865,13 +46865,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -46899,13 +46899,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantPointervEXT__II_3_3B (
JNIEnv *env, jobject obj,
@@ -47095,13 +47095,13 @@
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantPointervEXT ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetInvariantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -47129,13 +47129,13 @@
(*env)->ReleaseBooleanArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetInvariantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -47163,13 +47163,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetInvariantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -47197,13 +47197,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLocalConstantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -47231,13 +47231,13 @@
(*env)->ReleaseBooleanArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLocalConstantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -47265,13 +47265,13 @@
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLocalConstantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -47299,13 +47299,13 @@
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1s (
JNIEnv *env, jobject obj,
@@ -47321,13 +47321,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1s ( GLenum , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1sv (
JNIEnv *env, jobject obj,
@@ -47352,13 +47352,13 @@
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1i (
JNIEnv *env, jobject obj,
@@ -47374,13 +47374,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1i ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1iv (
JNIEnv *env, jobject obj,
@@ -47405,13 +47405,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1f (
JNIEnv *env, jobject obj,
@@ -47427,13 +47427,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1f ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1fv (
JNIEnv *env, jobject obj,
@@ -47458,13 +47458,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1d (
JNIEnv *env, jobject obj,
@@ -47480,13 +47480,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1d ( GLenum , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1dv (
JNIEnv *env, jobject obj,
@@ -47511,13 +47511,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2s (
JNIEnv *env, jobject obj,
@@ -47535,13 +47535,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2s ( GLenum , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2sv (
JNIEnv *env, jobject obj,
@@ -47566,13 +47566,13 @@
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2i (
JNIEnv *env, jobject obj,
@@ -47590,13 +47590,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2i ( GLenum , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2iv (
JNIEnv *env, jobject obj,
@@ -47621,13 +47621,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2f (
JNIEnv *env, jobject obj,
@@ -47645,13 +47645,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2f ( GLenum , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2fv (
JNIEnv *env, jobject obj,
@@ -47676,13 +47676,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2d (
JNIEnv *env, jobject obj,
@@ -47700,13 +47700,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2d ( GLenum , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2dv (
JNIEnv *env, jobject obj,
@@ -47731,13 +47731,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3s (
JNIEnv *env, jobject obj,
@@ -47757,13 +47757,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3sv (
JNIEnv *env, jobject obj,
@@ -47788,13 +47788,13 @@
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3i (
JNIEnv *env, jobject obj,
@@ -47814,13 +47814,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3iv (
JNIEnv *env, jobject obj,
@@ -47845,13 +47845,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3f (
JNIEnv *env, jobject obj,
@@ -47871,13 +47871,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3fv (
JNIEnv *env, jobject obj,
@@ -47902,13 +47902,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3d (
JNIEnv *env, jobject obj,
@@ -47928,13 +47928,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3dv (
JNIEnv *env, jobject obj,
@@ -47959,13 +47959,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4s (
JNIEnv *env, jobject obj,
@@ -47987,13 +47987,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4s ( GLenum , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4sv (
JNIEnv *env, jobject obj,
@@ -48018,13 +48018,13 @@
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4i (
JNIEnv *env, jobject obj,
@@ -48046,13 +48046,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4i ( GLenum , GLint , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4iv (
JNIEnv *env, jobject obj,
@@ -48077,13 +48077,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4f (
JNIEnv *env, jobject obj,
@@ -48105,13 +48105,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4f ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4fv (
JNIEnv *env, jobject obj,
@@ -48136,13 +48136,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4d (
JNIEnv *env, jobject obj,
@@ -48164,13 +48164,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4d ( GLenum , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4dv (
JNIEnv *env, jobject obj,
@@ -48195,13 +48195,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3b (
JNIEnv *env, jobject obj,
@@ -48221,13 +48221,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3b ( GLenum , GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3bv (
JNIEnv *env, jobject obj,
@@ -48252,13 +48252,13 @@
(*env)->ReleaseByteArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3bv ( GLenum , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3s (
JNIEnv *env, jobject obj,
@@ -48278,13 +48278,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3sv (
JNIEnv *env, jobject obj,
@@ -48309,13 +48309,13 @@
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3i (
JNIEnv *env, jobject obj,
@@ -48335,13 +48335,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3iv (
JNIEnv *env, jobject obj,
@@ -48366,13 +48366,13 @@
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3f (
JNIEnv *env, jobject obj,
@@ -48392,13 +48392,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3fv (
JNIEnv *env, jobject obj,
@@ -48423,13 +48423,13 @@
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3d (
JNIEnv *env, jobject obj,
@@ -48449,13 +48449,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3dv (
JNIEnv *env, jobject obj,
@@ -48480,13 +48480,13 @@
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClientActiveVertexStream (
JNIEnv *env, jobject obj,
@@ -48500,13 +48500,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveVertexStream ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexBlendEnvi (
JNIEnv *env, jobject obj,
@@ -48522,13 +48522,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvi ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexBlendEnvf (
JNIEnv *env, jobject obj,
@@ -48544,5 +48544,5 @@
);
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/C2J/glf-enum-auto.java b/C2J/glf-enum-auto.java
index 735d02a..71f09ff 100755
--- a/C2J/glf-enum-auto.java
+++ b/C2J/glf-enum-auto.java
@@ -4,27 +4,27 @@
* 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/C2J/glf-proto-auto-jni.c b/C2J/glf-proto-auto-jni.c
index 0921a80..37c87f8 100755
--- a/C2J/glf-proto-auto-jni.c
+++ b/C2J/glf-proto-auto-jni.c
@@ -4,13 +4,13 @@
* Reading from file: glf-proto-auto.orig.h . . .
* Destination-Class: gl4java_utils_glf_GLFFuncJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvf ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfInit (
JNIEnv *env, jobject obj)
@@ -20,13 +20,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfInit ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfClose (
JNIEnv *env, jobject obj)
@@ -36,13 +36,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfClose ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfUnloadFont (
JNIEnv *env, jobject obj)
@@ -55,13 +55,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfUnloadBFont (
JNIEnv *env, jobject obj)
@@ -74,13 +74,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadBFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfUnloadFontD (
JNIEnv *env, jobject obj,
@@ -95,13 +95,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadFontD ( int font_descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfUnloadBFontD (
JNIEnv *env, jobject obj,
@@ -116,13 +116,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadBFontD ( int bmf_descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawWiredSymbol (
JNIEnv *env, jobject obj,
@@ -134,13 +134,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawWiredString (
JNIEnv *env, jobject obj,
@@ -155,13 +155,13 @@
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawSolidSymbol (
JNIEnv *env, jobject obj,
@@ -173,13 +173,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawSolidString (
JNIEnv *env, jobject obj,
@@ -194,13 +194,13 @@
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DWiredSymbol (
JNIEnv *env, jobject obj,
@@ -212,13 +212,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DWiredString (
JNIEnv *env, jobject obj,
@@ -233,13 +233,13 @@
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DSolidSymbol (
JNIEnv *env, jobject obj,
@@ -251,13 +251,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DSolidString (
JNIEnv *env, jobject obj,
@@ -272,13 +272,13 @@
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfBeginBFont (
JNIEnv *env, jobject obj,
@@ -293,13 +293,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfBeginBFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfEndBFont (
JNIEnv *env, jobject obj)
@@ -309,13 +309,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfEndBFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawBSymbol (
JNIEnv *env, jobject obj,
@@ -327,13 +327,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawBString (
JNIEnv *env, jobject obj,
@@ -348,13 +348,13 @@
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawBMaskSymbol (
JNIEnv *env, jobject obj,
@@ -366,13 +366,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBMaskSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawBMaskString (
JNIEnv *env, jobject obj,
@@ -387,13 +387,13 @@
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBMaskString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawWiredSymbolF (
JNIEnv *env, jobject obj,
@@ -407,13 +407,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawWiredStringF (
JNIEnv *env, jobject obj,
@@ -430,13 +430,13 @@
free(ptr1);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawSolidSymbolF (
JNIEnv *env, jobject obj,
@@ -450,13 +450,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawSolidStringF (
JNIEnv *env, jobject obj,
@@ -473,13 +473,13 @@
free(ptr1);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DWiredSymbolF (
JNIEnv *env, jobject obj,
@@ -493,13 +493,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DWiredStringF (
JNIEnv *env, jobject obj,
@@ -516,13 +516,13 @@
free(ptr1);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DSolidSymbolF (
JNIEnv *env, jobject obj,
@@ -536,13 +536,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DSolidStringF (
JNIEnv *env, jobject obj,
@@ -559,13 +559,13 @@
free(ptr1);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetStringBoundsF (
JNIEnv *env, jobject obj,
@@ -630,13 +630,13 @@
(*env)->ReleaseFloatArrayElements(env, maxy, ptr5, (isCopiedArray5 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
void glfGetStringBoundsF ( int fd , const char * s , float * minx , float * miny , float * maxx , float * maxy ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetStringBounds (
JNIEnv *env, jobject obj,
@@ -699,13 +699,13 @@
(*env)->ReleaseFloatArrayElements(env, maxy, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
void glfGetStringBounds ( const char * s , float * minx , float * miny , float * maxx , float * maxy ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetSymbolSpace (
JNIEnv *env, jobject obj,
@@ -717,13 +717,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetSymbolSpace ( float sp ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jfloat JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetSymbolSpace (
JNIEnv *env, jobject obj)
@@ -736,13 +736,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
float glfGetSymbolSpace ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetSpaceSize (
JNIEnv *env, jobject obj,
@@ -754,13 +754,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetSpaceSize ( float sp ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jfloat JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetSpaceSize (
JNIEnv *env, jobject obj)
@@ -773,13 +773,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
float glfGetSpaceSize ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetSymbolDepth (
JNIEnv *env, jobject obj,
@@ -791,13 +791,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetSymbolDepth ( float dpth ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jfloat JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetSymbolDepth (
JNIEnv *env, jobject obj)
@@ -810,13 +810,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
float glfGetSymbolDepth ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetCurrentFont (
JNIEnv *env, jobject obj,
@@ -831,13 +831,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfSetCurrentFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetCurrentBFont (
JNIEnv *env, jobject obj,
@@ -852,13 +852,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfSetCurrentBFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetCurrentFont (
JNIEnv *env, jobject obj)
@@ -871,13 +871,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfGetCurrentFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetCurrentBFont (
JNIEnv *env, jobject obj)
@@ -890,13 +890,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfGetCurrentBFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetAnchorPoint (
JNIEnv *env, jobject obj,
@@ -908,13 +908,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetAnchorPoint ( int anchp ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetContourColor (
JNIEnv *env, jobject obj,
@@ -932,13 +932,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetContourColor ( float r , float g , float b , float a ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfEnable (
JNIEnv *env, jobject obj,
@@ -950,13 +950,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfEnable ( int what ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDisable (
JNIEnv *env, jobject obj,
@@ -968,13 +968,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDisable ( int what ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetConsoleParam (
JNIEnv *env, jobject obj,
@@ -988,13 +988,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetConsoleParam ( int width , int height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetConsoleFont (
JNIEnv *env, jobject obj,
@@ -1009,13 +1009,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfSetConsoleFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfConsoleClear (
JNIEnv *env, jobject obj)
@@ -1025,13 +1025,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfConsoleClear ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfPrint (
JNIEnv *env, jobject obj,
@@ -1048,13 +1048,13 @@
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfPrint ( const char * s , int lenght ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfPrintString (
JNIEnv *env, jobject obj,
@@ -1069,13 +1069,13 @@
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfPrintString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfPrintChar (
JNIEnv *env, jobject obj,
@@ -1087,13 +1087,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfPrintChar ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfConsoleDraw (
JNIEnv *env, jobject obj)
@@ -1103,13 +1103,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfConsoleDraw ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetCursorBlinkRate (
JNIEnv *env, jobject obj,
@@ -1121,13 +1121,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetCursorBlinkRate ( int Rate ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfStringCentering (
JNIEnv *env, jobject obj,
@@ -1139,13 +1139,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfStringCentering ( GLboolean center ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetStringCentering (
JNIEnv *env, jobject obj)
@@ -1158,13 +1158,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
GLboolean glfGetStringCentering ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfBitmapStringCentering (
JNIEnv *env, jobject obj,
@@ -1176,13 +1176,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfBitmapStringCentering ( GLboolean center ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfBitmapGetStringCentering (
JNIEnv *env, jobject obj)
@@ -1195,13 +1195,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
GLboolean glfBitmapGetStringCentering ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfStringDirection (
JNIEnv *env, jobject obj,
@@ -1213,13 +1213,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfStringDirection ( GLuint direction ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetStringDirection (
JNIEnv *env, jobject obj)
@@ -1232,13 +1232,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
GLuint glfGetStringDirection ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetRotateAngle (
JNIEnv *env, jobject obj,
@@ -1250,13 +1250,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetRotateAngle ( float angle ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetBRotateAngle (
JNIEnv *env, jobject obj,
@@ -1268,5 +1268,5 @@
);
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/C2J/glf-proto-auto-jni12.c b/C2J/glf-proto-auto-jni12.c
index 3966416..e820210 100755
--- a/C2J/glf-proto-auto-jni12.c
+++ b/C2J/glf-proto-auto-jni12.c
@@ -4,13 +4,13 @@
* Reading from file: glf-proto-auto.orig.h . . .
* Destination-Class: gl4java_utils_glf_GLFFuncJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
void glfSetBRotateAngle ( float angle ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfInit (
JNIEnv *env, jobject obj)
@@ -20,13 +20,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfInit ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfClose (
JNIEnv *env, jobject obj)
@@ -36,13 +36,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfClose ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfUnloadFont (
JNIEnv *env, jobject obj)
@@ -55,13 +55,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfUnloadBFont (
JNIEnv *env, jobject obj)
@@ -74,13 +74,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadBFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfUnloadFontD (
JNIEnv *env, jobject obj,
@@ -95,13 +95,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadFontD ( int font_descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfUnloadBFontD (
JNIEnv *env, jobject obj,
@@ -116,13 +116,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadBFontD ( int bmf_descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawWiredSymbol (
JNIEnv *env, jobject obj,
@@ -134,13 +134,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawWiredString (
JNIEnv *env, jobject obj,
@@ -155,13 +155,13 @@
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawSolidSymbol (
JNIEnv *env, jobject obj,
@@ -173,13 +173,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawSolidString (
JNIEnv *env, jobject obj,
@@ -194,13 +194,13 @@
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DWiredSymbol (
JNIEnv *env, jobject obj,
@@ -212,13 +212,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DWiredString (
JNIEnv *env, jobject obj,
@@ -233,13 +233,13 @@
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DSolidSymbol (
JNIEnv *env, jobject obj,
@@ -251,13 +251,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DSolidString (
JNIEnv *env, jobject obj,
@@ -272,13 +272,13 @@
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfBeginBFont (
JNIEnv *env, jobject obj,
@@ -293,13 +293,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfBeginBFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfEndBFont (
JNIEnv *env, jobject obj)
@@ -309,13 +309,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfEndBFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawBSymbol (
JNIEnv *env, jobject obj,
@@ -327,13 +327,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawBString (
JNIEnv *env, jobject obj,
@@ -348,13 +348,13 @@
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawBMaskSymbol (
JNIEnv *env, jobject obj,
@@ -366,13 +366,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBMaskSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawBMaskString (
JNIEnv *env, jobject obj,
@@ -387,13 +387,13 @@
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBMaskString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawWiredSymbolF (
JNIEnv *env, jobject obj,
@@ -407,13 +407,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawWiredStringF (
JNIEnv *env, jobject obj,
@@ -430,13 +430,13 @@
free(ptr1);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawSolidSymbolF (
JNIEnv *env, jobject obj,
@@ -450,13 +450,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawSolidStringF (
JNIEnv *env, jobject obj,
@@ -473,13 +473,13 @@
free(ptr1);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DWiredSymbolF (
JNIEnv *env, jobject obj,
@@ -493,13 +493,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DWiredStringF (
JNIEnv *env, jobject obj,
@@ -516,13 +516,13 @@
free(ptr1);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DSolidSymbolF (
JNIEnv *env, jobject obj,
@@ -536,13 +536,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DSolidStringF (
JNIEnv *env, jobject obj,
@@ -559,13 +559,13 @@
free(ptr1);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetStringBoundsF (
JNIEnv *env, jobject obj,
@@ -630,13 +630,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, maxy, ptr5, (isCopiedArray5 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
void glfGetStringBoundsF ( int fd , const char * s , float * minx , float * miny , float * maxx , float * maxy ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetStringBounds (
JNIEnv *env, jobject obj,
@@ -699,13 +699,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, maxy, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
void glfGetStringBounds ( const char * s , float * minx , float * miny , float * maxx , float * maxy ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetSymbolSpace (
JNIEnv *env, jobject obj,
@@ -717,13 +717,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetSymbolSpace ( float sp ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jfloat JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetSymbolSpace (
JNIEnv *env, jobject obj)
@@ -736,13 +736,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
float glfGetSymbolSpace ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetSpaceSize (
JNIEnv *env, jobject obj,
@@ -754,13 +754,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetSpaceSize ( float sp ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jfloat JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetSpaceSize (
JNIEnv *env, jobject obj)
@@ -773,13 +773,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
float glfGetSpaceSize ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetSymbolDepth (
JNIEnv *env, jobject obj,
@@ -791,13 +791,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetSymbolDepth ( float dpth ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jfloat JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetSymbolDepth (
JNIEnv *env, jobject obj)
@@ -810,13 +810,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
float glfGetSymbolDepth ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetCurrentFont (
JNIEnv *env, jobject obj,
@@ -831,13 +831,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfSetCurrentFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetCurrentBFont (
JNIEnv *env, jobject obj,
@@ -852,13 +852,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfSetCurrentBFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetCurrentFont (
JNIEnv *env, jobject obj)
@@ -871,13 +871,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfGetCurrentFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetCurrentBFont (
JNIEnv *env, jobject obj)
@@ -890,13 +890,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfGetCurrentBFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetAnchorPoint (
JNIEnv *env, jobject obj,
@@ -908,13 +908,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetAnchorPoint ( int anchp ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetContourColor (
JNIEnv *env, jobject obj,
@@ -932,13 +932,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetContourColor ( float r , float g , float b , float a ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfEnable (
JNIEnv *env, jobject obj,
@@ -950,13 +950,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfEnable ( int what ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDisable (
JNIEnv *env, jobject obj,
@@ -968,13 +968,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDisable ( int what ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetConsoleParam (
JNIEnv *env, jobject obj,
@@ -988,13 +988,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetConsoleParam ( int width , int height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetConsoleFont (
JNIEnv *env, jobject obj,
@@ -1009,13 +1009,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfSetConsoleFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfConsoleClear (
JNIEnv *env, jobject obj)
@@ -1025,13 +1025,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfConsoleClear ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfPrint (
JNIEnv *env, jobject obj,
@@ -1048,13 +1048,13 @@
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfPrint ( const char * s , int lenght ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfPrintString (
JNIEnv *env, jobject obj,
@@ -1069,13 +1069,13 @@
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfPrintString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfPrintChar (
JNIEnv *env, jobject obj,
@@ -1087,13 +1087,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfPrintChar ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfConsoleDraw (
JNIEnv *env, jobject obj)
@@ -1103,13 +1103,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfConsoleDraw ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetCursorBlinkRate (
JNIEnv *env, jobject obj,
@@ -1121,13 +1121,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetCursorBlinkRate ( int Rate ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfStringCentering (
JNIEnv *env, jobject obj,
@@ -1139,13 +1139,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfStringCentering ( GLboolean center ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetStringCentering (
JNIEnv *env, jobject obj)
@@ -1158,13 +1158,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
GLboolean glfGetStringCentering ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfBitmapStringCentering (
JNIEnv *env, jobject obj,
@@ -1176,13 +1176,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfBitmapStringCentering ( GLboolean center ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfBitmapGetStringCentering (
JNIEnv *env, jobject obj)
@@ -1195,13 +1195,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
GLboolean glfBitmapGetStringCentering ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfStringDirection (
JNIEnv *env, jobject obj,
@@ -1213,13 +1213,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfStringDirection ( GLuint direction ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetStringDirection (
JNIEnv *env, jobject obj)
@@ -1232,13 +1232,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
GLuint glfGetStringDirection ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetRotateAngle (
JNIEnv *env, jobject obj,
@@ -1250,13 +1250,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetRotateAngle ( float angle ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetBRotateAngle (
JNIEnv *env, jobject obj,
@@ -1268,5 +1268,5 @@
);
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/C2J/glf-proto-auto.java b/C2J/glf-proto-auto.java
index 1b9a56f..caf3781 100755
--- a/C2J/glf-proto-auto.java
+++ b/C2J/glf-proto-auto.java
@@ -4,296 +4,296 @@
* Reading from file: glf-proto-auto.orig.h . . .
* Destination-Class: gl4java_utils_glf_GLF !
*/
-
-/**
- * Original Function-Prototype :
- *
void glfSetBRotateAngle ( float angle ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfInit (
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfInit ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfClose (
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfClose ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glfUnloadFont (
) ;
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glfUnloadBFont (
) ;
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadBFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glfUnloadFontD (
int font_descriptor
) ;
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadFontD ( int font_descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glfUnloadBFontD (
int bmf_descriptor
) ;
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadBFontD ( int bmf_descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDrawWiredSymbol (
byte s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDrawWiredString (
String s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDrawSolidSymbol (
byte s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDrawSolidString (
String s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDraw3DWiredSymbol (
byte s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDraw3DWiredString (
String s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDraw3DSolidSymbol (
byte s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDraw3DSolidString (
String s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glfBeginBFont (
int Font_Descriptor
) ;
-
-/**
- * Original Function-Prototype :
- *
int glfBeginBFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfEndBFont (
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfEndBFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDrawBSymbol (
byte s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDrawBString (
String s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDrawBMaskSymbol (
byte s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBMaskSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDrawBMaskString (
String s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBMaskString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDrawWiredSymbolF (
int font_descriptor,
byte s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDrawWiredStringF (
int font_descriptor,
String s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDrawSolidSymbolF (
int font_descriptor,
byte s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDrawSolidStringF (
int font_descriptor,
String s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDraw3DWiredSymbolF (
int font_descriptor,
byte s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDraw3DWiredStringF (
int font_descriptor,
String s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDraw3DSolidSymbolF (
int font_descriptor,
byte s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDraw3DSolidStringF (
int font_descriptor,
String s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfGetStringBoundsF (
int fd,
String s,
@@ -302,13 +302,13 @@
float[] maxx,
float[] maxy
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfGetStringBoundsF ( int fd , const char * s , float * minx , float * miny , float * maxx , float * maxy ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfGetStringBounds (
String s,
float[] minx,
@@ -316,300 +316,300 @@
float[] maxx,
float[] maxy
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfGetStringBounds ( const char * s , float * minx , float * miny , float * maxx , float * maxy ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfSetSymbolSpace (
float sp
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfSetSymbolSpace ( float sp ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native float glfGetSymbolSpace (
) ;
-
-/**
- * Original Function-Prototype :
- *
float glfGetSymbolSpace ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfSetSpaceSize (
float sp
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfSetSpaceSize ( float sp ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native float glfGetSpaceSize (
) ;
-
-/**
- * Original Function-Prototype :
- *
float glfGetSpaceSize ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfSetSymbolDepth (
float dpth
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfSetSymbolDepth ( float dpth ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native float glfGetSymbolDepth (
) ;
-
-/**
- * Original Function-Prototype :
- *
float glfGetSymbolDepth ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glfSetCurrentFont (
int Font_Descriptor
) ;
-
-/**
- * Original Function-Prototype :
- *
int glfSetCurrentFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glfSetCurrentBFont (
int Font_Descriptor
) ;
-
-/**
- * Original Function-Prototype :
- *
int glfSetCurrentBFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glfGetCurrentFont (
) ;
-
-/**
- * Original Function-Prototype :
- *
int glfGetCurrentFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glfGetCurrentBFont (
) ;
-
-/**
- * Original Function-Prototype :
- *
int glfGetCurrentBFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfSetAnchorPoint (
int anchp
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfSetAnchorPoint ( int anchp ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfSetContourColor (
float r,
float g,
float b,
float a
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfSetContourColor ( float r , float g , float b , float a ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfEnable (
int what
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfEnable ( int what ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfDisable (
int what
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfDisable ( int what ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfSetConsoleParam (
int width,
int height
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfSetConsoleParam ( int width , int height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glfSetConsoleFont (
int Font_Descriptor
) ;
-
-/**
- * Original Function-Prototype :
- *
int glfSetConsoleFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfConsoleClear (
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfConsoleClear ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfPrint (
String s,
int lenght
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfPrint ( const char * s , int lenght ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfPrintString (
String s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfPrintString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfPrintChar (
byte s
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfPrintChar ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfConsoleDraw (
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfConsoleDraw ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfSetCursorBlinkRate (
int Rate
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfSetCursorBlinkRate ( int Rate ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfStringCentering (
boolean center
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfStringCentering ( GLboolean center ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glfGetStringCentering (
) ;
-
-/**
- * Original Function-Prototype :
- *
GLboolean glfGetStringCentering ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfBitmapStringCentering (
boolean center
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfBitmapStringCentering ( GLboolean center ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean glfBitmapGetStringCentering (
) ;
-
-/**
- * Original Function-Prototype :
- *
GLboolean glfBitmapGetStringCentering ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfStringDirection (
int direction
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfStringDirection ( GLuint direction ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int glfGetStringDirection (
) ;
-
-/**
- * Original Function-Prototype :
- *
GLuint glfGetStringDirection ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void glfSetRotateAngle (
float angle
) ;
-
-/**
- * Original Function-Prototype :
- *
void glfSetRotateAngle ( float angle ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
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. */
diff --git a/C2J/glu-disp-fetch-auto.hc b/C2J/glu-disp-fetch-auto.hc
index f18a0a4..d8f0c76 100644
--- a/C2J/glu-disp-fetch-auto.hc
+++ b/C2J/glu-disp-fetch-auto.hc
@@ -4,143 +4,143 @@
* Reading from file: glu-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFuncJauJNI !
*/
-
+
disp__gluBeginCurve = (void (CALLBACK *)(GLUnurbs *))
GET_GL_PROCADDRESS ("gluBeginCurve");
-
+
disp__gluBeginPolygon = (void (CALLBACK *)(GLUtesselator *))
GET_GL_PROCADDRESS ("gluBeginPolygon");
-
+
disp__gluBeginSurface = (void (CALLBACK *)(GLUnurbs *))
GET_GL_PROCADDRESS ("gluBeginSurface");
-
+
disp__gluBeginTrim = (void (CALLBACK *)(GLUnurbs *))
GET_GL_PROCADDRESS ("gluBeginTrim");
-
+
disp__gluBuild1DMipmapLevels = (GLint (CALLBACK *)(GLenum, GLint, GLsizei, GLenum, GLenum, GLint, GLint, GLint, const void *))
GET_GL_PROCADDRESS ("gluBuild1DMipmapLevels");
-
+
disp__gluBuild1DMipmaps = (GLint (CALLBACK *)(GLenum, GLint, GLsizei, GLenum, GLenum, const void *))
GET_GL_PROCADDRESS ("gluBuild1DMipmaps");
-
+
disp__gluBuild2DMipmapLevels = (GLint (CALLBACK *)(GLenum, GLint, GLsizei, GLsizei, GLenum, GLenum, GLint, GLint, GLint, const void *))
GET_GL_PROCADDRESS ("gluBuild2DMipmapLevels");
-
+
disp__gluBuild2DMipmaps = (GLint (CALLBACK *)(GLenum, GLint, GLsizei, GLsizei, GLenum, GLenum, const void *))
GET_GL_PROCADDRESS ("gluBuild2DMipmaps");
-
+
disp__gluBuild3DMipmapLevels = (GLint (CALLBACK *)(GLenum, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, GLint, GLint, GLint, const void *))
GET_GL_PROCADDRESS ("gluBuild3DMipmapLevels");
-
+
disp__gluBuild3DMipmaps = (GLint (CALLBACK *)(GLenum, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const void *))
GET_GL_PROCADDRESS ("gluBuild3DMipmaps");
-
+
disp__gluCheckExtension = (GLboolean (CALLBACK *)(const GLubyte *, const GLubyte *))
GET_GL_PROCADDRESS ("gluCheckExtension");
-
+
disp__gluCylinder = (void (CALLBACK *)(GLUquadric *, GLdouble, GLdouble, GLdouble, GLint, GLint))
GET_GL_PROCADDRESS ("gluCylinder");
-
+
disp__gluDisk = (void (CALLBACK *)(GLUquadric *, GLdouble, GLdouble, GLint, GLint))
GET_GL_PROCADDRESS ("gluDisk");
-
+
disp__gluEndCurve = (void (CALLBACK *)(GLUnurbs *))
GET_GL_PROCADDRESS ("gluEndCurve");
-
+
disp__gluEndPolygon = (void (CALLBACK *)(GLUtesselator *))
GET_GL_PROCADDRESS ("gluEndPolygon");
-
+
disp__gluEndSurface = (void (CALLBACK *)(GLUnurbs *))
GET_GL_PROCADDRESS ("gluEndSurface");
-
+
disp__gluEndTrim = (void (CALLBACK *)(GLUnurbs *))
GET_GL_PROCADDRESS ("gluEndTrim");
-
+
disp__gluGetNurbsProperty = (void (CALLBACK *)(GLUnurbs *, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("gluGetNurbsProperty");
-
+
disp__gluGetTessProperty = (void (CALLBACK *)(GLUtesselator *, GLenum, GLdouble *))
GET_GL_PROCADDRESS ("gluGetTessProperty");
-
+
disp__gluLoadSamplingMatrices = (void (CALLBACK *)(GLUnurbs *, const GLfloat *, const GLfloat *, const GLint *))
GET_GL_PROCADDRESS ("gluLoadSamplingMatrices");
-
+
disp__gluLookAt = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("gluLookAt");
-
+
disp__gluNextContour = (void (CALLBACK *)(GLUtesselator *, GLenum))
GET_GL_PROCADDRESS ("gluNextContour");
-
+
disp__gluNurbsCurve = (void (CALLBACK *)(GLUnurbs *, GLint, GLfloat *, GLint, GLfloat *, GLint, GLenum))
GET_GL_PROCADDRESS ("gluNurbsCurve");
-
+
disp__gluNurbsProperty = (void (CALLBACK *)(GLUnurbs *, GLenum, GLfloat))
GET_GL_PROCADDRESS ("gluNurbsProperty");
-
+
disp__gluNurbsSurface = (void (CALLBACK *)(GLUnurbs *, GLint, GLfloat *, GLint, GLfloat *, GLint, GLint, GLfloat *, GLint, GLint, GLenum))
GET_GL_PROCADDRESS ("gluNurbsSurface");
-
+
disp__gluOrtho2D = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("gluOrtho2D");
-
+
disp__gluPartialDisk = (void (CALLBACK *)(GLUquadric *, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("gluPartialDisk");
-
+
disp__gluPerspective = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("gluPerspective");
-
+
disp__gluPickMatrix = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble, GLdouble, GLint *))
GET_GL_PROCADDRESS ("gluPickMatrix");
-
+
disp__gluProject = (GLint (CALLBACK *)(GLdouble, GLdouble, GLdouble, const GLdouble *, const GLdouble *, const GLint *, GLdouble *, GLdouble *, GLdouble *))
GET_GL_PROCADDRESS ("gluProject");
-
+
disp__gluPwlCurve = (void (CALLBACK *)(GLUnurbs *, GLint, GLfloat *, GLint, GLenum))
GET_GL_PROCADDRESS ("gluPwlCurve");
-
+
disp__gluQuadricDrawStyle = (void (CALLBACK *)(GLUquadric *, GLenum))
GET_GL_PROCADDRESS ("gluQuadricDrawStyle");
-
+
disp__gluQuadricNormals = (void (CALLBACK *)(GLUquadric *, GLenum))
GET_GL_PROCADDRESS ("gluQuadricNormals");
-
+
disp__gluQuadricOrientation = (void (CALLBACK *)(GLUquadric *, GLenum))
GET_GL_PROCADDRESS ("gluQuadricOrientation");
-
+
disp__gluQuadricTexture = (void (CALLBACK *)(GLUquadric *, GLboolean))
GET_GL_PROCADDRESS ("gluQuadricTexture");
-
+
disp__gluScaleImage = (GLint (CALLBACK *)(GLenum, GLsizei, GLsizei, GLenum, const void *, GLsizei, GLsizei, GLenum, GLvoid *))
GET_GL_PROCADDRESS ("gluScaleImage");
-
+
disp__gluSphere = (void (CALLBACK *)(GLUquadric *, GLdouble, GLint, GLint))
GET_GL_PROCADDRESS ("gluSphere");
-
+
disp__gluTessBeginContour = (void (CALLBACK *)(GLUtesselator *))
GET_GL_PROCADDRESS ("gluTessBeginContour");
-
+
disp__gluTessBeginPolygon = (void (CALLBACK *)(GLUtesselator *, GLvoid *))
GET_GL_PROCADDRESS ("gluTessBeginPolygon");
-
+
disp__gluTessEndContour = (void (CALLBACK *)(GLUtesselator *))
GET_GL_PROCADDRESS ("gluTessEndContour");
-
+
disp__gluTessEndPolygon = (void (CALLBACK *)(GLUtesselator *))
GET_GL_PROCADDRESS ("gluTessEndPolygon");
-
+
disp__gluTessNormal = (void (CALLBACK *)(GLUtesselator *, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("gluTessNormal");
-
+
disp__gluTessProperty = (void (CALLBACK *)(GLUtesselator *, GLenum, GLdouble))
GET_GL_PROCADDRESS ("gluTessProperty");
-
+
disp__gluTessVertex = (void (CALLBACK *)(GLUtesselator *, GLdouble *, GLvoid *))
GET_GL_PROCADDRESS ("gluTessVertex");
-
+
disp__gluUnProject = (GLint (CALLBACK *)(GLdouble, GLdouble, GLdouble, const GLdouble *, const GLdouble *, const GLint *, GLdouble *, GLdouble *, GLdouble *))
GET_GL_PROCADDRESS ("gluUnProject");
-
+
disp__gluUnProject4 = (GLint (CALLBACK *)(GLdouble, GLdouble, GLdouble, GLdouble, const GLdouble *, const GLdouble *, const GLint *, GLdouble, GLdouble, GLdouble *, GLdouble *, GLdouble *, GLdouble *))
GET_GL_PROCADDRESS ("gluUnProject4");
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/C2J/glu-disp-var-auto.h b/C2J/glu-disp-var-auto.h
index e57b1ef..f526d99 100644
--- a/C2J/glu-disp-var-auto.h
+++ b/C2J/glu-disp-var-auto.h
@@ -4,373 +4,373 @@
* Reading from file: glu-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
void glfSetBRotateAngle ( float angle ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluBeginCurve )(GLUnurbs *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluBeginPolygon )(GLUtesselator *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluBeginSurface )(GLUnurbs *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluBeginTrim )(GLUnurbs *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluBuild1DMipmapLevels )(GLenum, GLint, GLsizei, GLenum, GLenum, GLint, GLint, GLint, const void *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluBuild1DMipmaps )(GLenum, GLint, GLsizei, GLenum, GLenum, const void *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluBuild2DMipmapLevels )(GLenum, GLint, GLsizei, GLsizei, GLenum, GLenum, GLint, GLint, GLint, const void *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluBuild2DMipmaps )(GLenum, GLint, GLsizei, GLsizei, GLenum, GLenum, const void *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluBuild3DMipmapLevels )(GLenum, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, GLint, GLint, GLint, const void *);
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluBuild3DMipmaps )(GLenum, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const void *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild3DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__gluCheckExtension )(const GLubyte *, const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean gluCheckExtension ( const GLubyte * extName , const GLubyte * extString ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluCylinder )(GLUquadric *, GLdouble, GLdouble, GLdouble, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void gluCylinder ( GLUquadric * quad , GLdouble base , GLdouble top , GLdouble height , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluDisk )(GLUquadric *, GLdouble, GLdouble, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void gluDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluEndCurve )(GLUnurbs *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluEndPolygon )(GLUtesselator *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluEndSurface )(GLUnurbs *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluEndTrim )(GLUnurbs *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluGetNurbsProperty )(GLUnurbs *, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluGetTessProperty )(GLUtesselator *, GLenum, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetTessProperty ( GLUtesselator * tess , GLenum which , GLdouble * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluLoadSamplingMatrices )(GLUnurbs *, const GLfloat *, const GLfloat *, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluLoadSamplingMatrices ( GLUnurbs * nurb , const GLfloat * model , const GLfloat * perspective , const GLint * view ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluLookAt )(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void gluLookAt ( GLdouble eyeX , GLdouble eyeY , GLdouble eyeZ , GLdouble centerX , GLdouble centerY , GLdouble centerZ , GLdouble upX , GLdouble upY , GLdouble upZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluNextContour )(GLUtesselator *, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void gluNextContour ( GLUtesselator * tess , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluNurbsCurve )(GLUnurbs *, GLint, GLfloat *, GLint, GLfloat *, GLint, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsCurve ( GLUnurbs * nurb , GLint knotCount , GLfloat * knots , GLint stride , GLfloat * control , GLint order , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluNurbsProperty )(GLUnurbs *, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluNurbsSurface )(GLUnurbs *, GLint, GLfloat *, GLint, GLfloat *, GLint, GLint, GLfloat *, GLint, GLint, GLenum);
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluOrtho2D )(GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void gluOrtho2D ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluPartialDisk )(GLUquadric *, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void gluPartialDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops , GLdouble start , GLdouble sweep ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluPerspective )(GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void gluPerspective ( GLdouble fovy , GLdouble aspect , GLdouble zNear , GLdouble zFar ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluPickMatrix )(GLdouble, GLdouble, GLdouble, GLdouble, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluPickMatrix ( GLdouble x , GLdouble y , GLdouble delX , GLdouble delY , GLint * viewport ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluProject )(GLdouble, GLdouble, GLdouble, const GLdouble *, const GLdouble *, const GLint *, GLdouble *, GLdouble *, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluProject ( GLdouble objX , GLdouble objY , GLdouble objZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * winX , GLdouble * winY , GLdouble * winZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluPwlCurve )(GLUnurbs *, GLint, GLfloat *, GLint, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void gluPwlCurve ( GLUnurbs * nurb , GLint count , GLfloat * data , GLint stride , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluQuadricDrawStyle )(GLUquadric *, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricDrawStyle ( GLUquadric * quad , GLenum draw ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluQuadricNormals )(GLUquadric *, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricNormals ( GLUquadric * quad , GLenum normal ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluQuadricOrientation )(GLUquadric *, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricOrientation ( GLUquadric * quad , GLenum orientation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluQuadricTexture )(GLUquadric *, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricTexture ( GLUquadric * quad , GLboolean texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluScaleImage )(GLenum, GLsizei, GLsizei, GLenum, const void *, GLsizei, GLsizei, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluScaleImage ( GLenum format , GLsizei wIn , GLsizei hIn , GLenum typeIn , const void * dataIn , GLsizei wOut , GLsizei hOut , GLenum typeOut , GLvoid * dataOut ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluSphere )(GLUquadric *, GLdouble, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void gluSphere ( GLUquadric * quad , GLdouble radius , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluTessBeginContour )(GLUtesselator *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluTessBeginPolygon )(GLUtesselator *, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluTessEndContour )(GLUtesselator *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluTessEndPolygon )(GLUtesselator *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluTessNormal )(GLUtesselator *, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluTessProperty )(GLUtesselator *, GLenum, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluTessVertex )(GLUtesselator *, GLdouble *, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluUnProject )(GLdouble, GLdouble, GLdouble, const GLdouble *, const GLdouble *, const GLint *, GLdouble *, GLdouble *, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluUnProject4 )(GLdouble, GLdouble, GLdouble, GLdouble, const GLdouble *, const GLdouble *, const GLint *, GLdouble, GLdouble, GLdouble *, GLdouble *, GLdouble *, GLdouble *);
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/C2J/glu-disp-var-auto.hc b/C2J/glu-disp-var-auto.hc
index de1bab9..4cb2534 100644
--- a/C2J/glu-disp-var-auto.hc
+++ b/C2J/glu-disp-var-auto.hc
@@ -4,97 +4,97 @@
* Reading from file: glu-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFuncJauJNI !
*/
-
+
void (CALLBACK * disp__gluBeginCurve )(GLUnurbs *) = NULL;
-
+
void (CALLBACK * disp__gluBeginPolygon )(GLUtesselator *) = NULL;
-
+
void (CALLBACK * disp__gluBeginSurface )(GLUnurbs *) = NULL;
-
+
void (CALLBACK * disp__gluBeginTrim )(GLUnurbs *) = NULL;
-
+
GLint (CALLBACK * disp__gluBuild1DMipmapLevels )(GLenum, GLint, GLsizei, GLenum, GLenum, GLint, GLint, GLint, const void *) = NULL;
-
+
GLint (CALLBACK * disp__gluBuild1DMipmaps )(GLenum, GLint, GLsizei, GLenum, GLenum, const void *) = NULL;
-
+
GLint (CALLBACK * disp__gluBuild2DMipmapLevels )(GLenum, GLint, GLsizei, GLsizei, GLenum, GLenum, GLint, GLint, GLint, const void *) = NULL;
-
+
GLint (CALLBACK * disp__gluBuild2DMipmaps )(GLenum, GLint, GLsizei, GLsizei, GLenum, GLenum, const void *) = NULL;
-
+
GLint (CALLBACK * disp__gluBuild3DMipmapLevels )(GLenum, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, GLint, GLint, GLint, const void *) = NULL;
-
+
GLint (CALLBACK * disp__gluBuild3DMipmaps )(GLenum, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const void *) = NULL;
-
+
GLboolean (CALLBACK * disp__gluCheckExtension )(const GLubyte *, const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__gluCylinder )(GLUquadric *, GLdouble, GLdouble, GLdouble, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__gluDisk )(GLUquadric *, GLdouble, GLdouble, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__gluEndCurve )(GLUnurbs *) = NULL;
-
+
void (CALLBACK * disp__gluEndPolygon )(GLUtesselator *) = NULL;
-
+
void (CALLBACK * disp__gluEndSurface )(GLUnurbs *) = NULL;
-
+
void (CALLBACK * disp__gluEndTrim )(GLUnurbs *) = NULL;
-
+
void (CALLBACK * disp__gluGetNurbsProperty )(GLUnurbs *, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__gluGetTessProperty )(GLUtesselator *, GLenum, GLdouble *) = NULL;
-
+
void (CALLBACK * disp__gluLoadSamplingMatrices )(GLUnurbs *, const GLfloat *, const GLfloat *, const GLint *) = NULL;
-
+
void (CALLBACK * disp__gluLookAt )(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__gluNextContour )(GLUtesselator *, GLenum) = NULL;
-
+
void (CALLBACK * disp__gluNurbsCurve )(GLUnurbs *, GLint, GLfloat *, GLint, GLfloat *, GLint, GLenum) = NULL;
-
+
void (CALLBACK * disp__gluNurbsProperty )(GLUnurbs *, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__gluNurbsSurface )(GLUnurbs *, GLint, GLfloat *, GLint, GLfloat *, GLint, GLint, GLfloat *, GLint, GLint, GLenum) = NULL;
-
+
void (CALLBACK * disp__gluOrtho2D )(GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__gluPartialDisk )(GLUquadric *, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__gluPerspective )(GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__gluPickMatrix )(GLdouble, GLdouble, GLdouble, GLdouble, GLint *) = NULL;
-
+
GLint (CALLBACK * disp__gluProject )(GLdouble, GLdouble, GLdouble, const GLdouble *, const GLdouble *, const GLint *, GLdouble *, GLdouble *, GLdouble *) = NULL;
-
+
void (CALLBACK * disp__gluPwlCurve )(GLUnurbs *, GLint, GLfloat *, GLint, GLenum) = NULL;
-
+
void (CALLBACK * disp__gluQuadricDrawStyle )(GLUquadric *, GLenum) = NULL;
-
+
void (CALLBACK * disp__gluQuadricNormals )(GLUquadric *, GLenum) = NULL;
-
+
void (CALLBACK * disp__gluQuadricOrientation )(GLUquadric *, GLenum) = NULL;
-
+
void (CALLBACK * disp__gluQuadricTexture )(GLUquadric *, GLboolean) = NULL;
-
+
GLint (CALLBACK * disp__gluScaleImage )(GLenum, GLsizei, GLsizei, GLenum, const void *, GLsizei, GLsizei, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__gluSphere )(GLUquadric *, GLdouble, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__gluTessBeginContour )(GLUtesselator *) = NULL;
-
+
void (CALLBACK * disp__gluTessBeginPolygon )(GLUtesselator *, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__gluTessEndContour )(GLUtesselator *) = NULL;
-
+
void (CALLBACK * disp__gluTessEndPolygon )(GLUtesselator *) = NULL;
-
+
void (CALLBACK * disp__gluTessNormal )(GLUtesselator *, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__gluTessProperty )(GLUtesselator *, GLenum, GLdouble) = NULL;
-
+
void (CALLBACK * disp__gluTessVertex )(GLUtesselator *, GLdouble *, GLvoid *) = NULL;
-
+
GLint (CALLBACK * disp__gluUnProject )(GLdouble, GLdouble, GLdouble, const GLdouble *, const GLdouble *, const GLint *, GLdouble *, GLdouble *, GLdouble *) = NULL;
-
+
GLint (CALLBACK * disp__gluUnProject4 )(GLdouble, GLdouble, GLdouble, GLdouble, const GLdouble *, const GLdouble *, const GLint *, GLdouble, GLdouble, GLdouble *, GLdouble *, GLdouble *, GLdouble *) = NULL;
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/C2J/glu-enum-auto.java b/C2J/glu-enum-auto.java
index c6f21d6..967fe7f 100644
--- a/C2J/glu-enum-auto.java
+++ b/C2J/glu-enum-auto.java
@@ -4,152 +4,152 @@
* 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/C2J/glu-proto-auto-14.java b/C2J/glu-proto-auto-14.java
index 8f6ddbd..501ac8e 100644
--- a/C2J/glu-proto-auto-14.java
+++ b/C2J/glu-proto-auto-14.java
@@ -4,53 +4,53 @@
* Reading from file: glu-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluBeginCurve (
long nurb
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluBeginPolygon (
long tess
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluBeginSurface (
long nurb
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluBeginTrim (
long nurb
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluBuild1DMipmapLevels (
int target,
int internalFormat,
@@ -139,13 +139,13 @@
int max,
Buffer data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluBuild1DMipmaps (
int target,
int internalFormat,
@@ -210,13 +210,13 @@
int type,
Buffer data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluBuild2DMipmapLevels (
int target,
int internalFormat,
@@ -313,13 +313,13 @@
int max,
Buffer data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluBuild2DMipmaps (
int target,
int internalFormat,
@@ -392,13 +392,13 @@
int type,
Buffer data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluBuild3DMipmapLevels (
int target,
int internalFormat,
@@ -503,13 +503,13 @@
int max,
Buffer data
) ;
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluBuild3DMipmaps (
int target,
int internalFormat,
@@ -590,24 +590,24 @@
int type,
Buffer data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild3DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean gluCheckExtension (
byte[] extName,
byte[] extString
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean gluCheckExtension ( const GLubyte * extName , const GLubyte * extString ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluCylinder (
long quad,
double base,
@@ -616,13 +616,13 @@
int slices,
int stacks
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluCylinder ( GLUquadric * quad , GLdouble base , GLdouble top , GLdouble height , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluDisk (
long quad,
double inner,
@@ -630,90 +630,90 @@
int slices,
int loops
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluEndCurve (
long nurb
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluEndPolygon (
long tess
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluEndSurface (
long nurb
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluEndTrim (
long nurb
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluGetNurbsProperty (
long nurb,
int property,
float[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluGetTessProperty (
long tess,
int which,
double[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetTessProperty ( GLUtesselator * tess , GLenum which , GLdouble * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluLoadSamplingMatrices (
long nurb,
float[] model,
float[] perspective,
int[] view
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluLoadSamplingMatrices ( GLUnurbs * nurb , const GLfloat * model , const GLfloat * perspective , const GLint * view ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluLookAt (
double eyeX,
double eyeY,
@@ -725,24 +725,24 @@
double upY,
double upZ
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluLookAt ( GLdouble eyeX , GLdouble eyeY , GLdouble eyeZ , GLdouble centerX , GLdouble centerY , GLdouble centerZ , GLdouble upX , GLdouble upY , GLdouble upZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluNextContour (
long tess,
int type
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluNextContour ( GLUtesselator * tess , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluNurbsCurve (
long nurb,
int knotCount,
@@ -752,25 +752,25 @@
int order,
int type
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsCurve ( GLUnurbs * nurb , GLint knotCount , GLfloat * knots , GLint stride , GLfloat * control , GLint order , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluNurbsProperty (
long nurb,
int property,
float value
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluNurbsSurface (
long nurb,
int sKnotCount,
@@ -784,26 +784,26 @@
int tOrder,
int type
) ;
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluOrtho2D (
double left,
double right,
double bottom,
double top
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluOrtho2D ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluPartialDisk (
long quad,
double inner,
@@ -813,26 +813,26 @@
double start,
double sweep
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluPartialDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops , GLdouble start , GLdouble sweep ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluPerspective (
double fovy,
double aspect,
double zNear,
double zFar
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluPerspective ( GLdouble fovy , GLdouble aspect , GLdouble zNear , GLdouble zFar ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluPickMatrix (
double x,
double y,
@@ -840,13 +840,13 @@
double delY,
int[] viewport
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluPickMatrix ( GLdouble x , GLdouble y , GLdouble delX , GLdouble delY , GLint * viewport ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluProject (
double objX,
double objY,
@@ -858,13 +858,13 @@
double[] winY,
double[] winZ
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluProject ( GLdouble objX , GLdouble objY , GLdouble objZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * winX , GLdouble * winY , GLdouble * winZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluPwlCurve (
long nurb,
int count,
@@ -872,57 +872,57 @@
int stride,
int type
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluPwlCurve ( GLUnurbs * nurb , GLint count , GLfloat * data , GLint stride , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluQuadricDrawStyle (
long quad,
int draw
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricDrawStyle ( GLUquadric * quad , GLenum draw ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluQuadricNormals (
long quad,
int normal
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricNormals ( GLUquadric * quad , GLenum normal ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluQuadricOrientation (
long quad,
int orientation
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricOrientation ( GLUquadric * quad , GLenum orientation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluQuadricTexture (
long quad,
boolean texture
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricTexture ( GLUquadric * quad , GLboolean texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluScaleImage (
int format,
int wIn,
@@ -1011,36 +1011,36 @@
int typeOut,
Buffer dataOut
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluScaleImage ( GLenum format , GLsizei wIn , GLsizei hIn , GLenum typeIn , const void * dataIn , GLsizei wOut , GLsizei hOut , GLenum typeOut , GLvoid * dataOut ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluSphere (
long quad,
double radius,
int slices,
int stacks
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluSphere ( GLUquadric * quad , GLdouble radius , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluTessBeginContour (
long tess
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluTessBeginPolygon (
long tess,
byte[] data
@@ -1073,58 +1073,58 @@
long tess,
Buffer data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluTessEndContour (
long tess
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluTessEndPolygon (
long tess
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluTessNormal (
long tess,
double valueX,
double valueY,
double valueZ
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluTessProperty (
long tess,
int which,
double data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluTessVertex (
long tess,
double[] location,
@@ -1165,13 +1165,13 @@
double[] location,
Buffer data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluUnProject (
double winX,
double winY,
@@ -1183,13 +1183,13 @@
double[] objY,
double[] objZ
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluUnProject4 (
double winX,
double winY,
@@ -1205,5 +1205,5 @@
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/C2J/glu-proto-auto-jni12.c b/C2J/glu-proto-auto-jni12.c
index c89a276..63af72d 100644
--- a/C2J/glu-proto-auto-jni12.c
+++ b/C2J/glu-proto-auto-jni12.c
@@ -4,13 +4,13 @@
* Reading from file: glu-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginCurve (
JNIEnv *env, jobject obj,
@@ -24,13 +24,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginPolygon (
JNIEnv *env, jobject obj,
@@ -44,13 +44,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginSurface (
JNIEnv *env, jobject obj,
@@ -64,13 +64,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginTrim (
JNIEnv *env, jobject obj,
@@ -84,13 +84,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild1DMipmapLevels__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -378,13 +378,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild1DMipmaps__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -630,13 +630,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild2DMipmapLevels__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -938,13 +938,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild2DMipmaps__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1204,13 +1204,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild3DMipmapLevels__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1526,13 +1526,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild3DMipmaps__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1806,13 +1806,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild3DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLUFuncJauJNI_gluCheckExtension (
JNIEnv *env, jobject obj,
@@ -1849,13 +1849,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean gluCheckExtension ( const GLubyte * extName , const GLubyte * extString ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluCylinder (
JNIEnv *env, jobject obj,
@@ -1879,13 +1879,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluCylinder ( GLUquadric * quad , GLdouble base , GLdouble top , GLdouble height , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluDisk (
JNIEnv *env, jobject obj,
@@ -1907,13 +1907,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndCurve (
JNIEnv *env, jobject obj,
@@ -1927,13 +1927,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndPolygon (
JNIEnv *env, jobject obj,
@@ -1947,13 +1947,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndSurface (
JNIEnv *env, jobject obj,
@@ -1967,13 +1967,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndTrim (
JNIEnv *env, jobject obj,
@@ -1987,13 +1987,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluGetNurbsProperty (
JNIEnv *env, jobject obj,
@@ -2021,13 +2021,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluGetTessProperty (
JNIEnv *env, jobject obj,
@@ -2055,13 +2055,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetTessProperty ( GLUtesselator * tess , GLenum which , GLdouble * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluLoadSamplingMatrices (
JNIEnv *env, jobject obj,
@@ -2108,13 +2108,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, view, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluLoadSamplingMatrices ( GLUnurbs * nurb , const GLfloat * model , const GLfloat * perspective , const GLint * view ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluLookAt (
JNIEnv *env, jobject obj,
@@ -2144,13 +2144,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluLookAt ( GLdouble eyeX , GLdouble eyeY , GLdouble eyeZ , GLdouble centerX , GLdouble centerY , GLdouble centerZ , GLdouble upX , GLdouble upY , GLdouble upZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNextContour (
JNIEnv *env, jobject obj,
@@ -2166,13 +2166,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNextContour ( GLUtesselator * tess , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNurbsCurve (
JNIEnv *env, jobject obj,
@@ -2218,13 +2218,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, control, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsCurve ( GLUnurbs * nurb , GLint knotCount , GLfloat * knots , GLint stride , GLfloat * control , GLint order , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNurbsProperty (
JNIEnv *env, jobject obj,
@@ -2242,13 +2242,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNurbsSurface (
JNIEnv *env, jobject obj,
@@ -2312,13 +2312,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, control, ptr7, (isCopiedArray7 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluOrtho2D (
JNIEnv *env, jobject obj,
@@ -2338,13 +2338,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluOrtho2D ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPartialDisk (
JNIEnv *env, jobject obj,
@@ -2370,13 +2370,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPartialDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops , GLdouble start , GLdouble sweep ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPerspective (
JNIEnv *env, jobject obj,
@@ -2396,13 +2396,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPerspective ( GLdouble fovy , GLdouble aspect , GLdouble zNear , GLdouble zFar ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPickMatrix (
JNIEnv *env, jobject obj,
@@ -2434,13 +2434,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, viewport, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPickMatrix ( GLdouble x , GLdouble y , GLdouble delX , GLdouble delY , GLint * viewport ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluProject (
JNIEnv *env, jobject obj,
@@ -2530,13 +2530,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluProject ( GLdouble objX , GLdouble objY , GLdouble objZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * winX , GLdouble * winY , GLdouble * winZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPwlCurve (
JNIEnv *env, jobject obj,
@@ -2568,13 +2568,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPwlCurve ( GLUnurbs * nurb , GLint count , GLfloat * data , GLint stride , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricDrawStyle (
JNIEnv *env, jobject obj,
@@ -2590,13 +2590,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricDrawStyle ( GLUquadric * quad , GLenum draw ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricNormals (
JNIEnv *env, jobject obj,
@@ -2612,13 +2612,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricNormals ( GLUquadric * quad , GLenum normal ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricOrientation (
JNIEnv *env, jobject obj,
@@ -2634,13 +2634,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricOrientation ( GLUquadric * quad , GLenum orientation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricTexture (
JNIEnv *env, jobject obj,
@@ -2656,13 +2656,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricTexture ( GLUquadric * quad , GLboolean texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluScaleImage__IIII_3BIII_3B (
JNIEnv *env, jobject obj,
@@ -3020,13 +3020,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluScaleImage ( GLenum format , GLsizei wIn , GLsizei hIn , GLenum typeIn , const void * dataIn , GLsizei wOut , GLsizei hOut , GLenum typeOut , GLvoid * dataOut ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluSphere (
JNIEnv *env, jobject obj,
@@ -3046,13 +3046,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluSphere ( GLUquadric * quad , GLdouble radius , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessBeginContour (
JNIEnv *env, jobject obj,
@@ -3066,13 +3066,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessBeginPolygon__J_3B (
JNIEnv *env, jobject obj,
@@ -3248,13 +3248,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessEndContour (
JNIEnv *env, jobject obj,
@@ -3268,13 +3268,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessEndPolygon (
JNIEnv *env, jobject obj,
@@ -3288,13 +3288,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessNormal (
JNIEnv *env, jobject obj,
@@ -3314,13 +3314,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessProperty (
JNIEnv *env, jobject obj,
@@ -3338,13 +3338,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessVertex__J_3D_3B (
JNIEnv *env, jobject obj,
@@ -3604,13 +3604,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluUnProject (
JNIEnv *env, jobject obj,
@@ -3700,13 +3700,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluUnProject4 (
JNIEnv *env, jobject obj,
@@ -3814,5 +3814,5 @@
}
return ret;
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/C2J/glu-proto-auto-jni14.c b/C2J/glu-proto-auto-jni14.c
index 8208069..5665df1 100644
--- a/C2J/glu-proto-auto-jni14.c
+++ b/C2J/glu-proto-auto-jni14.c
@@ -4,13 +4,13 @@
* Reading from file: glu-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFunc14JauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBeginCurve (
JNIEnv *env, jobject obj,
@@ -24,13 +24,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBeginPolygon (
JNIEnv *env, jobject obj,
@@ -44,13 +44,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBeginSurface (
JNIEnv *env, jobject obj,
@@ -64,13 +64,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBeginTrim (
JNIEnv *env, jobject obj,
@@ -84,13 +84,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBuild1DMipmapLevels__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -420,13 +420,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBuild1DMipmaps__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -708,13 +708,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBuild2DMipmapLevels__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1060,13 +1060,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBuild2DMipmaps__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1364,13 +1364,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBuild3DMipmapLevels__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1732,13 +1732,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBuild3DMipmaps__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -2052,13 +2052,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild3DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLUFunc14JauJNI_gluCheckExtension (
JNIEnv *env, jobject obj,
@@ -2095,13 +2095,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean gluCheckExtension ( const GLubyte * extName , const GLubyte * extString ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluCylinder (
JNIEnv *env, jobject obj,
@@ -2125,13 +2125,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluCylinder ( GLUquadric * quad , GLdouble base , GLdouble top , GLdouble height , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluDisk (
JNIEnv *env, jobject obj,
@@ -2153,13 +2153,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluEndCurve (
JNIEnv *env, jobject obj,
@@ -2173,13 +2173,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluEndPolygon (
JNIEnv *env, jobject obj,
@@ -2193,13 +2193,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluEndSurface (
JNIEnv *env, jobject obj,
@@ -2213,13 +2213,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluEndTrim (
JNIEnv *env, jobject obj,
@@ -2233,13 +2233,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluGetNurbsProperty (
JNIEnv *env, jobject obj,
@@ -2267,13 +2267,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluGetTessProperty (
JNIEnv *env, jobject obj,
@@ -2301,13 +2301,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetTessProperty ( GLUtesselator * tess , GLenum which , GLdouble * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluLoadSamplingMatrices (
JNIEnv *env, jobject obj,
@@ -2354,13 +2354,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, view, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluLoadSamplingMatrices ( GLUnurbs * nurb , const GLfloat * model , const GLfloat * perspective , const GLint * view ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluLookAt (
JNIEnv *env, jobject obj,
@@ -2390,13 +2390,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluLookAt ( GLdouble eyeX , GLdouble eyeY , GLdouble eyeZ , GLdouble centerX , GLdouble centerY , GLdouble centerZ , GLdouble upX , GLdouble upY , GLdouble upZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluNextContour (
JNIEnv *env, jobject obj,
@@ -2412,13 +2412,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNextContour ( GLUtesselator * tess , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluNurbsCurve (
JNIEnv *env, jobject obj,
@@ -2464,13 +2464,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, control, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsCurve ( GLUnurbs * nurb , GLint knotCount , GLfloat * knots , GLint stride , GLfloat * control , GLint order , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluNurbsProperty (
JNIEnv *env, jobject obj,
@@ -2488,13 +2488,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluNurbsSurface (
JNIEnv *env, jobject obj,
@@ -2558,13 +2558,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, control, ptr7, (isCopiedArray7 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluOrtho2D (
JNIEnv *env, jobject obj,
@@ -2584,13 +2584,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluOrtho2D ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluPartialDisk (
JNIEnv *env, jobject obj,
@@ -2616,13 +2616,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPartialDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops , GLdouble start , GLdouble sweep ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluPerspective (
JNIEnv *env, jobject obj,
@@ -2642,13 +2642,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPerspective ( GLdouble fovy , GLdouble aspect , GLdouble zNear , GLdouble zFar ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluPickMatrix (
JNIEnv *env, jobject obj,
@@ -2680,13 +2680,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, viewport, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPickMatrix ( GLdouble x , GLdouble y , GLdouble delX , GLdouble delY , GLint * viewport ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluProject (
JNIEnv *env, jobject obj,
@@ -2776,13 +2776,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluProject ( GLdouble objX , GLdouble objY , GLdouble objZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * winX , GLdouble * winY , GLdouble * winZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluPwlCurve (
JNIEnv *env, jobject obj,
@@ -2814,13 +2814,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPwlCurve ( GLUnurbs * nurb , GLint count , GLfloat * data , GLint stride , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluQuadricDrawStyle (
JNIEnv *env, jobject obj,
@@ -2836,13 +2836,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricDrawStyle ( GLUquadric * quad , GLenum draw ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluQuadricNormals (
JNIEnv *env, jobject obj,
@@ -2858,13 +2858,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricNormals ( GLUquadric * quad , GLenum normal ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluQuadricOrientation (
JNIEnv *env, jobject obj,
@@ -2880,13 +2880,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricOrientation ( GLUquadric * quad , GLenum orientation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluQuadricTexture (
JNIEnv *env, jobject obj,
@@ -2902,13 +2902,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricTexture ( GLUquadric * quad , GLboolean texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluScaleImage__IIII_3BIII_3B (
JNIEnv *env, jobject obj,
@@ -3318,13 +3318,13 @@
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluScaleImage ( GLenum format , GLsizei wIn , GLsizei hIn , GLenum typeIn , const void * dataIn , GLsizei wOut , GLsizei hOut , GLenum typeOut , GLvoid * dataOut ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluSphere (
JNIEnv *env, jobject obj,
@@ -3344,13 +3344,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluSphere ( GLUquadric * quad , GLdouble radius , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluTessBeginContour (
JNIEnv *env, jobject obj,
@@ -3364,13 +3364,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluTessBeginPolygon__J_3B (
JNIEnv *env, jobject obj,
@@ -3571,13 +3571,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluTessEndContour (
JNIEnv *env, jobject obj,
@@ -3591,13 +3591,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluTessEndPolygon (
JNIEnv *env, jobject obj,
@@ -3611,13 +3611,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluTessNormal (
JNIEnv *env, jobject obj,
@@ -3637,13 +3637,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluTessProperty (
JNIEnv *env, jobject obj,
@@ -3661,13 +3661,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluTessVertex__J_3D_3B (
JNIEnv *env, jobject obj,
@@ -3964,13 +3964,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, location, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluUnProject (
JNIEnv *env, jobject obj,
@@ -4060,13 +4060,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluUnProject4 (
JNIEnv *env, jobject obj,
@@ -4174,5 +4174,5 @@
}
return ret;
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/C2J/glu-proto-auto-tst-jni12.c b/C2J/glu-proto-auto-tst-jni12.c
index 84eab33..fc6a607 100644
--- a/C2J/glu-proto-auto-tst-jni12.c
+++ b/C2J/glu-proto-auto-tst-jni12.c
@@ -4,13 +4,13 @@
* Reading from file: glu-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginCurve (
JNIEnv *env, jobject obj,
@@ -24,13 +24,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginPolygon (
JNIEnv *env, jobject obj,
@@ -44,13 +44,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginSurface (
JNIEnv *env, jobject obj,
@@ -64,13 +64,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginTrim (
JNIEnv *env, jobject obj,
@@ -84,13 +84,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild1DMipmapLevels__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -420,13 +420,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild1DMipmaps__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -714,13 +714,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild2DMipmapLevels__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1064,13 +1064,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild2DMipmaps__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1372,13 +1372,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild3DMipmapLevels__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1736,13 +1736,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild3DMipmaps__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -2058,13 +2058,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild3DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLUFuncJauJNI_gluCheckExtension (
JNIEnv *env, jobject obj,
@@ -2113,13 +2113,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean gluCheckExtension ( const GLubyte * extName , const GLubyte * extString ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluCylinder (
JNIEnv *env, jobject obj,
@@ -2143,13 +2143,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluCylinder ( GLUquadric * quad , GLdouble base , GLdouble top , GLdouble height , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluDisk (
JNIEnv *env, jobject obj,
@@ -2171,13 +2171,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndCurve (
JNIEnv *env, jobject obj,
@@ -2191,13 +2191,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndPolygon (
JNIEnv *env, jobject obj,
@@ -2211,13 +2211,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndSurface (
JNIEnv *env, jobject obj,
@@ -2231,13 +2231,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndTrim (
JNIEnv *env, jobject obj,
@@ -2251,13 +2251,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluGetNurbsProperty (
JNIEnv *env, jobject obj,
@@ -2290,13 +2290,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluGetTessProperty (
JNIEnv *env, jobject obj,
@@ -2329,13 +2329,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetTessProperty ( GLUtesselator * tess , GLenum which , GLdouble * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluLoadSamplingMatrices (
JNIEnv *env, jobject obj,
@@ -2400,13 +2400,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, view, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluLoadSamplingMatrices ( GLUnurbs * nurb , const GLfloat * model , const GLfloat * perspective , const GLint * view ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluLookAt (
JNIEnv *env, jobject obj,
@@ -2436,13 +2436,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluLookAt ( GLdouble eyeX , GLdouble eyeY , GLdouble eyeZ , GLdouble centerX , GLdouble centerY , GLdouble centerZ , GLdouble upX , GLdouble upY , GLdouble upZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNextContour (
JNIEnv *env, jobject obj,
@@ -2458,13 +2458,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNextContour ( GLUtesselator * tess , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNurbsCurve (
JNIEnv *env, jobject obj,
@@ -2520,13 +2520,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, control, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsCurve ( GLUnurbs * nurb , GLint knotCount , GLfloat * knots , GLint stride , GLfloat * control , GLint order , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNurbsProperty (
JNIEnv *env, jobject obj,
@@ -2544,13 +2544,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNurbsSurface (
JNIEnv *env, jobject obj,
@@ -2629,13 +2629,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, control, ptr7, (isCopiedArray7 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluOrtho2D (
JNIEnv *env, jobject obj,
@@ -2655,13 +2655,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluOrtho2D ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPartialDisk (
JNIEnv *env, jobject obj,
@@ -2687,13 +2687,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPartialDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops , GLdouble start , GLdouble sweep ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPerspective (
JNIEnv *env, jobject obj,
@@ -2713,13 +2713,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPerspective ( GLdouble fovy , GLdouble aspect , GLdouble zNear , GLdouble zFar ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPickMatrix (
JNIEnv *env, jobject obj,
@@ -2756,13 +2756,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, viewport, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPickMatrix ( GLdouble x , GLdouble y , GLdouble delX , GLdouble delY , GLint * viewport ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluProject (
JNIEnv *env, jobject obj,
@@ -2885,13 +2885,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluProject ( GLdouble objX , GLdouble objY , GLdouble objZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * winX , GLdouble * winY , GLdouble * winZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPwlCurve (
JNIEnv *env, jobject obj,
@@ -2928,13 +2928,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPwlCurve ( GLUnurbs * nurb , GLint count , GLfloat * data , GLint stride , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricDrawStyle (
JNIEnv *env, jobject obj,
@@ -2950,13 +2950,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricDrawStyle ( GLUquadric * quad , GLenum draw ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricNormals (
JNIEnv *env, jobject obj,
@@ -2972,13 +2972,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricNormals ( GLUquadric * quad , GLenum normal ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricOrientation (
JNIEnv *env, jobject obj,
@@ -2994,13 +2994,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricOrientation ( GLUquadric * quad , GLenum orientation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricTexture (
JNIEnv *env, jobject obj,
@@ -3016,13 +3016,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricTexture ( GLUquadric * quad , GLboolean texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluScaleImage__IIII_3BIII_3B (
JNIEnv *env, jobject obj,
@@ -3457,13 +3457,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluScaleImage ( GLenum format , GLsizei wIn , GLsizei hIn , GLenum typeIn , const void * dataIn , GLsizei wOut , GLsizei hOut , GLenum typeOut , GLvoid * dataOut ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluSphere (
JNIEnv *env, jobject obj,
@@ -3483,13 +3483,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluSphere ( GLUquadric * quad , GLdouble radius , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessBeginContour (
JNIEnv *env, jobject obj,
@@ -3503,13 +3503,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessBeginPolygon__J_3B (
JNIEnv *env, jobject obj,
@@ -3720,13 +3720,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessEndContour (
JNIEnv *env, jobject obj,
@@ -3740,13 +3740,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessEndPolygon (
JNIEnv *env, jobject obj,
@@ -3760,13 +3760,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessNormal (
JNIEnv *env, jobject obj,
@@ -3786,13 +3786,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessProperty (
JNIEnv *env, jobject obj,
@@ -3810,13 +3810,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessVertex__J_3D_3B (
JNIEnv *env, jobject obj,
@@ -4146,13 +4146,13 @@
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluUnProject (
JNIEnv *env, jobject obj,
@@ -4275,13 +4275,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluUnProject4 (
JNIEnv *env, jobject obj,
@@ -4427,5 +4427,5 @@
}
return ret;
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/C2J/glu-proto-auto.c b/C2J/glu-proto-auto.c
index a6210bc..4bc6f52 100644
--- a/C2J/glu-proto-auto.c
+++ b/C2J/glu-proto-auto.c
@@ -4,13 +4,13 @@
* Reading from file: glu-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginCurve (
JNIEnv *env, jobject obj,
@@ -24,13 +24,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginPolygon (
JNIEnv *env, jobject obj,
@@ -44,13 +44,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginSurface (
JNIEnv *env, jobject obj,
@@ -64,13 +64,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginTrim (
JNIEnv *env, jobject obj,
@@ -84,13 +84,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild1DMipmapLevels__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -378,13 +378,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild1DMipmaps__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -630,13 +630,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild2DMipmapLevels__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -938,13 +938,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild2DMipmaps__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1204,13 +1204,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild3DMipmapLevels__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1526,13 +1526,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild3DMipmaps__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1806,13 +1806,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild3DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLUFuncJauJNI_gluCheckExtension (
JNIEnv *env, jobject obj,
@@ -1849,13 +1849,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean gluCheckExtension ( const GLubyte * extName , const GLubyte * extString ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluCylinder (
JNIEnv *env, jobject obj,
@@ -1879,13 +1879,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluCylinder ( GLUquadric * quad , GLdouble base , GLdouble top , GLdouble height , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluDisk (
JNIEnv *env, jobject obj,
@@ -1907,13 +1907,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndCurve (
JNIEnv *env, jobject obj,
@@ -1927,13 +1927,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndPolygon (
JNIEnv *env, jobject obj,
@@ -1947,13 +1947,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndSurface (
JNIEnv *env, jobject obj,
@@ -1967,13 +1967,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndTrim (
JNIEnv *env, jobject obj,
@@ -1987,13 +1987,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluGetNurbsProperty (
JNIEnv *env, jobject obj,
@@ -2021,13 +2021,13 @@
(*env)->ReleaseFloatArrayElements(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluGetTessProperty (
JNIEnv *env, jobject obj,
@@ -2055,13 +2055,13 @@
(*env)->ReleaseDoubleArrayElements(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetTessProperty ( GLUtesselator * tess , GLenum which , GLdouble * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluLoadSamplingMatrices (
JNIEnv *env, jobject obj,
@@ -2108,13 +2108,13 @@
(*env)->ReleaseIntArrayElements(env, view, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluLoadSamplingMatrices ( GLUnurbs * nurb , const GLfloat * model , const GLfloat * perspective , const GLint * view ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluLookAt (
JNIEnv *env, jobject obj,
@@ -2144,13 +2144,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluLookAt ( GLdouble eyeX , GLdouble eyeY , GLdouble eyeZ , GLdouble centerX , GLdouble centerY , GLdouble centerZ , GLdouble upX , GLdouble upY , GLdouble upZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNextContour (
JNIEnv *env, jobject obj,
@@ -2166,13 +2166,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNextContour ( GLUtesselator * tess , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNurbsCurve (
JNIEnv *env, jobject obj,
@@ -2218,13 +2218,13 @@
(*env)->ReleaseFloatArrayElements(env, control, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsCurve ( GLUnurbs * nurb , GLint knotCount , GLfloat * knots , GLint stride , GLfloat * control , GLint order , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNurbsProperty (
JNIEnv *env, jobject obj,
@@ -2242,13 +2242,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNurbsSurface (
JNIEnv *env, jobject obj,
@@ -2312,13 +2312,13 @@
(*env)->ReleaseFloatArrayElements(env, control, ptr7, (isCopiedArray7 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluOrtho2D (
JNIEnv *env, jobject obj,
@@ -2338,13 +2338,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluOrtho2D ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPartialDisk (
JNIEnv *env, jobject obj,
@@ -2370,13 +2370,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPartialDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops , GLdouble start , GLdouble sweep ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPerspective (
JNIEnv *env, jobject obj,
@@ -2396,13 +2396,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPerspective ( GLdouble fovy , GLdouble aspect , GLdouble zNear , GLdouble zFar ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPickMatrix (
JNIEnv *env, jobject obj,
@@ -2434,13 +2434,13 @@
(*env)->ReleaseIntArrayElements(env, viewport, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPickMatrix ( GLdouble x , GLdouble y , GLdouble delX , GLdouble delY , GLint * viewport ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluProject (
JNIEnv *env, jobject obj,
@@ -2530,13 +2530,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluProject ( GLdouble objX , GLdouble objY , GLdouble objZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * winX , GLdouble * winY , GLdouble * winZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPwlCurve (
JNIEnv *env, jobject obj,
@@ -2568,13 +2568,13 @@
(*env)->ReleaseFloatArrayElements(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPwlCurve ( GLUnurbs * nurb , GLint count , GLfloat * data , GLint stride , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricDrawStyle (
JNIEnv *env, jobject obj,
@@ -2590,13 +2590,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricDrawStyle ( GLUquadric * quad , GLenum draw ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricNormals (
JNIEnv *env, jobject obj,
@@ -2612,13 +2612,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricNormals ( GLUquadric * quad , GLenum normal ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricOrientation (
JNIEnv *env, jobject obj,
@@ -2634,13 +2634,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricOrientation ( GLUquadric * quad , GLenum orientation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricTexture (
JNIEnv *env, jobject obj,
@@ -2656,13 +2656,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricTexture ( GLUquadric * quad , GLboolean texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluScaleImage__IIII_3BIII_3B (
JNIEnv *env, jobject obj,
@@ -3020,13 +3020,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluScaleImage ( GLenum format , GLsizei wIn , GLsizei hIn , GLenum typeIn , const void * dataIn , GLsizei wOut , GLsizei hOut , GLenum typeOut , GLvoid * dataOut ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluSphere (
JNIEnv *env, jobject obj,
@@ -3046,13 +3046,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluSphere ( GLUquadric * quad , GLdouble radius , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessBeginContour (
JNIEnv *env, jobject obj,
@@ -3066,13 +3066,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessBeginPolygon__J_3B (
JNIEnv *env, jobject obj,
@@ -3248,13 +3248,13 @@
(*env)->ReleaseLongArrayElements(env, data, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessEndContour (
JNIEnv *env, jobject obj,
@@ -3268,13 +3268,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessEndPolygon (
JNIEnv *env, jobject obj,
@@ -3288,13 +3288,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessNormal (
JNIEnv *env, jobject obj,
@@ -3314,13 +3314,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessProperty (
JNIEnv *env, jobject obj,
@@ -3338,13 +3338,13 @@
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessVertex__J_3D_3B (
JNIEnv *env, jobject obj,
@@ -3604,13 +3604,13 @@
(*env)->ReleaseLongArrayElements(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluUnProject (
JNIEnv *env, jobject obj,
@@ -3700,13 +3700,13 @@
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluUnProject4 (
JNIEnv *env, jobject obj,
@@ -3814,5 +3814,5 @@
}
return ret;
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/C2J/glu-proto-auto.java b/C2J/glu-proto-auto.java
index a108934..9e9705c 100644
--- a/C2J/glu-proto-auto.java
+++ b/C2J/glu-proto-auto.java
@@ -4,53 +4,53 @@
* Reading from file: glu-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluBeginCurve (
long nurb
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluBeginPolygon (
long tess
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluBeginSurface (
long nurb
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluBeginTrim (
long nurb
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluBuild1DMipmapLevels (
int target,
int internalFormat,
@@ -128,13 +128,13 @@
int max,
long[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluBuild1DMipmaps (
int target,
int internalFormat,
@@ -191,13 +191,13 @@
int type,
long[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluBuild2DMipmapLevels (
int target,
int internalFormat,
@@ -282,13 +282,13 @@
int max,
long[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluBuild2DMipmaps (
int target,
int internalFormat,
@@ -352,13 +352,13 @@
int type,
long[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluBuild3DMipmapLevels (
int target,
int internalFormat,
@@ -450,13 +450,13 @@
int max,
long[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluBuild3DMipmaps (
int target,
int internalFormat,
@@ -527,24 +527,24 @@
int type,
long[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild3DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native boolean gluCheckExtension (
byte[] extName,
byte[] extString
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean gluCheckExtension ( const GLubyte * extName , const GLubyte * extString ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluCylinder (
long quad,
double base,
@@ -553,13 +553,13 @@
int slices,
int stacks
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluCylinder ( GLUquadric * quad , GLdouble base , GLdouble top , GLdouble height , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluDisk (
long quad,
double inner,
@@ -567,90 +567,90 @@
int slices,
int loops
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluEndCurve (
long nurb
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluEndPolygon (
long tess
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluEndSurface (
long nurb
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluEndTrim (
long nurb
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluGetNurbsProperty (
long nurb,
int property,
float[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluGetTessProperty (
long tess,
int which,
double[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetTessProperty ( GLUtesselator * tess , GLenum which , GLdouble * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluLoadSamplingMatrices (
long nurb,
float[] model,
float[] perspective,
int[] view
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluLoadSamplingMatrices ( GLUnurbs * nurb , const GLfloat * model , const GLfloat * perspective , const GLint * view ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluLookAt (
double eyeX,
double eyeY,
@@ -662,24 +662,24 @@
double upY,
double upZ
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluLookAt ( GLdouble eyeX , GLdouble eyeY , GLdouble eyeZ , GLdouble centerX , GLdouble centerY , GLdouble centerZ , GLdouble upX , GLdouble upY , GLdouble upZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluNextContour (
long tess,
int type
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluNextContour ( GLUtesselator * tess , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluNurbsCurve (
long nurb,
int knotCount,
@@ -689,25 +689,25 @@
int order,
int type
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsCurve ( GLUnurbs * nurb , GLint knotCount , GLfloat * knots , GLint stride , GLfloat * control , GLint order , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluNurbsProperty (
long nurb,
int property,
float value
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluNurbsSurface (
long nurb,
int sKnotCount,
@@ -721,26 +721,26 @@
int tOrder,
int type
) ;
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluOrtho2D (
double left,
double right,
double bottom,
double top
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluOrtho2D ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluPartialDisk (
long quad,
double inner,
@@ -750,26 +750,26 @@
double start,
double sweep
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluPartialDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops , GLdouble start , GLdouble sweep ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluPerspective (
double fovy,
double aspect,
double zNear,
double zFar
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluPerspective ( GLdouble fovy , GLdouble aspect , GLdouble zNear , GLdouble zFar ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluPickMatrix (
double x,
double y,
@@ -777,13 +777,13 @@
double delY,
int[] viewport
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluPickMatrix ( GLdouble x , GLdouble y , GLdouble delX , GLdouble delY , GLint * viewport ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluProject (
double objX,
double objY,
@@ -795,13 +795,13 @@
double[] winY,
double[] winZ
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluProject ( GLdouble objX , GLdouble objY , GLdouble objZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * winX , GLdouble * winY , GLdouble * winZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluPwlCurve (
long nurb,
int count,
@@ -809,57 +809,57 @@
int stride,
int type
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluPwlCurve ( GLUnurbs * nurb , GLint count , GLfloat * data , GLint stride , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluQuadricDrawStyle (
long quad,
int draw
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricDrawStyle ( GLUquadric * quad , GLenum draw ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluQuadricNormals (
long quad,
int normal
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricNormals ( GLUquadric * quad , GLenum normal ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluQuadricOrientation (
long quad,
int orientation
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricOrientation ( GLUquadric * quad , GLenum orientation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluQuadricTexture (
long quad,
boolean texture
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricTexture ( GLUquadric * quad , GLboolean texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluScaleImage (
int format,
int wIn,
@@ -937,36 +937,36 @@
int typeOut,
long[] dataOut
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluScaleImage ( GLenum format , GLsizei wIn , GLsizei hIn , GLenum typeIn , const void * dataIn , GLsizei wOut , GLsizei hOut , GLenum typeOut , GLvoid * dataOut ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluSphere (
long quad,
double radius,
int slices,
int stacks
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluSphere ( GLUquadric * quad , GLdouble radius , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluTessBeginContour (
long tess
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluTessBeginPolygon (
long tess,
byte[] data
@@ -995,58 +995,58 @@
long tess,
long[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluTessEndContour (
long tess
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluTessEndPolygon (
long tess
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluTessNormal (
long tess,
double valueX,
double valueY,
double valueZ
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluTessProperty (
long tess,
int which,
double data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native void gluTessVertex (
long tess,
double[] location,
@@ -1082,13 +1082,13 @@
double[] location,
long[] data
) ;
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluUnProject (
double winX,
double winY,
@@ -1100,13 +1100,13 @@
double[] objY,
double[] objZ
) ;
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
public final native int gluUnProject4 (
double winX,
double winY,
@@ -1122,5 +1122,5 @@
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/C2J/manual/gl-manualCodedImplJNI.c b/C2J/manual/gl-manualCodedImplJNI.c
index f3c4209..4ace6fa 100644
--- a/C2J/manual/gl-manualCodedImplJNI.c
+++ b/C2J/manual/gl-manualCodedImplJNI.c
@@ -21,7 +21,7 @@ Java_gl4java_GLFuncJauJNI_glGetString ( JNIEnv *env, jobject obj,
}
static const char * _gl_lib_vendor_="Jausoft - Sven Goethel Software Development";
-static const char * _gl_lib_version_="2.8.0.8";
+static const char * _gl_lib_version_="2.8.1.0";
JNIEXPORT jstring JNICALL
Java_gl4java_GLFuncJauJNI_getNativeVendor ( JNIEnv *env, jobject obj )
diff --git a/C2J/manual/gl-manualCodedImplJNI14.c b/C2J/manual/gl-manualCodedImplJNI14.c
index 73bad7e..299b040 100644
--- a/C2J/manual/gl-manualCodedImplJNI14.c
+++ b/C2J/manual/gl-manualCodedImplJNI14.c
@@ -1,9 +1,14 @@
/** THIS IS A MANUAL CODED PART
- gl-manualCodedImplJNI.java
+ gl-manualCodedImplJNI14.java
*/
static const char _gl_n_a_string[] = "GL-String not avaiable !";
+static const char * _gl_lib_vendor_="Jausoft - Sven Goethel Software Development";
+static const char * _gl_lib_version_="2.8.1.0";
+
+/* ---------------------------------------------------------------------- */
+
JNIEXPORT jstring JNICALL
Java_gl4java_GLFunc14JauJNI_glGetString ( JNIEnv *env, jobject obj,
jint name )
@@ -20,9 +25,6 @@ Java_gl4java_GLFunc14JauJNI_glGetString ( JNIEnv *env, jobject obj,
return (*env)->NewStringUTF(env, tmpString);
}
-static const char * _gl_lib_vendor_="Jausoft - Sven Goethel Software Development";
-static const char * _gl_lib_version_="2.8.0.8";
-
JNIEXPORT jstring JNICALL
Java_gl4java_GLFunc14JauJNI_getNativeVendor ( JNIEnv *env, jobject obj )
{
@@ -35,9 +37,10 @@ Java_gl4java_GLFunc14JauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return (*env)->NewStringUTF(env, _gl_lib_version_);
}
-//----------------------------------------------------------------------
-// Support for NVidia routines
-//
+/* ---------------------------------------------------------------------- */
+/*
+ * Support for NVidia routines
+ */
#include "ptrtypes.h"
@@ -52,7 +55,7 @@ Java_gl4java_GLFunc14JauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
#include "wgltool.h"
#endif
-#define GET_GL_PROCADDRESS(a) getGLProcAddressHelper (NULL, NULL, (a), NULL, 1, 0);
+#define GET_GL_PROCADDRESS(a) getGLProcAddressHelper (NULL, NULL, (a), NULL, 0);
JNIEXPORT jlong JNICALL
Java_gl4java_GLFunc14JauJNI_glAllocateMemoryNV0(JNIEnv* env, jobject unused,
diff --git a/C2J/manual/gl-manualCodedImplJNI2.java b/C2J/manual/gl-manualCodedImplJNI2.java
index 0159c32..3d2e188 100644
--- a/C2J/manual/gl-manualCodedImplJNI2.java
+++ b/C2J/manual/gl-manualCodedImplJNI2.java
@@ -8,7 +8,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"; }
diff --git a/C2J/manual/gl-manualCodedVirt1-xx.java b/C2J/manual/gl-manualCodedVirt1-xx.java
index 8ebee8b..822a871 100644
--- a/C2J/manual/gl-manualCodedVirt1-xx.java
+++ b/C2J/manual/gl-manualCodedVirt1-xx.java
@@ -8,3 +8,4 @@ public String getClassVendor ( ) ;
public String getClassVersion ( ) ;
public static final String[] GL_PROC_NAMES = {
+ "glAllocateMemoryNV",
diff --git a/C2J/manual/glu-manualCodedImplJNI.c b/C2J/manual/glu-manualCodedImplJNI.c
index f9f8c3b..78293a9 100644
--- a/C2J/manual/glu-manualCodedImplJNI.c
+++ b/C2J/manual/glu-manualCodedImplJNI.c
@@ -33,7 +33,7 @@ Java_gl4java_GLUFuncJauJNI_gluGetString ( JNIEnv *env, jobject obj,
}
static const char * _glu_lib_vendor_="Jausoft - Sven Goethel Software Development";
-static const char * _glu_lib_version_="2.8.0.8";
+static const char * _glu_lib_version_="2.8.1.0";
JNIEXPORT jstring JNICALL
Java_gl4java_GLUFuncJauJNI_getNativeVendor ( JNIEnv *env, jobject obj )
diff --git a/C2J/manual/glu-manualCodedImplJNI14.c b/C2J/manual/glu-manualCodedImplJNI14.c
index 84c295a..5688184 100644
--- a/C2J/manual/glu-manualCodedImplJNI14.c
+++ b/C2J/manual/glu-manualCodedImplJNI14.c
@@ -1,5 +1,14 @@
+/** THIS IS A MANUAL CODED PART
+ glu-manualCodedImplJNI14.java
+*/
+
static const char _glu_n_a_string[] = "GLU-String not avaiable !";
+static const char * _glu_lib_vendor_="Jausoft - Sven Goethel Software Development";
+static const char * _glu_lib_version_="2.8.1.0";
+
+/* ---------------------------------------------------------------------- */
+
JNIEXPORT jstring JNICALL
Java_gl4java_GLUFunc14JauJNI_gluErrorString ( JNIEnv *env, jobject obj,
jint errorCode )
@@ -32,9 +41,6 @@ Java_gl4java_GLUFunc14JauJNI_gluGetString ( JNIEnv *env, jobject obj,
return (*env)->NewStringUTF(env, tmpString);
}
-static const char * _glu_lib_vendor_="Jausoft - Sven Goethel Software Development";
-static const char * _glu_lib_version_="2.8.0.8";
-
JNIEXPORT jstring JNICALL
Java_gl4java_GLUFunc14JauJNI_getNativeVendor ( JNIEnv *env, jobject obj )
{
@@ -47,6 +53,9 @@ Java_gl4java_GLUFunc14JauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return (*env)->NewStringUTF(env, _glu_lib_version_);
}
+
+/* ---------------------------------------------------------------------- */
+
static void _AddCallbackNode(JNIEnv *env,
jlong qnt_obj, jint which,
jobject methodClassInstance,
diff --git a/C2J/manual/glu-manualCodedImplJNI2.java b/C2J/manual/glu-manualCodedImplJNI2.java
index c62004c..24fe05d 100644
--- a/C2J/manual/glu-manualCodedImplJNI2.java
+++ b/C2J/manual/glu-manualCodedImplJNI2.java
@@ -9,7 +9,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"; }
/**
diff --git a/CHANGES.txt b/CHANGES.txt
index eacbb56..034532b 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,6 +1,6 @@
\begin{verbatim}
-Last Changes: 6th Nov 2001 (Version 2.8.0 - PRE-Release 8 (CVS only) )
+Last Changes: 6th Dec 2001 (Version 2.8.1 - ReleaseCandidate 0 (2.8.1.0) )
Started: July 1997 (Version 0)
-----------------
@@ -8,6 +8,55 @@ TOP = NEW
DOWN = OLD
-----------------
+6th Dec 2001 (Version 2.8.1 - ReleaseCandidate 0 - 2.8.1.0)
+
+ o Yep - that's the 1st release candidate since 2.7.1.0 ;-)
+
+ o Removed any printouts if not using a Debug flag _and_ if no error occures ..
+
+ o Added and checked the new 2.8 code ;-)
+
+ o Added:
+ gl4java.drawable.GLDrawable.getSize() !!
+ gl4java.drawable.GLDrawable.cvsDispose() !!
+ gl4java.drawable.GLDrawable.cvsIsInit() !!
+
+ o Added gl4java.awt.GLOffScreenDrawable !!
+ - there are now 2 demos for Offscreen rendering !
+ - check demos/MiscDemos/gearsOffScreen2Tga.java
+ demos/MiscDemos/gearsOffScreenDrawImage.java
+
+ o Fixed gl4java.swing.GLJPanel (win32 variant, unix one had no bug ..)
+
+ o Minor changes .., makefile, docs, faq, ..
+
+ o All libs/classes are has version 2.8.1.0 now !
+
+ o Better partitioning of the 14 native libraries, smaller footprint !
+
+ o Check NVidia's demo "demos/NVidia/VertexArrayRange.java",
+ ported by Kenneth B. Russel,
+ which uses the gl4java's new java.nio interface
+ and the new NVidia extensions !!
+
+ o The Installer now installs also:
+ - GLF Fonts
+ - The native libraries under JAVA_HOME/lib/
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfInit (
JNIEnv *env, jobject obj)
@@ -67,13 +67,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfInit ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfClose (
JNIEnv *env, jobject obj)
@@ -83,13 +83,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfClose ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfUnloadFont (
JNIEnv *env, jobject obj)
@@ -102,13 +102,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfUnloadBFont (
JNIEnv *env, jobject obj)
@@ -121,13 +121,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadBFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfUnloadFontD (
JNIEnv *env, jobject obj,
@@ -142,13 +142,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadFontD ( int font_descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfUnloadBFontD (
JNIEnv *env, jobject obj,
@@ -163,13 +163,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadBFontD ( int bmf_descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawWiredSymbol (
JNIEnv *env, jobject obj,
@@ -181,13 +181,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawWiredString (
JNIEnv *env, jobject obj,
@@ -202,13 +202,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawSolidSymbol (
JNIEnv *env, jobject obj,
@@ -220,13 +220,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawSolidString (
JNIEnv *env, jobject obj,
@@ -241,13 +241,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DWiredSymbol (
JNIEnv *env, jobject obj,
@@ -259,13 +259,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DWiredString (
JNIEnv *env, jobject obj,
@@ -280,13 +280,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DSolidSymbol (
JNIEnv *env, jobject obj,
@@ -298,13 +298,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DSolidString (
JNIEnv *env, jobject obj,
@@ -319,13 +319,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfBeginBFont (
JNIEnv *env, jobject obj,
@@ -340,13 +340,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfBeginBFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfEndBFont (
JNIEnv *env, jobject obj)
@@ -356,13 +356,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfEndBFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawBSymbol (
JNIEnv *env, jobject obj,
@@ -374,13 +374,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawBString (
JNIEnv *env, jobject obj,
@@ -395,13 +395,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawBMaskSymbol (
JNIEnv *env, jobject obj,
@@ -413,13 +413,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBMaskSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawBMaskString (
JNIEnv *env, jobject obj,
@@ -434,13 +434,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBMaskString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawWiredSymbolF (
JNIEnv *env, jobject obj,
@@ -454,13 +454,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawWiredStringF (
JNIEnv *env, jobject obj,
@@ -477,13 +477,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr1);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawSolidSymbolF (
JNIEnv *env, jobject obj,
@@ -497,13 +497,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawSolidStringF (
JNIEnv *env, jobject obj,
@@ -520,13 +520,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr1);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DWiredSymbolF (
JNIEnv *env, jobject obj,
@@ -540,13 +540,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DWiredStringF (
JNIEnv *env, jobject obj,
@@ -563,13 +563,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr1);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DSolidSymbolF (
JNIEnv *env, jobject obj,
@@ -583,13 +583,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DSolidStringF (
JNIEnv *env, jobject obj,
@@ -606,13 +606,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr1);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetStringBoundsF (
JNIEnv *env, jobject obj,
@@ -677,13 +677,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
(*env)->ReleasePrimitiveArrayCritical(env, maxy, ptr5, (isCopiedArray5 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
void glfGetStringBoundsF ( int fd , const char * s , float * minx , float * miny , float * maxx , float * maxy ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetStringBounds (
JNIEnv *env, jobject obj,
@@ -746,13 +746,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
(*env)->ReleasePrimitiveArrayCritical(env, maxy, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
void glfGetStringBounds ( const char * s , float * minx , float * miny , float * maxx , float * maxy ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetSymbolSpace (
JNIEnv *env, jobject obj,
@@ -764,13 +764,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetSymbolSpace ( float sp ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jfloat JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetSymbolSpace (
JNIEnv *env, jobject obj)
@@ -783,13 +783,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
float glfGetSymbolSpace ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetSpaceSize (
JNIEnv *env, jobject obj,
@@ -801,13 +801,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetSpaceSize ( float sp ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jfloat JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetSpaceSize (
JNIEnv *env, jobject obj)
@@ -820,13 +820,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
float glfGetSpaceSize ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetSymbolDepth (
JNIEnv *env, jobject obj,
@@ -838,13 +838,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetSymbolDepth ( float dpth ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jfloat JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetSymbolDepth (
JNIEnv *env, jobject obj)
@@ -857,13 +857,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
float glfGetSymbolDepth ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetCurrentFont (
JNIEnv *env, jobject obj,
@@ -878,13 +878,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfSetCurrentFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetCurrentBFont (
JNIEnv *env, jobject obj,
@@ -899,13 +899,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfSetCurrentBFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetCurrentFont (
JNIEnv *env, jobject obj)
@@ -918,13 +918,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfGetCurrentFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetCurrentBFont (
JNIEnv *env, jobject obj)
@@ -937,13 +937,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfGetCurrentBFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetAnchorPoint (
JNIEnv *env, jobject obj,
@@ -955,13 +955,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetAnchorPoint ( int anchp ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetContourColor (
JNIEnv *env, jobject obj,
@@ -979,13 +979,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetContourColor ( float r , float g , float b , float a ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfEnable (
JNIEnv *env, jobject obj,
@@ -997,13 +997,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfEnable ( int what ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDisable (
JNIEnv *env, jobject obj,
@@ -1015,13 +1015,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDisable ( int what ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetConsoleParam (
JNIEnv *env, jobject obj,
@@ -1035,13 +1035,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetConsoleParam ( int width , int height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetConsoleFont (
JNIEnv *env, jobject obj,
@@ -1056,13 +1056,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfSetConsoleFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfConsoleClear (
JNIEnv *env, jobject obj)
@@ -1072,13 +1072,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfConsoleClear ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfPrint (
JNIEnv *env, jobject obj,
@@ -1095,13 +1095,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfPrint ( const char * s , int lenght ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfPrintString (
JNIEnv *env, jobject obj,
@@ -1116,13 +1116,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfPrintString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfPrintChar (
JNIEnv *env, jobject obj,
@@ -1134,13 +1134,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfPrintChar ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfConsoleDraw (
JNIEnv *env, jobject obj)
@@ -1150,13 +1150,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfConsoleDraw ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetCursorBlinkRate (
JNIEnv *env, jobject obj,
@@ -1168,13 +1168,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetCursorBlinkRate ( int Rate ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfStringCentering (
JNIEnv *env, jobject obj,
@@ -1186,13 +1186,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfStringCentering ( GLboolean center ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetStringCentering (
JNIEnv *env, jobject obj)
@@ -1205,13 +1205,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
GLboolean glfGetStringCentering ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfBitmapStringCentering (
JNIEnv *env, jobject obj,
@@ -1223,13 +1223,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfBitmapStringCentering ( GLboolean center ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfBitmapGetStringCentering (
JNIEnv *env, jobject obj)
@@ -1242,13 +1242,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
GLboolean glfBitmapGetStringCentering ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfStringDirection (
JNIEnv *env, jobject obj,
@@ -1260,13 +1260,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfStringDirection ( GLuint direction ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetStringDirection (
JNIEnv *env, jobject obj)
@@ -1279,13 +1279,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
GLuint glfGetStringDirection ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetRotateAngle (
JNIEnv *env, jobject obj,
@@ -1297,13 +1297,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetRotateAngle ( float angle ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetBRotateAngle (
JNIEnv *env, jobject obj,
@@ -1315,5 +1315,5 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/CNativeCode/GLF_JNI_funcs.c b/CNativeCode/GLF_JNI_funcs.c
index 6643ea1..151027e 100755
--- a/CNativeCode/GLF_JNI_funcs.c
+++ b/CNativeCode/GLF_JNI_funcs.c
@@ -51,13 +51,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
* Reading from file: glf-proto-auto.orig.h . . .
* Destination-Class: gl4java_utils_glf_GLFFuncJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
void glfSetBRotateAngle ( float angle ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfInit (
JNIEnv *env, jobject obj)
@@ -67,13 +67,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfInit ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfClose (
JNIEnv *env, jobject obj)
@@ -83,13 +83,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfClose ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfUnloadFont (
JNIEnv *env, jobject obj)
@@ -102,13 +102,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfUnloadBFont (
JNIEnv *env, jobject obj)
@@ -121,13 +121,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadBFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfUnloadFontD (
JNIEnv *env, jobject obj,
@@ -142,13 +142,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadFontD ( int font_descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfUnloadBFontD (
JNIEnv *env, jobject obj,
@@ -163,13 +163,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfUnloadBFontD ( int bmf_descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawWiredSymbol (
JNIEnv *env, jobject obj,
@@ -181,13 +181,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawWiredString (
JNIEnv *env, jobject obj,
@@ -202,13 +202,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawSolidSymbol (
JNIEnv *env, jobject obj,
@@ -220,13 +220,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawSolidString (
JNIEnv *env, jobject obj,
@@ -241,13 +241,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DWiredSymbol (
JNIEnv *env, jobject obj,
@@ -259,13 +259,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DWiredString (
JNIEnv *env, jobject obj,
@@ -280,13 +280,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DSolidSymbol (
JNIEnv *env, jobject obj,
@@ -298,13 +298,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DSolidString (
JNIEnv *env, jobject obj,
@@ -319,13 +319,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfBeginBFont (
JNIEnv *env, jobject obj,
@@ -340,13 +340,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfBeginBFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfEndBFont (
JNIEnv *env, jobject obj)
@@ -356,13 +356,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfEndBFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawBSymbol (
JNIEnv *env, jobject obj,
@@ -374,13 +374,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawBString (
JNIEnv *env, jobject obj,
@@ -395,13 +395,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawBMaskSymbol (
JNIEnv *env, jobject obj,
@@ -413,13 +413,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBMaskSymbol ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawBMaskString (
JNIEnv *env, jobject obj,
@@ -434,13 +434,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawBMaskString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawWiredSymbolF (
JNIEnv *env, jobject obj,
@@ -454,13 +454,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawWiredStringF (
JNIEnv *env, jobject obj,
@@ -477,13 +477,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr1);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawWiredStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawSolidSymbolF (
JNIEnv *env, jobject obj,
@@ -497,13 +497,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDrawSolidStringF (
JNIEnv *env, jobject obj,
@@ -520,13 +520,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr1);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDrawSolidStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DWiredSymbolF (
JNIEnv *env, jobject obj,
@@ -540,13 +540,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DWiredStringF (
JNIEnv *env, jobject obj,
@@ -563,13 +563,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr1);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DWiredStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DSolidSymbolF (
JNIEnv *env, jobject obj,
@@ -583,13 +583,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidSymbolF ( int font_descriptor , char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDraw3DSolidStringF (
JNIEnv *env, jobject obj,
@@ -606,13 +606,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr1);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDraw3DSolidStringF ( int font_descriptor , const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetStringBoundsF (
JNIEnv *env, jobject obj,
@@ -677,13 +677,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
(*env)->ReleaseFloatArrayElements(env, maxy, ptr5, (isCopiedArray5 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
void glfGetStringBoundsF ( int fd , const char * s , float * minx , float * miny , float * maxx , float * maxy ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetStringBounds (
JNIEnv *env, jobject obj,
@@ -746,13 +746,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
(*env)->ReleaseFloatArrayElements(env, maxy, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
void glfGetStringBounds ( const char * s , float * minx , float * miny , float * maxx , float * maxy ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetSymbolSpace (
JNIEnv *env, jobject obj,
@@ -764,13 +764,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetSymbolSpace ( float sp ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jfloat JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetSymbolSpace (
JNIEnv *env, jobject obj)
@@ -783,13 +783,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
float glfGetSymbolSpace ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetSpaceSize (
JNIEnv *env, jobject obj,
@@ -801,13 +801,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetSpaceSize ( float sp ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jfloat JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetSpaceSize (
JNIEnv *env, jobject obj)
@@ -820,13 +820,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
float glfGetSpaceSize ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetSymbolDepth (
JNIEnv *env, jobject obj,
@@ -838,13 +838,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetSymbolDepth ( float dpth ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jfloat JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetSymbolDepth (
JNIEnv *env, jobject obj)
@@ -857,13 +857,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
float glfGetSymbolDepth ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetCurrentFont (
JNIEnv *env, jobject obj,
@@ -878,13 +878,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfSetCurrentFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetCurrentBFont (
JNIEnv *env, jobject obj,
@@ -899,13 +899,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfSetCurrentBFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetCurrentFont (
JNIEnv *env, jobject obj)
@@ -918,13 +918,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfGetCurrentFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetCurrentBFont (
JNIEnv *env, jobject obj)
@@ -937,13 +937,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfGetCurrentBFont ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetAnchorPoint (
JNIEnv *env, jobject obj,
@@ -955,13 +955,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetAnchorPoint ( int anchp ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetContourColor (
JNIEnv *env, jobject obj,
@@ -979,13 +979,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetContourColor ( float r , float g , float b , float a ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfEnable (
JNIEnv *env, jobject obj,
@@ -997,13 +997,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfEnable ( int what ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfDisable (
JNIEnv *env, jobject obj,
@@ -1015,13 +1015,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfDisable ( int what ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetConsoleParam (
JNIEnv *env, jobject obj,
@@ -1035,13 +1035,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetConsoleParam ( int width , int height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetConsoleFont (
JNIEnv *env, jobject obj,
@@ -1056,13 +1056,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
int glfSetConsoleFont ( int Font_Descriptor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfConsoleClear (
JNIEnv *env, jobject obj)
@@ -1072,13 +1072,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfConsoleClear ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfPrint (
JNIEnv *env, jobject obj,
@@ -1095,13 +1095,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfPrint ( const char * s , int lenght ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfPrintString (
JNIEnv *env, jobject obj,
@@ -1116,13 +1116,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
free(ptr0);
}
-
-/**
- * Original Function-Prototype :
- *
void glfPrintString ( const char * s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfPrintChar (
JNIEnv *env, jobject obj,
@@ -1134,13 +1134,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfPrintChar ( char s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfConsoleDraw (
JNIEnv *env, jobject obj)
@@ -1150,13 +1150,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfConsoleDraw ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetCursorBlinkRate (
JNIEnv *env, jobject obj,
@@ -1168,13 +1168,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetCursorBlinkRate ( int Rate ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfStringCentering (
JNIEnv *env, jobject obj,
@@ -1186,13 +1186,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfStringCentering ( GLboolean center ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetStringCentering (
JNIEnv *env, jobject obj)
@@ -1205,13 +1205,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
GLboolean glfGetStringCentering ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfBitmapStringCentering (
JNIEnv *env, jobject obj,
@@ -1223,13 +1223,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfBitmapStringCentering ( GLboolean center ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfBitmapGetStringCentering (
JNIEnv *env, jobject obj)
@@ -1242,13 +1242,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
GLboolean glfBitmapGetStringCentering ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfStringDirection (
JNIEnv *env, jobject obj,
@@ -1260,13 +1260,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfStringDirection ( GLuint direction ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfGetStringDirection (
JNIEnv *env, jobject obj)
@@ -1279,13 +1279,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
GLuint glfGetStringDirection ( ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetRotateAngle (
JNIEnv *env, jobject obj,
@@ -1297,13 +1297,13 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/**
- * Original Function-Prototype :
- *
void glfSetRotateAngle ( float angle ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_utils_glf_GLFFuncJNI_glfSetBRotateAngle (
JNIEnv *env, jobject obj,
@@ -1315,5 +1315,5 @@ Java_gl4java_utils_glf_GLFFuncJNI_glfLoadBFontNative (
);
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/CNativeCode/OpenGLU_JauJNI12_funcs.c b/CNativeCode/OpenGLU_JauJNI12_funcs.c
index 54be382..bbca347 100644
--- a/CNativeCode/OpenGLU_JauJNI12_funcs.c
+++ b/CNativeCode/OpenGLU_JauJNI12_funcs.c
@@ -68,7 +68,7 @@ Java_gl4java_GLUFuncJauJNI_gluGetString ( JNIEnv *env, jobject obj,
}
static const char * _glu_lib_vendor_="Jausoft - Sven Goethel Software Development";
-static const char * _glu_lib_version_="2.8.0.8";
+static const char * _glu_lib_version_="2.8.1.0";
JNIEXPORT jstring JNICALL
Java_gl4java_GLUFuncJauJNI_getNativeVendor ( JNIEnv *env, jobject obj )
@@ -306,13 +306,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
* Reading from file: glu-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
void glfSetBRotateAngle ( float angle ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginCurve (
JNIEnv *env, jobject obj,
@@ -326,13 +326,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginPolygon (
JNIEnv *env, jobject obj,
@@ -346,13 +346,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginSurface (
JNIEnv *env, jobject obj,
@@ -366,13 +366,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginTrim (
JNIEnv *env, jobject obj,
@@ -386,13 +386,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild1DMipmapLevels__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -680,13 +680,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild1DMipmaps__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -932,13 +932,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild2DMipmapLevels__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1240,13 +1240,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild2DMipmaps__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1506,13 +1506,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild3DMipmapLevels__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1828,13 +1828,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild3DMipmaps__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -2108,13 +2108,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild3DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLUFuncJauJNI_gluCheckExtension (
JNIEnv *env, jobject obj,
@@ -2151,13 +2151,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean gluCheckExtension ( const GLubyte * extName , const GLubyte * extString ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluCylinder (
JNIEnv *env, jobject obj,
@@ -2181,13 +2181,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluCylinder ( GLUquadric * quad , GLdouble base , GLdouble top , GLdouble height , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluDisk (
JNIEnv *env, jobject obj,
@@ -2209,13 +2209,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndCurve (
JNIEnv *env, jobject obj,
@@ -2229,13 +2229,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndPolygon (
JNIEnv *env, jobject obj,
@@ -2249,13 +2249,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndSurface (
JNIEnv *env, jobject obj,
@@ -2269,13 +2269,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndTrim (
JNIEnv *env, jobject obj,
@@ -2289,13 +2289,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluGetNurbsProperty (
JNIEnv *env, jobject obj,
@@ -2323,13 +2323,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluGetTessProperty (
JNIEnv *env, jobject obj,
@@ -2357,13 +2357,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetTessProperty ( GLUtesselator * tess , GLenum which , GLdouble * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluLoadSamplingMatrices (
JNIEnv *env, jobject obj,
@@ -2410,13 +2410,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, view, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluLoadSamplingMatrices ( GLUnurbs * nurb , const GLfloat * model , const GLfloat * perspective , const GLint * view ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluLookAt (
JNIEnv *env, jobject obj,
@@ -2446,13 +2446,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluLookAt ( GLdouble eyeX , GLdouble eyeY , GLdouble eyeZ , GLdouble centerX , GLdouble centerY , GLdouble centerZ , GLdouble upX , GLdouble upY , GLdouble upZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNextContour (
JNIEnv *env, jobject obj,
@@ -2468,13 +2468,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNextContour ( GLUtesselator * tess , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNurbsCurve (
JNIEnv *env, jobject obj,
@@ -2520,13 +2520,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, control, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsCurve ( GLUnurbs * nurb , GLint knotCount , GLfloat * knots , GLint stride , GLfloat * control , GLint order , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNurbsProperty (
JNIEnv *env, jobject obj,
@@ -2544,13 +2544,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNurbsSurface (
JNIEnv *env, jobject obj,
@@ -2614,13 +2614,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, control, ptr7, (isCopiedArray7 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluOrtho2D (
JNIEnv *env, jobject obj,
@@ -2640,13 +2640,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluOrtho2D ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPartialDisk (
JNIEnv *env, jobject obj,
@@ -2672,13 +2672,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPartialDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops , GLdouble start , GLdouble sweep ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPerspective (
JNIEnv *env, jobject obj,
@@ -2698,13 +2698,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPerspective ( GLdouble fovy , GLdouble aspect , GLdouble zNear , GLdouble zFar ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPickMatrix (
JNIEnv *env, jobject obj,
@@ -2736,13 +2736,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, viewport, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPickMatrix ( GLdouble x , GLdouble y , GLdouble delX , GLdouble delY , GLint * viewport ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluProject (
JNIEnv *env, jobject obj,
@@ -2832,13 +2832,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluProject ( GLdouble objX , GLdouble objY , GLdouble objZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * winX , GLdouble * winY , GLdouble * winZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPwlCurve (
JNIEnv *env, jobject obj,
@@ -2870,13 +2870,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPwlCurve ( GLUnurbs * nurb , GLint count , GLfloat * data , GLint stride , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricDrawStyle (
JNIEnv *env, jobject obj,
@@ -2892,13 +2892,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricDrawStyle ( GLUquadric * quad , GLenum draw ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricNormals (
JNIEnv *env, jobject obj,
@@ -2914,13 +2914,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricNormals ( GLUquadric * quad , GLenum normal ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricOrientation (
JNIEnv *env, jobject obj,
@@ -2936,13 +2936,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricOrientation ( GLUquadric * quad , GLenum orientation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricTexture (
JNIEnv *env, jobject obj,
@@ -2958,13 +2958,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricTexture ( GLUquadric * quad , GLboolean texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluScaleImage__IIII_3BIII_3B (
JNIEnv *env, jobject obj,
@@ -3322,13 +3322,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluScaleImage ( GLenum format , GLsizei wIn , GLsizei hIn , GLenum typeIn , const void * dataIn , GLsizei wOut , GLsizei hOut , GLenum typeOut , GLvoid * dataOut ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluSphere (
JNIEnv *env, jobject obj,
@@ -3348,13 +3348,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluSphere ( GLUquadric * quad , GLdouble radius , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessBeginContour (
JNIEnv *env, jobject obj,
@@ -3368,13 +3368,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessBeginPolygon__J_3B (
JNIEnv *env, jobject obj,
@@ -3550,13 +3550,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessEndContour (
JNIEnv *env, jobject obj,
@@ -3570,13 +3570,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessEndPolygon (
JNIEnv *env, jobject obj,
@@ -3590,13 +3590,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessNormal (
JNIEnv *env, jobject obj,
@@ -3616,13 +3616,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessProperty (
JNIEnv *env, jobject obj,
@@ -3640,13 +3640,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessVertex__J_3D_3B (
JNIEnv *env, jobject obj,
@@ -3906,13 +3906,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluUnProject (
JNIEnv *env, jobject obj,
@@ -4002,13 +4002,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluUnProject4 (
JNIEnv *env, jobject obj,
@@ -4116,5 +4116,5 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/CNativeCode/OpenGLU_JauJNI12nf_funcs.c b/CNativeCode/OpenGLU_JauJNI12nf_funcs.c
index 06b518f..32d157a 100755
--- a/CNativeCode/OpenGLU_JauJNI12nf_funcs.c
+++ b/CNativeCode/OpenGLU_JauJNI12nf_funcs.c
@@ -4,35 +4,35 @@
*/
-/*
- * Leo Chan -- 1995
- *
- * This C file takes care of all the native implementation for the
- * OpenGL utility commands
- * ---------------
- *
- * Sven Goethel
- *
- * September 1997
- */
-
-
-/*--------------------------------------------------------------------------
- * here on in is just regular apple pie C
- */
-
-#include "OpenGL_misc.h"
-
-#include "gl4java_GLUFuncJauJNInf.h"
-
-#include "GLCallbackHelperJNI.h"
-#include "GLUCallbackJNI.h"
-#include "jnitools.h"
-
-/**
- * herein lies the native JAVA methods for the OpenGL functions.
- */
-
+/*
+ * Leo Chan -- 1995
+ *
+ * This C file takes care of all the native implementation for the
+ * OpenGL utility commands
+ * ---------------
+ *
+ * Sven Goethel
+ *
+ * September 1997
+ */
+
+
+/*--------------------------------------------------------------------------
+ * here on in is just regular apple pie C
+ */
+
+#include "OpenGL_misc.h"
+
+#include "gl4java_GLUFuncJauJNInf.h"
+
+#include "GLCallbackHelperJNI.h"
+#include "GLUCallbackJNI.h"
+#include "jnitools.h"
+
+/**
+ * herein lies the native JAVA methods for the OpenGL functions.
+ */
+
static const char _glu_n_a_string[] = "GLU-String not avaiable !";
JNIEXPORT jstring JNICALL
@@ -68,7 +68,7 @@ Java_gl4java_GLUFuncJauJNInf_gluGetString ( JNIEnv *env, jobject obj,
}
static const char * _glu_lib_vendor_="Jausoft - Sven Goethel Software Development";
-static const char * _glu_lib_version_="2.8.0.8";
+static const char * _glu_lib_version_="2.8.1.0";
JNIEXPORT jstring JNICALL
Java_gl4java_GLUFuncJauJNInf_getNativeVendor ( JNIEnv *env, jobject obj )
diff --git a/CNativeCode/OpenGLU_JauJNI12tst_funcs.c b/CNativeCode/OpenGLU_JauJNI12tst_funcs.c
index 5d437a0..9b9cd6f 100644
--- a/CNativeCode/OpenGLU_JauJNI12tst_funcs.c
+++ b/CNativeCode/OpenGLU_JauJNI12tst_funcs.c
@@ -68,7 +68,7 @@ Java_gl4java_GLUFuncJauJNI_gluGetString ( JNIEnv *env, jobject obj,
}
static const char * _glu_lib_vendor_="Jausoft - Sven Goethel Software Development";
-static const char * _glu_lib_version_="2.8.0.8";
+static const char * _glu_lib_version_="2.8.1.0";
JNIEXPORT jstring JNICALL
Java_gl4java_GLUFuncJauJNI_getNativeVendor ( JNIEnv *env, jobject obj )
@@ -306,13 +306,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
* Reading from file: glu-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginCurve (
JNIEnv *env, jobject obj,
@@ -326,13 +326,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginPolygon (
JNIEnv *env, jobject obj,
@@ -346,13 +346,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginSurface (
JNIEnv *env, jobject obj,
@@ -366,13 +366,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginTrim (
JNIEnv *env, jobject obj,
@@ -386,13 +386,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild1DMipmapLevels__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -722,13 +722,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild1DMipmaps__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -1016,13 +1016,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild2DMipmapLevels__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1366,13 +1366,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild2DMipmaps__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1674,13 +1674,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild3DMipmapLevels__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -2038,13 +2038,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild3DMipmaps__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -2360,13 +2360,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild3DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLUFuncJauJNI_gluCheckExtension (
JNIEnv *env, jobject obj,
@@ -2415,13 +2415,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean gluCheckExtension ( const GLubyte * extName , const GLubyte * extString ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluCylinder (
JNIEnv *env, jobject obj,
@@ -2445,13 +2445,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluCylinder ( GLUquadric * quad , GLdouble base , GLdouble top , GLdouble height , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluDisk (
JNIEnv *env, jobject obj,
@@ -2473,13 +2473,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndCurve (
JNIEnv *env, jobject obj,
@@ -2493,13 +2493,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndPolygon (
JNIEnv *env, jobject obj,
@@ -2513,13 +2513,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndSurface (
JNIEnv *env, jobject obj,
@@ -2533,13 +2533,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndTrim (
JNIEnv *env, jobject obj,
@@ -2553,13 +2553,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluGetNurbsProperty (
JNIEnv *env, jobject obj,
@@ -2592,13 +2592,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluGetTessProperty (
JNIEnv *env, jobject obj,
@@ -2631,13 +2631,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetTessProperty ( GLUtesselator * tess , GLenum which , GLdouble * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluLoadSamplingMatrices (
JNIEnv *env, jobject obj,
@@ -2702,13 +2702,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, view, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluLoadSamplingMatrices ( GLUnurbs * nurb , const GLfloat * model , const GLfloat * perspective , const GLint * view ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluLookAt (
JNIEnv *env, jobject obj,
@@ -2738,13 +2738,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluLookAt ( GLdouble eyeX , GLdouble eyeY , GLdouble eyeZ , GLdouble centerX , GLdouble centerY , GLdouble centerZ , GLdouble upX , GLdouble upY , GLdouble upZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNextContour (
JNIEnv *env, jobject obj,
@@ -2760,13 +2760,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNextContour ( GLUtesselator * tess , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNurbsCurve (
JNIEnv *env, jobject obj,
@@ -2822,13 +2822,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, control, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsCurve ( GLUnurbs * nurb , GLint knotCount , GLfloat * knots , GLint stride , GLfloat * control , GLint order , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNurbsProperty (
JNIEnv *env, jobject obj,
@@ -2846,13 +2846,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNurbsSurface (
JNIEnv *env, jobject obj,
@@ -2931,13 +2931,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, control, ptr7, (isCopiedArray7 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluOrtho2D (
JNIEnv *env, jobject obj,
@@ -2957,13 +2957,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluOrtho2D ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPartialDisk (
JNIEnv *env, jobject obj,
@@ -2989,13 +2989,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPartialDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops , GLdouble start , GLdouble sweep ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPerspective (
JNIEnv *env, jobject obj,
@@ -3015,13 +3015,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPerspective ( GLdouble fovy , GLdouble aspect , GLdouble zNear , GLdouble zFar ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPickMatrix (
JNIEnv *env, jobject obj,
@@ -3058,13 +3058,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, viewport, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPickMatrix ( GLdouble x , GLdouble y , GLdouble delX , GLdouble delY , GLint * viewport ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluProject (
JNIEnv *env, jobject obj,
@@ -3187,13 +3187,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluProject ( GLdouble objX , GLdouble objY , GLdouble objZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * winX , GLdouble * winY , GLdouble * winZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPwlCurve (
JNIEnv *env, jobject obj,
@@ -3230,13 +3230,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPwlCurve ( GLUnurbs * nurb , GLint count , GLfloat * data , GLint stride , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricDrawStyle (
JNIEnv *env, jobject obj,
@@ -3252,13 +3252,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricDrawStyle ( GLUquadric * quad , GLenum draw ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricNormals (
JNIEnv *env, jobject obj,
@@ -3274,13 +3274,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricNormals ( GLUquadric * quad , GLenum normal ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricOrientation (
JNIEnv *env, jobject obj,
@@ -3296,13 +3296,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricOrientation ( GLUquadric * quad , GLenum orientation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricTexture (
JNIEnv *env, jobject obj,
@@ -3318,13 +3318,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricTexture ( GLUquadric * quad , GLboolean texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluScaleImage__IIII_3BIII_3B (
JNIEnv *env, jobject obj,
@@ -3759,13 +3759,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluScaleImage ( GLenum format , GLsizei wIn , GLsizei hIn , GLenum typeIn , const void * dataIn , GLsizei wOut , GLsizei hOut , GLenum typeOut , GLvoid * dataOut ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluSphere (
JNIEnv *env, jobject obj,
@@ -3785,13 +3785,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluSphere ( GLUquadric * quad , GLdouble radius , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessBeginContour (
JNIEnv *env, jobject obj,
@@ -3805,13 +3805,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessBeginPolygon__J_3B (
JNIEnv *env, jobject obj,
@@ -4022,13 +4022,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessEndContour (
JNIEnv *env, jobject obj,
@@ -4042,13 +4042,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessEndPolygon (
JNIEnv *env, jobject obj,
@@ -4062,13 +4062,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessNormal (
JNIEnv *env, jobject obj,
@@ -4088,13 +4088,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessProperty (
JNIEnv *env, jobject obj,
@@ -4112,13 +4112,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessVertex__J_3D_3B (
JNIEnv *env, jobject obj,
@@ -4448,13 +4448,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluUnProject (
JNIEnv *env, jobject obj,
@@ -4577,13 +4577,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluUnProject4 (
JNIEnv *env, jobject obj,
@@ -4729,5 +4729,5 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/CNativeCode/OpenGLU_JauJNI14_funcs.c b/CNativeCode/OpenGLU_JauJNI14_funcs.c
index a82a3a1..5b11cc6 100644
--- a/CNativeCode/OpenGLU_JauJNI14_funcs.c
+++ b/CNativeCode/OpenGLU_JauJNI14_funcs.c
@@ -33,8 +33,17 @@
* herein lies the native JAVA methods for the OpenGL functions.
*/
+/** THIS IS A MANUAL CODED PART
+ glu-manualCodedImplJNI14.java
+*/
+
static const char _glu_n_a_string[] = "GLU-String not avaiable !";
+static const char * _glu_lib_vendor_="Jausoft - Sven Goethel Software Development";
+static const char * _glu_lib_version_="2.8.1.0";
+
+/* ---------------------------------------------------------------------- */
+
JNIEXPORT jstring JNICALL
Java_gl4java_GLUFunc14JauJNI_gluErrorString ( JNIEnv *env, jobject obj,
jint errorCode )
@@ -67,9 +76,6 @@ Java_gl4java_GLUFunc14JauJNI_gluGetString ( JNIEnv *env, jobject obj,
return (*env)->NewStringUTF(env, tmpString);
}
-static const char * _glu_lib_vendor_="Jausoft - Sven Goethel Software Development";
-static const char * _glu_lib_version_="2.8.0.8";
-
JNIEXPORT jstring JNICALL
Java_gl4java_GLUFunc14JauJNI_getNativeVendor ( JNIEnv *env, jobject obj )
{
@@ -82,6 +88,9 @@ Java_gl4java_GLUFunc14JauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return (*env)->NewStringUTF(env, _glu_lib_version_);
}
+
+/* ---------------------------------------------------------------------- */
+
static void _AddCallbackNode(JNIEnv *env,
jlong qnt_obj, jint which,
jobject methodClassInstance,
@@ -306,13 +315,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
* Reading from file: glu-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFunc14JauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBeginCurve (
JNIEnv *env, jobject obj,
@@ -326,13 +335,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBeginPolygon (
JNIEnv *env, jobject obj,
@@ -346,13 +355,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBeginSurface (
JNIEnv *env, jobject obj,
@@ -366,13 +375,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBeginTrim (
JNIEnv *env, jobject obj,
@@ -386,13 +395,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBuild1DMipmapLevels__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -722,13 +731,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBuild1DMipmaps__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -1010,13 +1019,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBuild2DMipmapLevels__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1362,13 +1371,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBuild2DMipmaps__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1666,13 +1675,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBuild3DMipmapLevels__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -2034,13 +2043,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluBuild3DMipmaps__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -2354,13 +2363,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild3DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLUFunc14JauJNI_gluCheckExtension (
JNIEnv *env, jobject obj,
@@ -2397,13 +2406,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean gluCheckExtension ( const GLubyte * extName , const GLubyte * extString ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluCylinder (
JNIEnv *env, jobject obj,
@@ -2427,13 +2436,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluCylinder ( GLUquadric * quad , GLdouble base , GLdouble top , GLdouble height , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluDisk (
JNIEnv *env, jobject obj,
@@ -2455,13 +2464,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluEndCurve (
JNIEnv *env, jobject obj,
@@ -2475,13 +2484,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluEndPolygon (
JNIEnv *env, jobject obj,
@@ -2495,13 +2504,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluEndSurface (
JNIEnv *env, jobject obj,
@@ -2515,13 +2524,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluEndTrim (
JNIEnv *env, jobject obj,
@@ -2535,13 +2544,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluGetNurbsProperty (
JNIEnv *env, jobject obj,
@@ -2569,13 +2578,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluGetTessProperty (
JNIEnv *env, jobject obj,
@@ -2603,13 +2612,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetTessProperty ( GLUtesselator * tess , GLenum which , GLdouble * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluLoadSamplingMatrices (
JNIEnv *env, jobject obj,
@@ -2656,13 +2665,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, view, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluLoadSamplingMatrices ( GLUnurbs * nurb , const GLfloat * model , const GLfloat * perspective , const GLint * view ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluLookAt (
JNIEnv *env, jobject obj,
@@ -2692,13 +2701,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluLookAt ( GLdouble eyeX , GLdouble eyeY , GLdouble eyeZ , GLdouble centerX , GLdouble centerY , GLdouble centerZ , GLdouble upX , GLdouble upY , GLdouble upZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluNextContour (
JNIEnv *env, jobject obj,
@@ -2714,13 +2723,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNextContour ( GLUtesselator * tess , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluNurbsCurve (
JNIEnv *env, jobject obj,
@@ -2766,13 +2775,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, control, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsCurve ( GLUnurbs * nurb , GLint knotCount , GLfloat * knots , GLint stride , GLfloat * control , GLint order , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluNurbsProperty (
JNIEnv *env, jobject obj,
@@ -2790,13 +2799,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluNurbsSurface (
JNIEnv *env, jobject obj,
@@ -2860,13 +2869,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, control, ptr7, (isCopiedArray7 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluOrtho2D (
JNIEnv *env, jobject obj,
@@ -2886,13 +2895,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluOrtho2D ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluPartialDisk (
JNIEnv *env, jobject obj,
@@ -2918,13 +2927,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPartialDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops , GLdouble start , GLdouble sweep ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluPerspective (
JNIEnv *env, jobject obj,
@@ -2944,13 +2953,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPerspective ( GLdouble fovy , GLdouble aspect , GLdouble zNear , GLdouble zFar ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluPickMatrix (
JNIEnv *env, jobject obj,
@@ -2982,13 +2991,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, viewport, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPickMatrix ( GLdouble x , GLdouble y , GLdouble delX , GLdouble delY , GLint * viewport ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluProject (
JNIEnv *env, jobject obj,
@@ -3078,13 +3087,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluProject ( GLdouble objX , GLdouble objY , GLdouble objZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * winX , GLdouble * winY , GLdouble * winZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluPwlCurve (
JNIEnv *env, jobject obj,
@@ -3116,13 +3125,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPwlCurve ( GLUnurbs * nurb , GLint count , GLfloat * data , GLint stride , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluQuadricDrawStyle (
JNIEnv *env, jobject obj,
@@ -3138,13 +3147,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricDrawStyle ( GLUquadric * quad , GLenum draw ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluQuadricNormals (
JNIEnv *env, jobject obj,
@@ -3160,13 +3169,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricNormals ( GLUquadric * quad , GLenum normal ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluQuadricOrientation (
JNIEnv *env, jobject obj,
@@ -3182,13 +3191,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricOrientation ( GLUquadric * quad , GLenum orientation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluQuadricTexture (
JNIEnv *env, jobject obj,
@@ -3204,13 +3213,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricTexture ( GLUquadric * quad , GLboolean texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluScaleImage__IIII_3BIII_3B (
JNIEnv *env, jobject obj,
@@ -3620,13 +3629,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluScaleImage ( GLenum format , GLsizei wIn , GLsizei hIn , GLenum typeIn , const void * dataIn , GLsizei wOut , GLsizei hOut , GLenum typeOut , GLvoid * dataOut ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluSphere (
JNIEnv *env, jobject obj,
@@ -3646,13 +3655,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluSphere ( GLUquadric * quad , GLdouble radius , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluTessBeginContour (
JNIEnv *env, jobject obj,
@@ -3666,13 +3675,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluTessBeginPolygon__J_3B (
JNIEnv *env, jobject obj,
@@ -3873,13 +3882,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluTessEndContour (
JNIEnv *env, jobject obj,
@@ -3893,13 +3902,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluTessEndPolygon (
JNIEnv *env, jobject obj,
@@ -3913,13 +3922,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluTessNormal (
JNIEnv *env, jobject obj,
@@ -3939,13 +3948,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluTessProperty (
JNIEnv *env, jobject obj,
@@ -3963,13 +3972,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFunc14JauJNI_gluTessVertex__J_3D_3B (
JNIEnv *env, jobject obj,
@@ -4266,13 +4275,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleasePrimitiveArrayCritical(env, location, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluUnProject (
JNIEnv *env, jobject obj,
@@ -4362,13 +4371,13 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFunc14JauJNI_gluUnProject4 (
JNIEnv *env, jobject obj,
@@ -4476,5 +4485,5 @@ Java_gl4java_GLUFunc14JauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/CNativeCode/OpenGLU_JauJNI_funcs.c b/CNativeCode/OpenGLU_JauJNI_funcs.c
index 114bfff..05e1860 100644
--- a/CNativeCode/OpenGLU_JauJNI_funcs.c
+++ b/CNativeCode/OpenGLU_JauJNI_funcs.c
@@ -68,7 +68,7 @@ Java_gl4java_GLUFuncJauJNI_gluGetString ( JNIEnv *env, jobject obj,
}
static const char * _glu_lib_vendor_="Jausoft - Sven Goethel Software Development";
-static const char * _glu_lib_version_="2.8.0.8";
+static const char * _glu_lib_version_="2.8.1.0";
JNIEXPORT jstring JNICALL
Java_gl4java_GLUFuncJauJNI_getNativeVendor ( JNIEnv *env, jobject obj )
@@ -306,13 +306,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
* Reading from file: glu-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginCurve (
JNIEnv *env, jobject obj,
@@ -326,13 +326,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginPolygon (
JNIEnv *env, jobject obj,
@@ -346,13 +346,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginSurface (
JNIEnv *env, jobject obj,
@@ -366,13 +366,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluBeginTrim (
JNIEnv *env, jobject obj,
@@ -386,13 +386,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild1DMipmapLevels__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -680,13 +680,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild1DMipmaps__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -932,13 +932,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild2DMipmapLevels__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1240,13 +1240,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild2DMipmaps__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1506,13 +1506,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild3DMipmapLevels__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -1828,13 +1828,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluBuild3DMipmaps__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -2108,13 +2108,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild3DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLUFuncJauJNI_gluCheckExtension (
JNIEnv *env, jobject obj,
@@ -2151,13 +2151,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean gluCheckExtension ( const GLubyte * extName , const GLubyte * extString ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluCylinder (
JNIEnv *env, jobject obj,
@@ -2181,13 +2181,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluCylinder ( GLUquadric * quad , GLdouble base , GLdouble top , GLdouble height , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluDisk (
JNIEnv *env, jobject obj,
@@ -2209,13 +2209,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndCurve (
JNIEnv *env, jobject obj,
@@ -2229,13 +2229,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndPolygon (
JNIEnv *env, jobject obj,
@@ -2249,13 +2249,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndSurface (
JNIEnv *env, jobject obj,
@@ -2269,13 +2269,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluEndTrim (
JNIEnv *env, jobject obj,
@@ -2289,13 +2289,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluGetNurbsProperty (
JNIEnv *env, jobject obj,
@@ -2323,13 +2323,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleaseFloatArrayElements(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluGetTessProperty (
JNIEnv *env, jobject obj,
@@ -2357,13 +2357,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleaseDoubleArrayElements(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetTessProperty ( GLUtesselator * tess , GLenum which , GLdouble * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluLoadSamplingMatrices (
JNIEnv *env, jobject obj,
@@ -2410,13 +2410,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleaseIntArrayElements(env, view, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluLoadSamplingMatrices ( GLUnurbs * nurb , const GLfloat * model , const GLfloat * perspective , const GLint * view ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluLookAt (
JNIEnv *env, jobject obj,
@@ -2446,13 +2446,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluLookAt ( GLdouble eyeX , GLdouble eyeY , GLdouble eyeZ , GLdouble centerX , GLdouble centerY , GLdouble centerZ , GLdouble upX , GLdouble upY , GLdouble upZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNextContour (
JNIEnv *env, jobject obj,
@@ -2468,13 +2468,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNextContour ( GLUtesselator * tess , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNurbsCurve (
JNIEnv *env, jobject obj,
@@ -2520,13 +2520,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleaseFloatArrayElements(env, control, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsCurve ( GLUnurbs * nurb , GLint knotCount , GLfloat * knots , GLint stride , GLfloat * control , GLint order , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNurbsProperty (
JNIEnv *env, jobject obj,
@@ -2544,13 +2544,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluNurbsSurface (
JNIEnv *env, jobject obj,
@@ -2614,13 +2614,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleaseFloatArrayElements(env, control, ptr7, (isCopiedArray7 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluOrtho2D (
JNIEnv *env, jobject obj,
@@ -2640,13 +2640,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluOrtho2D ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPartialDisk (
JNIEnv *env, jobject obj,
@@ -2672,13 +2672,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPartialDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops , GLdouble start , GLdouble sweep ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPerspective (
JNIEnv *env, jobject obj,
@@ -2698,13 +2698,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPerspective ( GLdouble fovy , GLdouble aspect , GLdouble zNear , GLdouble zFar ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPickMatrix (
JNIEnv *env, jobject obj,
@@ -2736,13 +2736,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleaseIntArrayElements(env, viewport, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPickMatrix ( GLdouble x , GLdouble y , GLdouble delX , GLdouble delY , GLint * viewport ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluProject (
JNIEnv *env, jobject obj,
@@ -2832,13 +2832,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluProject ( GLdouble objX , GLdouble objY , GLdouble objZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * winX , GLdouble * winY , GLdouble * winZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluPwlCurve (
JNIEnv *env, jobject obj,
@@ -2870,13 +2870,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleaseFloatArrayElements(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluPwlCurve ( GLUnurbs * nurb , GLint count , GLfloat * data , GLint stride , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricDrawStyle (
JNIEnv *env, jobject obj,
@@ -2892,13 +2892,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricDrawStyle ( GLUquadric * quad , GLenum draw ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricNormals (
JNIEnv *env, jobject obj,
@@ -2914,13 +2914,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricNormals ( GLUquadric * quad , GLenum normal ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricOrientation (
JNIEnv *env, jobject obj,
@@ -2936,13 +2936,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricOrientation ( GLUquadric * quad , GLenum orientation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluQuadricTexture (
JNIEnv *env, jobject obj,
@@ -2958,13 +2958,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricTexture ( GLUquadric * quad , GLboolean texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluScaleImage__IIII_3BIII_3B (
JNIEnv *env, jobject obj,
@@ -3322,13 +3322,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluScaleImage ( GLenum format , GLsizei wIn , GLsizei hIn , GLenum typeIn , const void * dataIn , GLsizei wOut , GLsizei hOut , GLenum typeOut , GLvoid * dataOut ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluSphere (
JNIEnv *env, jobject obj,
@@ -3348,13 +3348,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluSphere ( GLUquadric * quad , GLdouble radius , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessBeginContour (
JNIEnv *env, jobject obj,
@@ -3368,13 +3368,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessBeginPolygon__J_3B (
JNIEnv *env, jobject obj,
@@ -3550,13 +3550,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleaseLongArrayElements(env, data, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessEndContour (
JNIEnv *env, jobject obj,
@@ -3570,13 +3570,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessEndPolygon (
JNIEnv *env, jobject obj,
@@ -3590,13 +3590,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessNormal (
JNIEnv *env, jobject obj,
@@ -3616,13 +3616,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessProperty (
JNIEnv *env, jobject obj,
@@ -3640,13 +3640,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLUFuncJauJNI_gluTessVertex__J_3D_3B (
JNIEnv *env, jobject obj,
@@ -3906,13 +3906,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
(*env)->ReleaseLongArrayElements(env, data, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluUnProject (
JNIEnv *env, jobject obj,
@@ -4002,13 +4002,13 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLUFuncJauJNI_gluUnProject4 (
JNIEnv *env, jobject obj,
@@ -4116,5 +4116,5 @@ Java_gl4java_GLUFuncJauJNI_gluNewTess( JNIEnv *env, jobject obj)
}
return ret;
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/CNativeCode/OpenGL_JauJNI12_funcs.c b/CNativeCode/OpenGL_JauJNI12_funcs.c
index 2a1a012..ba01f35 100755
--- a/CNativeCode/OpenGL_JauJNI12_funcs.c
+++ b/CNativeCode/OpenGL_JauJNI12_funcs.c
@@ -71,7 +71,7 @@ Java_gl4java_GLFuncJauJNI_glGetString ( JNIEnv *env, jobject obj,
}
static const char * _gl_lib_vendor_="Jausoft - Sven Goethel Software Development";
-static const char * _gl_lib_version_="2.8.0.8";
+static const char * _gl_lib_version_="2.8.1.0";
JNIEXPORT jstring JNICALL
Java_gl4java_GLFuncJauJNI_getNativeVendor ( JNIEnv *env, jobject obj )
@@ -91,13 +91,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
* Reading from file: gl-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearIndex (
JNIEnv *env, jobject obj,
@@ -111,13 +111,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearIndex ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearColor (
JNIEnv *env, jobject obj,
@@ -137,13 +137,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClear (
JNIEnv *env, jobject obj,
@@ -157,13 +157,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClear ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexMask (
JNIEnv *env, jobject obj,
@@ -177,13 +177,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorMask (
JNIEnv *env, jobject obj,
@@ -203,13 +203,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMask ( GLboolean red , GLboolean green , GLboolean blue , GLboolean alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFunc (
JNIEnv *env, jobject obj,
@@ -225,13 +225,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFunc ( GLenum func , GLclampf ref ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendFunc (
JNIEnv *env, jobject obj,
@@ -247,13 +247,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFunc ( GLenum sfactor , GLenum dfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLogicOp (
JNIEnv *env, jobject obj,
@@ -267,13 +267,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLogicOp ( GLenum opcode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCullFace (
JNIEnv *env, jobject obj,
@@ -287,13 +287,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFrontFace (
JNIEnv *env, jobject obj,
@@ -307,13 +307,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrontFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointSize (
JNIEnv *env, jobject obj,
@@ -327,13 +327,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointSize ( GLfloat size ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLineWidth (
JNIEnv *env, jobject obj,
@@ -347,13 +347,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLineWidth ( GLfloat width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLineStipple (
JNIEnv *env, jobject obj,
@@ -369,13 +369,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLineStipple ( GLint factor , GLushort pattern ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonMode (
JNIEnv *env, jobject obj,
@@ -391,13 +391,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonMode ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonOffset (
JNIEnv *env, jobject obj,
@@ -413,13 +413,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffset ( GLfloat factor , GLfloat units ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonStipple (
JNIEnv *env, jobject obj,
@@ -442,13 +442,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, mask, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonStipple ( const GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPolygonStipple (
JNIEnv *env, jobject obj,
@@ -472,13 +472,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, mask, ptr0, (isCopiedArray0 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPolygonStipple ( GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlag (
JNIEnv *env, jobject obj,
@@ -492,13 +492,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlag ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagv (
JNIEnv *env, jobject obj,
@@ -521,13 +521,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, flag, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagv ( const GLboolean * flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glScissor (
JNIEnv *env, jobject obj,
@@ -547,13 +547,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScissor ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClipPlane (
JNIEnv *env, jobject obj,
@@ -578,13 +578,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, equation, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClipPlane ( GLenum plane , const GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetClipPlane (
JNIEnv *env, jobject obj,
@@ -610,13 +610,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, equation, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetClipPlane ( GLenum plane , GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawBuffer (
JNIEnv *env, jobject obj,
@@ -630,13 +630,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReadBuffer (
JNIEnv *env, jobject obj,
@@ -650,13 +650,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnable (
JNIEnv *env, jobject obj,
@@ -670,13 +670,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDisable (
JNIEnv *env, jobject obj,
@@ -690,13 +690,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsEnabled (
JNIEnv *env, jobject obj,
@@ -713,13 +713,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsEnabled ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnableClientState (
JNIEnv *env, jobject obj,
@@ -733,13 +733,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDisableClientState (
JNIEnv *env, jobject obj,
@@ -753,13 +753,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetBooleanv (
JNIEnv *env, jobject obj,
@@ -785,13 +785,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetBooleanv ( GLenum pname , GLboolean * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetDoublev (
JNIEnv *env, jobject obj,
@@ -817,13 +817,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDoublev ( GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFloatv (
JNIEnv *env, jobject obj,
@@ -849,13 +849,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFloatv ( GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetIntegerv (
JNIEnv *env, jobject obj,
@@ -881,13 +881,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetIntegerv ( GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushAttrib (
JNIEnv *env, jobject obj,
@@ -901,13 +901,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopAttrib (
JNIEnv *env, jobject obj)
@@ -919,13 +919,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushClientAttrib (
JNIEnv *env, jobject obj,
@@ -939,13 +939,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushClientAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopClientAttrib (
JNIEnv *env, jobject obj)
@@ -957,13 +957,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopClientAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glRenderMode (
JNIEnv *env, jobject obj,
@@ -980,13 +980,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glRenderMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGetError (
JNIEnv *env, jobject obj)
@@ -1001,13 +1001,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLenum glGetError ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinish (
JNIEnv *env, jobject obj)
@@ -1019,13 +1019,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinish ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFlush (
JNIEnv *env, jobject obj)
@@ -1037,13 +1037,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlush ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHint (
JNIEnv *env, jobject obj,
@@ -1059,13 +1059,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHint ( GLenum target , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearDepth (
JNIEnv *env, jobject obj,
@@ -1079,13 +1079,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearDepth ( GLclampd depth ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDepthFunc (
JNIEnv *env, jobject obj,
@@ -1099,13 +1099,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthFunc ( GLenum func ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDepthMask (
JNIEnv *env, jobject obj,
@@ -1119,13 +1119,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthMask ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDepthRange (
JNIEnv *env, jobject obj,
@@ -1141,13 +1141,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthRange ( GLclampd near_val , GLclampd far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearAccum (
JNIEnv *env, jobject obj,
@@ -1167,13 +1167,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearAccum ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAccum (
JNIEnv *env, jobject obj,
@@ -1189,13 +1189,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAccum ( GLenum op , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixMode (
JNIEnv *env, jobject obj,
@@ -1209,13 +1209,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glOrtho (
JNIEnv *env, jobject obj,
@@ -1239,13 +1239,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glOrtho ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFrustum (
JNIEnv *env, jobject obj,
@@ -1269,13 +1269,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrustum ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glViewport (
JNIEnv *env, jobject obj,
@@ -1295,13 +1295,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glViewport ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushMatrix (
JNIEnv *env, jobject obj)
@@ -1313,13 +1313,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopMatrix (
JNIEnv *env, jobject obj)
@@ -1331,13 +1331,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadIdentity (
JNIEnv *env, jobject obj)
@@ -1349,13 +1349,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentity ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadMatrixd (
JNIEnv *env, jobject obj,
@@ -1378,13 +1378,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadMatrixf (
JNIEnv *env, jobject obj,
@@ -1407,13 +1407,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultMatrixd (
JNIEnv *env, jobject obj,
@@ -1436,13 +1436,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultMatrixf (
JNIEnv *env, jobject obj,
@@ -1465,13 +1465,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRotated (
JNIEnv *env, jobject obj,
@@ -1491,13 +1491,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRotated ( GLdouble angle , GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRotatef (
JNIEnv *env, jobject obj,
@@ -1517,13 +1517,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRotatef ( GLfloat angle , GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glScaled (
JNIEnv *env, jobject obj,
@@ -1541,13 +1541,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScaled ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glScalef (
JNIEnv *env, jobject obj,
@@ -1565,13 +1565,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScalef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTranslated (
JNIEnv *env, jobject obj,
@@ -1589,13 +1589,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslated ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTranslatef (
JNIEnv *env, jobject obj,
@@ -1613,13 +1613,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslatef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsList (
JNIEnv *env, jobject obj,
@@ -1636,13 +1636,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteLists (
JNIEnv *env, jobject obj,
@@ -1658,13 +1658,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteLists ( GLuint list , GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenLists (
JNIEnv *env, jobject obj,
@@ -1681,13 +1681,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenLists ( GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNewList (
JNIEnv *env, jobject obj,
@@ -1703,13 +1703,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNewList ( GLuint list , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEndList (
JNIEnv *env, jobject obj)
@@ -1721,13 +1721,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndList ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCallList (
JNIEnv *env, jobject obj,
@@ -1741,13 +1741,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCallList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCallLists__II_3B (
JNIEnv *env, jobject obj,
@@ -1930,13 +1930,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, lists, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCallLists ( GLsizei n , GLenum type , const GLvoid * lists ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListBase (
JNIEnv *env, jobject obj,
@@ -1950,13 +1950,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListBase ( GLuint base ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBegin (
JNIEnv *env, jobject obj,
@@ -1970,13 +1970,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBegin ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnd (
JNIEnv *env, jobject obj)
@@ -1988,13 +1988,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnd ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2d (
JNIEnv *env, jobject obj,
@@ -2010,13 +2010,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2f (
JNIEnv *env, jobject obj,
@@ -2032,13 +2032,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2i (
JNIEnv *env, jobject obj,
@@ -2054,13 +2054,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2s (
JNIEnv *env, jobject obj,
@@ -2076,13 +2076,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3d (
JNIEnv *env, jobject obj,
@@ -2100,13 +2100,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3f (
JNIEnv *env, jobject obj,
@@ -2124,13 +2124,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3i (
JNIEnv *env, jobject obj,
@@ -2148,13 +2148,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3s (
JNIEnv *env, jobject obj,
@@ -2172,13 +2172,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4d (
JNIEnv *env, jobject obj,
@@ -2198,13 +2198,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4f (
JNIEnv *env, jobject obj,
@@ -2224,13 +2224,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4i (
JNIEnv *env, jobject obj,
@@ -2250,13 +2250,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4s (
JNIEnv *env, jobject obj,
@@ -2276,13 +2276,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2dv (
JNIEnv *env, jobject obj,
@@ -2305,13 +2305,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2fv (
JNIEnv *env, jobject obj,
@@ -2334,13 +2334,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2iv (
JNIEnv *env, jobject obj,
@@ -2363,13 +2363,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2sv (
JNIEnv *env, jobject obj,
@@ -2392,13 +2392,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3dv (
JNIEnv *env, jobject obj,
@@ -2421,13 +2421,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3fv (
JNIEnv *env, jobject obj,
@@ -2450,13 +2450,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3iv (
JNIEnv *env, jobject obj,
@@ -2479,13 +2479,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3sv (
JNIEnv *env, jobject obj,
@@ -2508,13 +2508,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4dv (
JNIEnv *env, jobject obj,
@@ -2537,13 +2537,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4fv (
JNIEnv *env, jobject obj,
@@ -2566,13 +2566,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4iv (
JNIEnv *env, jobject obj,
@@ -2595,13 +2595,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4sv (
JNIEnv *env, jobject obj,
@@ -2624,13 +2624,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3b (
JNIEnv *env, jobject obj,
@@ -2648,13 +2648,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3b ( GLbyte nx , GLbyte ny , GLbyte nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3d (
JNIEnv *env, jobject obj,
@@ -2672,13 +2672,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3d ( GLdouble nx , GLdouble ny , GLdouble nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3f (
JNIEnv *env, jobject obj,
@@ -2696,13 +2696,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3f ( GLfloat nx , GLfloat ny , GLfloat nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3i (
JNIEnv *env, jobject obj,
@@ -2720,13 +2720,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3i ( GLint nx , GLint ny , GLint nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3s (
JNIEnv *env, jobject obj,
@@ -2744,13 +2744,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3s ( GLshort nx , GLshort ny , GLshort nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3bv (
JNIEnv *env, jobject obj,
@@ -2773,13 +2773,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3dv (
JNIEnv *env, jobject obj,
@@ -2802,13 +2802,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3fv (
JNIEnv *env, jobject obj,
@@ -2831,13 +2831,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3iv (
JNIEnv *env, jobject obj,
@@ -2860,13 +2860,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3sv (
JNIEnv *env, jobject obj,
@@ -2889,13 +2889,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexd (
JNIEnv *env, jobject obj,
@@ -2909,13 +2909,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexd ( GLdouble c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexf (
JNIEnv *env, jobject obj,
@@ -2929,13 +2929,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexf ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexi (
JNIEnv *env, jobject obj,
@@ -2949,13 +2949,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexi ( GLint c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexs (
JNIEnv *env, jobject obj,
@@ -2969,13 +2969,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexs ( GLshort c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexub (
JNIEnv *env, jobject obj,
@@ -2989,13 +2989,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexub ( GLubyte c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexdv (
JNIEnv *env, jobject obj,
@@ -3018,13 +3018,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexdv ( const GLdouble * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexfv (
JNIEnv *env, jobject obj,
@@ -3047,13 +3047,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexfv ( const GLfloat * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexiv (
JNIEnv *env, jobject obj,
@@ -3076,13 +3076,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexiv ( const GLint * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexsv (
JNIEnv *env, jobject obj,
@@ -3105,13 +3105,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexsv ( const GLshort * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexubv (
JNIEnv *env, jobject obj,
@@ -3134,13 +3134,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexubv ( const GLubyte * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3b (
JNIEnv *env, jobject obj,
@@ -3158,13 +3158,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3b ( GLbyte red , GLbyte green , GLbyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3d (
JNIEnv *env, jobject obj,
@@ -3182,13 +3182,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3d ( GLdouble red , GLdouble green , GLdouble blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3f (
JNIEnv *env, jobject obj,
@@ -3206,13 +3206,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3f ( GLfloat red , GLfloat green , GLfloat blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3i (
JNIEnv *env, jobject obj,
@@ -3230,13 +3230,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3i ( GLint red , GLint green , GLint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3s (
JNIEnv *env, jobject obj,
@@ -3254,13 +3254,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3s ( GLshort red , GLshort green , GLshort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3ub (
JNIEnv *env, jobject obj,
@@ -3278,13 +3278,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ub ( GLubyte red , GLubyte green , GLubyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3ui (
JNIEnv *env, jobject obj,
@@ -3302,13 +3302,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ui ( GLuint red , GLuint green , GLuint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3us (
JNIEnv *env, jobject obj,
@@ -3326,13 +3326,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3us ( GLushort red , GLushort green , GLushort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4b (
JNIEnv *env, jobject obj,
@@ -3352,13 +3352,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4b ( GLbyte red , GLbyte green , GLbyte blue , GLbyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4d (
JNIEnv *env, jobject obj,
@@ -3378,13 +3378,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4d ( GLdouble red , GLdouble green , GLdouble blue , GLdouble alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4f (
JNIEnv *env, jobject obj,
@@ -3404,13 +3404,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4f ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4i (
JNIEnv *env, jobject obj,
@@ -3430,13 +3430,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4i ( GLint red , GLint green , GLint blue , GLint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4s (
JNIEnv *env, jobject obj,
@@ -3456,13 +3456,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4s ( GLshort red , GLshort green , GLshort blue , GLshort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ub (
JNIEnv *env, jobject obj,
@@ -3482,13 +3482,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ub ( GLubyte red , GLubyte green , GLubyte blue , GLubyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ui (
JNIEnv *env, jobject obj,
@@ -3508,13 +3508,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ui ( GLuint red , GLuint green , GLuint blue , GLuint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4us (
JNIEnv *env, jobject obj,
@@ -3534,13 +3534,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4us ( GLushort red , GLushort green , GLushort blue , GLushort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3bv (
JNIEnv *env, jobject obj,
@@ -3563,13 +3563,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3dv (
JNIEnv *env, jobject obj,
@@ -3592,13 +3592,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3fv (
JNIEnv *env, jobject obj,
@@ -3621,13 +3621,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3iv (
JNIEnv *env, jobject obj,
@@ -3650,13 +3650,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3sv (
JNIEnv *env, jobject obj,
@@ -3679,13 +3679,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3ubv (
JNIEnv *env, jobject obj,
@@ -3708,13 +3708,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3uiv (
JNIEnv *env, jobject obj,
@@ -3737,13 +3737,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3usv (
JNIEnv *env, jobject obj,
@@ -3766,13 +3766,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4bv (
JNIEnv *env, jobject obj,
@@ -3795,13 +3795,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4dv (
JNIEnv *env, jobject obj,
@@ -3824,13 +3824,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4fv (
JNIEnv *env, jobject obj,
@@ -3853,13 +3853,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4iv (
JNIEnv *env, jobject obj,
@@ -3882,13 +3882,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4sv (
JNIEnv *env, jobject obj,
@@ -3911,13 +3911,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubv (
JNIEnv *env, jobject obj,
@@ -3940,13 +3940,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4uiv (
JNIEnv *env, jobject obj,
@@ -3969,13 +3969,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4usv (
JNIEnv *env, jobject obj,
@@ -3998,13 +3998,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1d (
JNIEnv *env, jobject obj,
@@ -4018,13 +4018,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1d ( GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1f (
JNIEnv *env, jobject obj,
@@ -4038,13 +4038,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1f ( GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1i (
JNIEnv *env, jobject obj,
@@ -4058,13 +4058,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1i ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1s (
JNIEnv *env, jobject obj,
@@ -4078,13 +4078,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1s ( GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2d (
JNIEnv *env, jobject obj,
@@ -4100,13 +4100,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2d ( GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2f (
JNIEnv *env, jobject obj,
@@ -4122,13 +4122,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2f ( GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2i (
JNIEnv *env, jobject obj,
@@ -4144,13 +4144,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2i ( GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2s (
JNIEnv *env, jobject obj,
@@ -4166,13 +4166,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2s ( GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3d (
JNIEnv *env, jobject obj,
@@ -4190,13 +4190,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3d ( GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3f (
JNIEnv *env, jobject obj,
@@ -4214,13 +4214,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3f ( GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3i (
JNIEnv *env, jobject obj,
@@ -4238,13 +4238,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3i ( GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3s (
JNIEnv *env, jobject obj,
@@ -4262,13 +4262,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3s ( GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4d (
JNIEnv *env, jobject obj,
@@ -4288,13 +4288,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4d ( GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4f (
JNIEnv *env, jobject obj,
@@ -4314,13 +4314,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4f ( GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4i (
JNIEnv *env, jobject obj,
@@ -4340,13 +4340,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4i ( GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4s (
JNIEnv *env, jobject obj,
@@ -4366,13 +4366,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4s ( GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1dv (
JNIEnv *env, jobject obj,
@@ -4395,13 +4395,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1fv (
JNIEnv *env, jobject obj,
@@ -4424,13 +4424,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1iv (
JNIEnv *env, jobject obj,
@@ -4453,13 +4453,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1sv (
JNIEnv *env, jobject obj,
@@ -4482,13 +4482,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2dv (
JNIEnv *env, jobject obj,
@@ -4511,13 +4511,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fv (
JNIEnv *env, jobject obj,
@@ -4540,13 +4540,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2iv (
JNIEnv *env, jobject obj,
@@ -4569,13 +4569,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2sv (
JNIEnv *env, jobject obj,
@@ -4598,13 +4598,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3dv (
JNIEnv *env, jobject obj,
@@ -4627,13 +4627,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3fv (
JNIEnv *env, jobject obj,
@@ -4656,13 +4656,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3iv (
JNIEnv *env, jobject obj,
@@ -4685,13 +4685,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3sv (
JNIEnv *env, jobject obj,
@@ -4714,13 +4714,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4dv (
JNIEnv *env, jobject obj,
@@ -4743,13 +4743,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fv (
JNIEnv *env, jobject obj,
@@ -4772,13 +4772,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4iv (
JNIEnv *env, jobject obj,
@@ -4801,13 +4801,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4sv (
JNIEnv *env, jobject obj,
@@ -4830,13 +4830,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2d (
JNIEnv *env, jobject obj,
@@ -4852,13 +4852,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2f (
JNIEnv *env, jobject obj,
@@ -4874,13 +4874,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2i (
JNIEnv *env, jobject obj,
@@ -4896,13 +4896,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2s (
JNIEnv *env, jobject obj,
@@ -4918,13 +4918,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3d (
JNIEnv *env, jobject obj,
@@ -4942,13 +4942,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3f (
JNIEnv *env, jobject obj,
@@ -4966,13 +4966,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3i (
JNIEnv *env, jobject obj,
@@ -4990,13 +4990,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3s (
JNIEnv *env, jobject obj,
@@ -5014,13 +5014,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4d (
JNIEnv *env, jobject obj,
@@ -5040,13 +5040,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4f (
JNIEnv *env, jobject obj,
@@ -5066,13 +5066,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4i (
JNIEnv *env, jobject obj,
@@ -5092,13 +5092,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4s (
JNIEnv *env, jobject obj,
@@ -5118,13 +5118,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2dv (
JNIEnv *env, jobject obj,
@@ -5147,13 +5147,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2fv (
JNIEnv *env, jobject obj,
@@ -5176,13 +5176,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2iv (
JNIEnv *env, jobject obj,
@@ -5205,13 +5205,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2sv (
JNIEnv *env, jobject obj,
@@ -5234,13 +5234,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3dv (
JNIEnv *env, jobject obj,
@@ -5263,13 +5263,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3fv (
JNIEnv *env, jobject obj,
@@ -5292,13 +5292,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3iv (
JNIEnv *env, jobject obj,
@@ -5321,13 +5321,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3sv (
JNIEnv *env, jobject obj,
@@ -5350,13 +5350,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4dv (
JNIEnv *env, jobject obj,
@@ -5379,13 +5379,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4fv (
JNIEnv *env, jobject obj,
@@ -5408,13 +5408,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4iv (
JNIEnv *env, jobject obj,
@@ -5437,13 +5437,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4sv (
JNIEnv *env, jobject obj,
@@ -5466,13 +5466,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectd (
JNIEnv *env, jobject obj,
@@ -5492,13 +5492,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectd ( GLdouble x1 , GLdouble y1 , GLdouble x2 , GLdouble y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectf (
JNIEnv *env, jobject obj,
@@ -5518,13 +5518,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectf ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRecti (
JNIEnv *env, jobject obj,
@@ -5544,13 +5544,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRecti ( GLint x1 , GLint y1 , GLint x2 , GLint y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRects (
JNIEnv *env, jobject obj,
@@ -5570,13 +5570,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRects ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectdv (
JNIEnv *env, jobject obj,
@@ -5610,13 +5610,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectdv ( const GLdouble * v1 , const GLdouble * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectfv (
JNIEnv *env, jobject obj,
@@ -5650,13 +5650,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectfv ( const GLfloat * v1 , const GLfloat * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectiv (
JNIEnv *env, jobject obj,
@@ -5690,13 +5690,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectiv ( const GLint * v1 , const GLint * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectsv (
JNIEnv *env, jobject obj,
@@ -5730,13 +5730,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectsv ( const GLshort * v1 , const GLshort * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -5933,13 +5933,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointer__II_3B (
JNIEnv *env, jobject obj,
@@ -6122,13 +6122,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -6325,13 +6325,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexPointer__II_3B (
JNIEnv *env, jobject obj,
@@ -6514,13 +6514,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -6717,13 +6717,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagPointer__I_3B (
JNIEnv *env, jobject obj,
@@ -6892,13 +6892,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointer ( GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPointerv__I_3_3B (
JNIEnv *env, jobject obj,
@@ -7074,13 +7074,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointerv ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glArrayElement (
JNIEnv *env, jobject obj,
@@ -7094,13 +7094,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElement ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawArrays (
JNIEnv *env, jobject obj,
@@ -7118,13 +7118,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArrays ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawElements__III_3B (
JNIEnv *env, jobject obj,
@@ -7321,13 +7321,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, indices, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawElements ( GLenum mode , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInterleavedArrays__II_3B (
JNIEnv *env, jobject obj,
@@ -7510,13 +7510,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pointer, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInterleavedArrays ( GLenum format , GLsizei stride , const GLvoid * pointer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShadeModel (
JNIEnv *env, jobject obj,
@@ -7530,13 +7530,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShadeModel ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightf (
JNIEnv *env, jobject obj,
@@ -7554,13 +7554,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightf ( GLenum light , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLighti (
JNIEnv *env, jobject obj,
@@ -7578,13 +7578,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLighti ( GLenum light , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightfv (
JNIEnv *env, jobject obj,
@@ -7611,13 +7611,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightfv ( GLenum light , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightiv (
JNIEnv *env, jobject obj,
@@ -7644,13 +7644,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightiv ( GLenum light , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLightfv (
JNIEnv *env, jobject obj,
@@ -7678,13 +7678,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightfv ( GLenum light , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLightiv (
JNIEnv *env, jobject obj,
@@ -7712,13 +7712,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightiv ( GLenum light , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModelf (
JNIEnv *env, jobject obj,
@@ -7734,13 +7734,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModeli (
JNIEnv *env, jobject obj,
@@ -7756,13 +7756,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeli ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModelfv (
JNIEnv *env, jobject obj,
@@ -7787,13 +7787,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModeliv (
JNIEnv *env, jobject obj,
@@ -7818,13 +7818,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeliv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMaterialf (
JNIEnv *env, jobject obj,
@@ -7842,13 +7842,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialf ( GLenum face , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMateriali (
JNIEnv *env, jobject obj,
@@ -7866,13 +7866,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMateriali ( GLenum face , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMaterialfv (
JNIEnv *env, jobject obj,
@@ -7899,13 +7899,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialfv ( GLenum face , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMaterialiv (
JNIEnv *env, jobject obj,
@@ -7932,13 +7932,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialiv ( GLenum face , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMaterialfv (
JNIEnv *env, jobject obj,
@@ -7966,13 +7966,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialfv ( GLenum face , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMaterialiv (
JNIEnv *env, jobject obj,
@@ -8000,13 +8000,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialiv ( GLenum face , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorMaterial (
JNIEnv *env, jobject obj,
@@ -8022,13 +8022,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMaterial ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelZoom (
JNIEnv *env, jobject obj,
@@ -8044,13 +8044,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelZoom ( GLfloat xfactor , GLfloat yfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelStoref (
JNIEnv *env, jobject obj,
@@ -8066,13 +8066,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStoref ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelStorei (
JNIEnv *env, jobject obj,
@@ -8088,13 +8088,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStorei ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransferf (
JNIEnv *env, jobject obj,
@@ -8110,13 +8110,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransferi (
JNIEnv *env, jobject obj,
@@ -8132,13 +8132,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelMapfv (
JNIEnv *env, jobject obj,
@@ -8165,13 +8165,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapfv ( GLenum map , GLint mapsize , const GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelMapuiv (
JNIEnv *env, jobject obj,
@@ -8198,13 +8198,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapuiv ( GLenum map , GLint mapsize , const GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelMapusv (
JNIEnv *env, jobject obj,
@@ -8231,13 +8231,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapusv ( GLenum map , GLint mapsize , const GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelMapfv (
JNIEnv *env, jobject obj,
@@ -8263,13 +8263,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapfv ( GLenum map , GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelMapuiv (
JNIEnv *env, jobject obj,
@@ -8295,13 +8295,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapuiv ( GLenum map , GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelMapusv (
JNIEnv *env, jobject obj,
@@ -8327,13 +8327,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapusv ( GLenum map , GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBitmap (
JNIEnv *env, jobject obj,
@@ -8368,13 +8368,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, bitmap, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBitmap ( GLsizei width , GLsizei height , GLfloat xorig , GLfloat yorig , GLfloat xmove , GLfloat ymove , const GLubyte * bitmap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReadPixels__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -8620,13 +8620,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr6, (isCopiedArray6 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawPixels__IIII_3B (
JNIEnv *env, jobject obj,
@@ -8837,13 +8837,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawPixels ( GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyPixels (
JNIEnv *env, jobject obj,
@@ -8865,13 +8865,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStencilFunc (
JNIEnv *env, jobject obj,
@@ -8889,13 +8889,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilFunc ( GLenum func , GLint ref , GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStencilMask (
JNIEnv *env, jobject obj,
@@ -8909,13 +8909,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStencilOp (
JNIEnv *env, jobject obj,
@@ -8933,13 +8933,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilOp ( GLenum fail , GLenum zfail , GLenum zpass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearStencil (
JNIEnv *env, jobject obj,
@@ -8953,13 +8953,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearStencil ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGend (
JNIEnv *env, jobject obj,
@@ -8977,13 +8977,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGend ( GLenum coord , GLenum pname , GLdouble param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGenf (
JNIEnv *env, jobject obj,
@@ -9001,13 +9001,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenf ( GLenum coord , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGeni (
JNIEnv *env, jobject obj,
@@ -9025,13 +9025,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeni ( GLenum coord , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGendv (
JNIEnv *env, jobject obj,
@@ -9058,13 +9058,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGendv ( GLenum coord , GLenum pname , const GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGenfv (
JNIEnv *env, jobject obj,
@@ -9091,13 +9091,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenfv ( GLenum coord , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGeniv (
JNIEnv *env, jobject obj,
@@ -9124,13 +9124,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeniv ( GLenum coord , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexGendv (
JNIEnv *env, jobject obj,
@@ -9158,13 +9158,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGendv ( GLenum coord , GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexGenfv (
JNIEnv *env, jobject obj,
@@ -9192,13 +9192,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGenfv ( GLenum coord , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexGeniv (
JNIEnv *env, jobject obj,
@@ -9226,13 +9226,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGeniv ( GLenum coord , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnvf (
JNIEnv *env, jobject obj,
@@ -9250,13 +9250,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnvi (
JNIEnv *env, jobject obj,
@@ -9274,13 +9274,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvi ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnvfv (
JNIEnv *env, jobject obj,
@@ -9307,13 +9307,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnviv (
JNIEnv *env, jobject obj,
@@ -9340,13 +9340,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnviv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexEnvfv (
JNIEnv *env, jobject obj,
@@ -9374,13 +9374,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnvfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexEnviv (
JNIEnv *env, jobject obj,
@@ -9408,13 +9408,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnviv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameterf (
JNIEnv *env, jobject obj,
@@ -9432,13 +9432,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameteri (
JNIEnv *env, jobject obj,
@@ -9456,13 +9456,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteri ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameterfv (
JNIEnv *env, jobject obj,
@@ -9489,13 +9489,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameteriv (
JNIEnv *env, jobject obj,
@@ -9522,13 +9522,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexParameterfv (
JNIEnv *env, jobject obj,
@@ -9556,13 +9556,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexParameteriv (
JNIEnv *env, jobject obj,
@@ -9590,13 +9590,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexLevelParameterfv (
JNIEnv *env, jobject obj,
@@ -9626,13 +9626,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameterfv ( GLenum target , GLint level , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexLevelParameteriv (
JNIEnv *env, jobject obj,
@@ -9662,13 +9662,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameteriv ( GLenum target , GLint level , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage1D__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -9921,13 +9921,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage1D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -10194,13 +10194,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage2D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLsizei height , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexImage__IIII_3B (
JNIEnv *env, jobject obj,
@@ -10418,13 +10418,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexImage ( GLenum target , GLint level , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenTextures (
JNIEnv *env, jobject obj,
@@ -10450,13 +10450,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTextures ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteTextures (
JNIEnv *env, jobject obj,
@@ -10481,13 +10481,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTextures ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindTexture (
JNIEnv *env, jobject obj,
@@ -10503,13 +10503,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTexture ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPrioritizeTextures (
JNIEnv *env, jobject obj,
@@ -10545,13 +10545,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, priorities, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTextures ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glAreTexturesResident (
JNIEnv *env, jobject obj,
@@ -10591,13 +10591,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResident ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsTexture (
JNIEnv *env, jobject obj,
@@ -10614,13 +10614,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTexture ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -10859,13 +10859,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -11132,13 +11132,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage1D (
JNIEnv *env, jobject obj,
@@ -11164,13 +11164,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage2D (
JNIEnv *env, jobject obj,
@@ -11198,13 +11198,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage1D (
JNIEnv *env, jobject obj,
@@ -11228,13 +11228,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage2D (
JNIEnv *env, jobject obj,
@@ -11262,13 +11262,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap1d (
JNIEnv *env, jobject obj,
@@ -11301,13 +11301,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint stride , GLint order , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap1f (
JNIEnv *env, jobject obj,
@@ -11340,13 +11340,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint stride , GLint order , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap2d (
JNIEnv *env, jobject obj,
@@ -11387,13 +11387,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint ustride , GLint uorder , GLdouble v1 , GLdouble v2 , GLint vstride , GLint vorder , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap2f (
JNIEnv *env, jobject obj,
@@ -11434,13 +11434,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint ustride , GLint uorder , GLfloat v1 , GLfloat v2 , GLint vstride , GLint vorder , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapdv (
JNIEnv *env, jobject obj,
@@ -11468,13 +11468,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapdv ( GLenum target , GLenum query , GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapfv (
JNIEnv *env, jobject obj,
@@ -11502,13 +11502,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapfv ( GLenum target , GLenum query , GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapiv (
JNIEnv *env, jobject obj,
@@ -11536,13 +11536,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapiv ( GLenum target , GLenum query , GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1d (
JNIEnv *env, jobject obj,
@@ -11556,13 +11556,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1d ( GLdouble u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1f (
JNIEnv *env, jobject obj,
@@ -11576,13 +11576,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1f ( GLfloat u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1dv (
JNIEnv *env, jobject obj,
@@ -11605,13 +11605,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1fv (
JNIEnv *env, jobject obj,
@@ -11634,13 +11634,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2d (
JNIEnv *env, jobject obj,
@@ -11656,13 +11656,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2d ( GLdouble u , GLdouble v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2f (
JNIEnv *env, jobject obj,
@@ -11678,13 +11678,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2f ( GLfloat u , GLfloat v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2dv (
JNIEnv *env, jobject obj,
@@ -11707,13 +11707,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2fv (
JNIEnv *env, jobject obj,
@@ -11736,13 +11736,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid1d (
JNIEnv *env, jobject obj,
@@ -11760,13 +11760,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1d ( GLint un , GLdouble u1 , GLdouble u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid1f (
JNIEnv *env, jobject obj,
@@ -11784,13 +11784,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1f ( GLint un , GLfloat u1 , GLfloat u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid2d (
JNIEnv *env, jobject obj,
@@ -11814,13 +11814,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2d ( GLint un , GLdouble u1 , GLdouble u2 , GLint vn , GLdouble v1 , GLdouble v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid2f (
JNIEnv *env, jobject obj,
@@ -11844,13 +11844,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2f ( GLint un , GLfloat u1 , GLfloat u2 , GLint vn , GLfloat v1 , GLfloat v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalPoint1 (
JNIEnv *env, jobject obj,
@@ -11864,13 +11864,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint1 ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalPoint2 (
JNIEnv *env, jobject obj,
@@ -11886,13 +11886,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint2 ( GLint i , GLint j ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalMesh1 (
JNIEnv *env, jobject obj,
@@ -11910,13 +11910,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh1 ( GLenum mode , GLint i1 , GLint i2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalMesh2 (
JNIEnv *env, jobject obj,
@@ -11938,13 +11938,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh2 ( GLenum mode , GLint i1 , GLint i2 , GLint j1 , GLint j2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogf (
JNIEnv *env, jobject obj,
@@ -11960,13 +11960,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogi (
JNIEnv *env, jobject obj,
@@ -11982,13 +11982,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogfv (
JNIEnv *env, jobject obj,
@@ -12013,13 +12013,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogiv (
JNIEnv *env, jobject obj,
@@ -12044,13 +12044,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogiv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFeedbackBuffer (
JNIEnv *env, jobject obj,
@@ -12078,13 +12078,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, buffer, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFeedbackBuffer ( GLsizei size , GLenum type , GLfloat * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPassThrough (
JNIEnv *env, jobject obj,
@@ -12098,13 +12098,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPassThrough ( GLfloat token ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSelectBuffer (
JNIEnv *env, jobject obj,
@@ -12130,13 +12130,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, buffer, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSelectBuffer ( GLsizei size , GLuint * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInitNames (
JNIEnv *env, jobject obj)
@@ -12148,13 +12148,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInitNames ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadName (
JNIEnv *env, jobject obj,
@@ -12168,13 +12168,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushName (
JNIEnv *env, jobject obj,
@@ -12188,13 +12188,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopName (
JNIEnv *env, jobject obj)
@@ -12206,13 +12206,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopName ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawRangeElements__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -12437,13 +12437,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, indices, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElements ( GLenum mode , GLuint start , GLuint end , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage3D__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -12724,13 +12724,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3D ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage3D__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -13025,13 +13025,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage3D (
JNIEnv *env, jobject obj,
@@ -13061,13 +13061,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTable__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -13292,13 +13292,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, table, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTable ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorSubTable__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -13523,13 +13523,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTable ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameteriv (
JNIEnv *env, jobject obj,
@@ -13556,13 +13556,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameterfv (
JNIEnv *env, jobject obj,
@@ -13589,13 +13589,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorSubTable (
JNIEnv *env, jobject obj,
@@ -13617,13 +13617,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTable ( GLenum target , GLsizei start , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorTable (
JNIEnv *env, jobject obj,
@@ -13645,13 +13645,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTable ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTable__III_3B (
JNIEnv *env, jobject obj,
@@ -13855,13 +13855,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, table, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTable ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterfv (
JNIEnv *env, jobject obj,
@@ -13889,13 +13889,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameteriv (
JNIEnv *env, jobject obj,
@@ -13923,13 +13923,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendEquation (
JNIEnv *env, jobject obj,
@@ -13943,13 +13943,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquation ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendColor (
JNIEnv *env, jobject obj,
@@ -13969,13 +13969,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHistogram (
JNIEnv *env, jobject obj,
@@ -13995,13 +13995,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogram ( GLenum target , GLsizei width , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetHistogram (
JNIEnv *env, jobject obj,
@@ -14015,13 +14015,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogram ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogram__IZII_3B (
JNIEnv *env, jobject obj,
@@ -14239,13 +14239,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogram ( GLenum target , GLboolean reset , GLenum format , GLenum type , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameterfv (
JNIEnv *env, jobject obj,
@@ -14273,13 +14273,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameteriv (
JNIEnv *env, jobject obj,
@@ -14307,13 +14307,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMinmax (
JNIEnv *env, jobject obj,
@@ -14331,13 +14331,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmax ( GLenum target , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetMinmax (
JNIEnv *env, jobject obj,
@@ -14351,13 +14351,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmax ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmax__IZII_3B (
JNIEnv *env, jobject obj,
@@ -14575,13 +14575,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmax ( GLenum target , GLboolean reset , GLenum format , GLenum types , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameterfv (
JNIEnv *env, jobject obj,
@@ -14609,13 +14609,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameteriv (
JNIEnv *env, jobject obj,
@@ -14643,13 +14643,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter1D__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -14874,13 +14874,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, image, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1D ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter2D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -15119,13 +15119,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, image, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterf (
JNIEnv *env, jobject obj,
@@ -15143,13 +15143,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterf ( GLenum target , GLenum pname , GLfloat params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterfv (
JNIEnv *env, jobject obj,
@@ -15176,13 +15176,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameteri (
JNIEnv *env, jobject obj,
@@ -15200,13 +15200,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteri ( GLenum target , GLenum pname , GLint params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameteriv (
JNIEnv *env, jobject obj,
@@ -15233,13 +15233,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter1D (
JNIEnv *env, jobject obj,
@@ -15261,13 +15261,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter2D (
JNIEnv *env, jobject obj,
@@ -15291,13 +15291,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionFilter__III_3B (
JNIEnv *env, jobject obj,
@@ -15501,13 +15501,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, image, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilter ( GLenum target , GLenum format , GLenum type , GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameterfv (
JNIEnv *env, jobject obj,
@@ -15535,13 +15535,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameteriv (
JNIEnv *env, jobject obj,
@@ -15569,13 +15569,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSeparableFilter2D__IIIIII_3B_3B (
JNIEnv *env, jobject obj,
@@ -15891,13 +15891,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, column, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * row , const GLvoid * column ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetSeparableFilter__III_3B_3B_3B (
JNIEnv *env, jobject obj,
@@ -16269,13 +16269,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, span, ptr5, (isCopiedArray5 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilter ( GLenum target , GLenum format , GLenum type , GLvoid * row , GLvoid * column , GLvoid * span ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glActiveTexture (
JNIEnv *env, jobject obj,
@@ -16289,13 +16289,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClientActiveTexture (
JNIEnv *env, jobject obj,
@@ -16309,13 +16309,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -16554,13 +16554,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage2D__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -16813,13 +16813,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage3D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17086,13 +17086,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17331,13 +17331,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17604,13 +17604,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage3D__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17905,13 +17905,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCompressedTexImage__II_3B (
JNIEnv *env, jobject obj,
@@ -18101,13 +18101,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, img, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImage ( GLenum target , GLint lod , GLvoid * img ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1d (
JNIEnv *env, jobject obj,
@@ -18123,13 +18123,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1d ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1dv (
JNIEnv *env, jobject obj,
@@ -18154,13 +18154,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1f (
JNIEnv *env, jobject obj,
@@ -18176,13 +18176,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1f ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1fv (
JNIEnv *env, jobject obj,
@@ -18207,13 +18207,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1i (
JNIEnv *env, jobject obj,
@@ -18229,13 +18229,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1i ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1iv (
JNIEnv *env, jobject obj,
@@ -18260,13 +18260,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1s (
JNIEnv *env, jobject obj,
@@ -18282,13 +18282,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1s ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1sv (
JNIEnv *env, jobject obj,
@@ -18313,13 +18313,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2d (
JNIEnv *env, jobject obj,
@@ -18337,13 +18337,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2d ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2dv (
JNIEnv *env, jobject obj,
@@ -18368,13 +18368,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2f (
JNIEnv *env, jobject obj,
@@ -18392,13 +18392,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2f ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2fv (
JNIEnv *env, jobject obj,
@@ -18423,13 +18423,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2i (
JNIEnv *env, jobject obj,
@@ -18447,13 +18447,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2i ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2iv (
JNIEnv *env, jobject obj,
@@ -18478,13 +18478,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2s (
JNIEnv *env, jobject obj,
@@ -18502,13 +18502,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2s ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2sv (
JNIEnv *env, jobject obj,
@@ -18533,13 +18533,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3d (
JNIEnv *env, jobject obj,
@@ -18559,13 +18559,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3d ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3dv (
JNIEnv *env, jobject obj,
@@ -18590,13 +18590,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3f (
JNIEnv *env, jobject obj,
@@ -18616,13 +18616,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3f ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3fv (
JNIEnv *env, jobject obj,
@@ -18647,13 +18647,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3i (
JNIEnv *env, jobject obj,
@@ -18673,13 +18673,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3i ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3iv (
JNIEnv *env, jobject obj,
@@ -18704,13 +18704,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3s (
JNIEnv *env, jobject obj,
@@ -18730,13 +18730,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3s ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3sv (
JNIEnv *env, jobject obj,
@@ -18761,13 +18761,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4d (
JNIEnv *env, jobject obj,
@@ -18789,13 +18789,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4d ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4dv (
JNIEnv *env, jobject obj,
@@ -18820,13 +18820,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4f (
JNIEnv *env, jobject obj,
@@ -18848,13 +18848,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4f ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4fv (
JNIEnv *env, jobject obj,
@@ -18879,13 +18879,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4i (
JNIEnv *env, jobject obj,
@@ -18907,13 +18907,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4i ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4iv (
JNIEnv *env, jobject obj,
@@ -18938,13 +18938,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4s (
JNIEnv *env, jobject obj,
@@ -18966,13 +18966,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4s ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4sv (
JNIEnv *env, jobject obj,
@@ -18997,13 +18997,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixd (
JNIEnv *env, jobject obj,
@@ -19026,13 +19026,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixf (
JNIEnv *env, jobject obj,
@@ -19055,13 +19055,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixd (
JNIEnv *env, jobject obj,
@@ -19084,13 +19084,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixf (
JNIEnv *env, jobject obj,
@@ -19113,13 +19113,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleCoverage (
JNIEnv *env, jobject obj,
@@ -19135,13 +19135,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverage ( GLclampf value , GLboolean invert ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSamplePass (
JNIEnv *env, jobject obj,
@@ -19155,13 +19155,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePass ( GLenum pass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glActiveTextureARB (
JNIEnv *env, jobject obj,
@@ -19175,13 +19175,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClientActiveTextureARB (
JNIEnv *env, jobject obj,
@@ -19195,13 +19195,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1dARB (
JNIEnv *env, jobject obj,
@@ -19217,13 +19217,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dARB ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1dvARB (
JNIEnv *env, jobject obj,
@@ -19248,13 +19248,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1fARB (
JNIEnv *env, jobject obj,
@@ -19270,13 +19270,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fARB ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1fvARB (
JNIEnv *env, jobject obj,
@@ -19301,13 +19301,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1iARB (
JNIEnv *env, jobject obj,
@@ -19323,13 +19323,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iARB ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1ivARB (
JNIEnv *env, jobject obj,
@@ -19354,13 +19354,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1sARB (
JNIEnv *env, jobject obj,
@@ -19376,13 +19376,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sARB ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1svARB (
JNIEnv *env, jobject obj,
@@ -19407,13 +19407,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2dARB (
JNIEnv *env, jobject obj,
@@ -19431,13 +19431,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dARB ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2dvARB (
JNIEnv *env, jobject obj,
@@ -19462,13 +19462,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2fARB (
JNIEnv *env, jobject obj,
@@ -19486,13 +19486,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fARB ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2fvARB (
JNIEnv *env, jobject obj,
@@ -19517,13 +19517,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2iARB (
JNIEnv *env, jobject obj,
@@ -19541,13 +19541,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iARB ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2ivARB (
JNIEnv *env, jobject obj,
@@ -19572,13 +19572,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2sARB (
JNIEnv *env, jobject obj,
@@ -19596,13 +19596,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sARB ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2svARB (
JNIEnv *env, jobject obj,
@@ -19627,13 +19627,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3dARB (
JNIEnv *env, jobject obj,
@@ -19653,13 +19653,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3dvARB (
JNIEnv *env, jobject obj,
@@ -19684,13 +19684,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3fARB (
JNIEnv *env, jobject obj,
@@ -19710,13 +19710,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3fvARB (
JNIEnv *env, jobject obj,
@@ -19741,13 +19741,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3iARB (
JNIEnv *env, jobject obj,
@@ -19767,13 +19767,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iARB ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3ivARB (
JNIEnv *env, jobject obj,
@@ -19798,13 +19798,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3sARB (
JNIEnv *env, jobject obj,
@@ -19824,13 +19824,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sARB ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3svARB (
JNIEnv *env, jobject obj,
@@ -19855,13 +19855,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4dARB (
JNIEnv *env, jobject obj,
@@ -19883,13 +19883,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4dvARB (
JNIEnv *env, jobject obj,
@@ -19914,13 +19914,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4fARB (
JNIEnv *env, jobject obj,
@@ -19942,13 +19942,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4fvARB (
JNIEnv *env, jobject obj,
@@ -19973,13 +19973,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4iARB (
JNIEnv *env, jobject obj,
@@ -20001,13 +20001,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iARB ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4ivARB (
JNIEnv *env, jobject obj,
@@ -20032,13 +20032,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4sARB (
JNIEnv *env, jobject obj,
@@ -20060,13 +20060,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sARB ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4svARB (
JNIEnv *env, jobject obj,
@@ -20091,13 +20091,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendColorEXT (
JNIEnv *env, jobject obj,
@@ -20117,13 +20117,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColorEXT ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonOffsetEXT (
JNIEnv *env, jobject obj,
@@ -20139,13 +20139,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffsetEXT ( GLfloat factor , GLfloat bias ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage3DEXT__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -20426,13 +20426,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3DEXT ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage3DEXT__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -20727,13 +20727,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage3DEXT (
JNIEnv *env, jobject obj,
@@ -20763,13 +20763,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3DEXT ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenTexturesEXT (
JNIEnv *env, jobject obj,
@@ -20795,13 +20795,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTexturesEXT ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteTexturesEXT (
JNIEnv *env, jobject obj,
@@ -20826,13 +20826,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTexturesEXT ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindTextureEXT (
JNIEnv *env, jobject obj,
@@ -20848,13 +20848,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTextureEXT ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPrioritizeTexturesEXT (
JNIEnv *env, jobject obj,
@@ -20890,13 +20890,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, priorities, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTexturesEXT ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glAreTexturesResidentEXT (
JNIEnv *env, jobject obj,
@@ -20936,13 +20936,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResidentEXT ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsTextureEXT (
JNIEnv *env, jobject obj,
@@ -20959,13 +20959,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTextureEXT ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -21176,13 +21176,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -21379,13 +21379,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -21596,13 +21596,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -21799,13 +21799,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -22016,13 +22016,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagPointerEXT (
JNIEnv *env, jobject obj,
@@ -22049,13 +22049,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerEXT ( GLsizei stride , GLsizei count , const GLboolean * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPointervEXT__I_3_3B (
JNIEnv *env, jobject obj,
@@ -22231,13 +22231,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointervEXT ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glArrayElementEXT (
JNIEnv *env, jobject obj,
@@ -22251,13 +22251,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElementEXT ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawArraysEXT (
JNIEnv *env, jobject obj,
@@ -22275,13 +22275,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArraysEXT ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendEquationEXT (
JNIEnv *env, jobject obj,
@@ -22295,13 +22295,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquationEXT ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfEXT (
JNIEnv *env, jobject obj,
@@ -22317,13 +22317,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfEXT ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -22348,13 +22348,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvEXT ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfSGIS (
JNIEnv *env, jobject obj,
@@ -22370,13 +22370,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfSGIS ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -22401,13 +22401,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvSGIS ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -22632,13 +22632,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, table, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableEXT ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorSubTableEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -22863,13 +22863,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTableEXT ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -23073,13 +23073,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, table, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableEXT ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -23107,13 +23107,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvEXT ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterivEXT (
JNIEnv *env, jobject obj,
@@ -23141,13 +23141,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivEXT ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLockArraysEXT (
JNIEnv *env, jobject obj,
@@ -23163,13 +23163,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLockArraysEXT ( GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glUnlockArraysEXT (
JNIEnv *env, jobject obj)
@@ -23181,13 +23181,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glUnlockArraysEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixfARB (
JNIEnv *env, jobject obj,
@@ -23210,13 +23210,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixdARB (
JNIEnv *env, jobject obj,
@@ -23239,13 +23239,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixfARB (
JNIEnv *env, jobject obj,
@@ -23268,13 +23268,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixdARB (
JNIEnv *env, jobject obj,
@@ -23297,13 +23297,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleCoverageARB (
JNIEnv *env, jobject obj,
@@ -23319,13 +23319,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverageARB ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage3DARB__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -23592,13 +23592,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage2DARB__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -23851,13 +23851,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg7, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage1DARB__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -24096,13 +24096,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1DARB ( GLenum , GLint , GLenum , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage3DARB__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -24397,13 +24397,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg10, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage3DARB ( GLenum , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage2DARB__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -24670,13 +24670,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2DARB ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage1DARB__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -24915,13 +24915,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1DARB ( GLenum , GLint , GLint , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCompressedTexImageARB__II_3B (
JNIEnv *env, jobject obj,
@@ -25111,13 +25111,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImageARB ( GLenum , GLint , void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightbvARB (
JNIEnv *env, jobject obj,
@@ -25142,13 +25142,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightbvARB ( GLint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightsvARB (
JNIEnv *env, jobject obj,
@@ -25173,13 +25173,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightsvARB ( GLint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightivARB (
JNIEnv *env, jobject obj,
@@ -25204,13 +25204,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightivARB ( GLint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightfvARB (
JNIEnv *env, jobject obj,
@@ -25235,13 +25235,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightfvARB ( GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightdvARB (
JNIEnv *env, jobject obj,
@@ -25266,13 +25266,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightdvARB ( GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightubvARB (
JNIEnv *env, jobject obj,
@@ -25297,13 +25297,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightusvARB (
JNIEnv *env, jobject obj,
@@ -25328,13 +25328,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightuivARB (
JNIEnv *env, jobject obj,
@@ -25359,13 +25359,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightPointerARB__III_3B (
JNIEnv *env, jobject obj,
@@ -25562,13 +25562,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexBlendARB (
JNIEnv *env, jobject obj,
@@ -25582,13 +25582,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCurrentPaletteMatrixARB (
JNIEnv *env, jobject obj,
@@ -25602,13 +25602,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCurrentPaletteMatrixARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexubvARB (
JNIEnv *env, jobject obj,
@@ -25633,13 +25633,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexusvARB (
JNIEnv *env, jobject obj,
@@ -25664,13 +25664,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexuivARB (
JNIEnv *env, jobject obj,
@@ -25695,13 +25695,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexPointerARB__III_3B (
JNIEnv *env, jobject obj,
@@ -25898,13 +25898,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexFilterFuncSGIS (
JNIEnv *env, jobject obj,
@@ -25932,13 +25932,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexFilterFuncSGIS ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexFilterFuncSGIS (
JNIEnv *env, jobject obj,
@@ -25967,13 +25967,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexFilterFuncSGIS ( GLenum , GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage1DEXT__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -26212,13 +26212,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1DEXT ( GLenum , GLint , GLint , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage2DEXT__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -26485,13 +26485,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage1DEXT (
JNIEnv *env, jobject obj,
@@ -26517,13 +26517,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage2DEXT (
JNIEnv *env, jobject obj,
@@ -26551,13 +26551,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage1DEXT (
JNIEnv *env, jobject obj,
@@ -26581,13 +26581,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1DEXT ( GLenum , GLint , GLint , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage2DEXT (
JNIEnv *env, jobject obj,
@@ -26615,13 +26615,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramEXT__IZII_3B (
JNIEnv *env, jobject obj,
@@ -26839,13 +26839,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -26873,13 +26873,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameterivEXT (
JNIEnv *env, jobject obj,
@@ -26907,13 +26907,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxEXT__IZII_3B (
JNIEnv *env, jobject obj,
@@ -27131,13 +27131,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -27165,13 +27165,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameterivEXT (
JNIEnv *env, jobject obj,
@@ -27199,13 +27199,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHistogramEXT (
JNIEnv *env, jobject obj,
@@ -27225,13 +27225,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogramEXT ( GLenum , GLsizei , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMinmaxEXT (
JNIEnv *env, jobject obj,
@@ -27249,13 +27249,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmaxEXT ( GLenum , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetHistogramEXT (
JNIEnv *env, jobject obj,
@@ -27269,13 +27269,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogramEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetMinmaxEXT (
JNIEnv *env, jobject obj,
@@ -27289,13 +27289,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmaxEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter1DEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -27520,13 +27520,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg5, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1DEXT ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter2DEXT__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -27765,13 +27765,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterfEXT (
JNIEnv *env, jobject obj,
@@ -27789,13 +27789,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -27822,13 +27822,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameteriEXT (
JNIEnv *env, jobject obj,
@@ -27846,13 +27846,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterivEXT (
JNIEnv *env, jobject obj,
@@ -27879,13 +27879,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter1DEXT (
JNIEnv *env, jobject obj,
@@ -27907,13 +27907,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1DEXT ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter2DEXT (
JNIEnv *env, jobject obj,
@@ -27937,13 +27937,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2DEXT ( GLenum , GLenum , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionFilterEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -28147,13 +28147,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilterEXT ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -28181,13 +28181,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameterivEXT (
JNIEnv *env, jobject obj,
@@ -28215,13 +28215,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetSeparableFilterEXT__III_3B_3B_3B (
JNIEnv *env, jobject obj,
@@ -28593,13 +28593,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg5, ptr5, (isCopiedArray5 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilterEXT ( GLenum , GLenum , GLenum , GLvoid * , GLvoid * , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSeparableFilter2DEXT__IIIIII_3B_3B (
JNIEnv *env, jobject obj,
@@ -28915,13 +28915,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg7, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableSGI__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -29146,13 +29146,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg5, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableSGI ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameterfvSGI (
JNIEnv *env, jobject obj,
@@ -29179,13 +29179,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfvSGI ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameterivSGI (
JNIEnv *env, jobject obj,
@@ -29212,13 +29212,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterivSGI ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorTableSGI (
JNIEnv *env, jobject obj,
@@ -29240,13 +29240,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTableSGI ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableSGI__III_3B (
JNIEnv *env, jobject obj,
@@ -29450,13 +29450,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableSGI ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterfvSGI (
JNIEnv *env, jobject obj,
@@ -29484,13 +29484,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvSGI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterivSGI (
JNIEnv *env, jobject obj,
@@ -29518,13 +29518,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivSGI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenSGIX (
JNIEnv *env, jobject obj,
@@ -29538,13 +29538,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenSGIX ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameteriSGIS (
JNIEnv *env, jobject obj,
@@ -29560,13 +29560,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameteriSGIS ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameterivSGIS (
JNIEnv *env, jobject obj,
@@ -29591,13 +29591,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterivSGIS ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameterfSGIS (
JNIEnv *env, jobject obj,
@@ -29613,13 +29613,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfSGIS ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -29644,13 +29644,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfvSGIS ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelTexGenParameterivSGIS (
JNIEnv *env, jobject obj,
@@ -29676,13 +29676,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterivSGIS ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelTexGenParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -29708,13 +29708,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterfvSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage4DSGIS__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -30009,13 +30009,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg10, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage4DSGIS ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLsizei , GLint , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage4DSGIS__IIIIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -30338,13 +30338,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg12, ptr12, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage4DSGIS ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDetailTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -30371,13 +30371,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDetailTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetDetailTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -30403,13 +30403,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDetailTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSharpenTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -30436,13 +30436,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSharpenTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetSharpenTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -30468,13 +30468,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSharpenTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleMaskSGIS (
JNIEnv *env, jobject obj,
@@ -30490,13 +30490,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskSGIS ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSamplePatternSGIS (
JNIEnv *env, jobject obj,
@@ -30510,13 +30510,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternSGIS ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameterfSGIX (
JNIEnv *env, jobject obj,
@@ -30532,13 +30532,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -30563,13 +30563,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameteriSGIX (
JNIEnv *env, jobject obj,
@@ -30585,13 +30585,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameteriSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -30616,13 +30616,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfARB (
JNIEnv *env, jobject obj,
@@ -30638,13 +30638,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfARB ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfvARB (
JNIEnv *env, jobject obj,
@@ -30669,13 +30669,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvARB ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGetInstrumentsSGIX (
JNIEnv *env, jobject obj)
@@ -30690,13 +30690,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glGetInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInstrumentsBufferSGIX (
JNIEnv *env, jobject obj,
@@ -30722,13 +30722,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInstrumentsBufferSGIX ( GLsizei , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glPollInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -30755,13 +30755,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollInstrumentsSGIX ( GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReadInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -30775,13 +30775,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStartInstrumentsSGIX (
JNIEnv *env, jobject obj)
@@ -30793,13 +30793,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStartInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStopInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -30813,13 +30813,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStopInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFrameZoomSGIX (
JNIEnv *env, jobject obj,
@@ -30833,13 +30833,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrameZoomSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTagSampleBufferSGIX (
JNIEnv *env, jobject obj)
@@ -30851,13 +30851,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTagSampleBufferSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeformationMap3dSGIX (
JNIEnv *env, jobject obj,
@@ -30906,13 +30906,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg13, ptr13, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3dSGIX ( GLenum , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeformationMap3fSGIX (
JNIEnv *env, jobject obj,
@@ -30961,13 +30961,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg13, ptr13, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3fSGIX ( GLenum , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeformSGIX (
JNIEnv *env, jobject obj,
@@ -30981,13 +30981,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadIdentityDeformationMapSGIX (
JNIEnv *env, jobject obj,
@@ -31001,13 +31001,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentityDeformationMapSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReferencePlaneSGIX (
JNIEnv *env, jobject obj,
@@ -31030,13 +31030,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReferencePlaneSGIX ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFlushRasterSGIX (
JNIEnv *env, jobject obj)
@@ -31048,13 +31048,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushRasterSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogFuncSGIS (
JNIEnv *env, jobject obj,
@@ -31079,13 +31079,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogFuncSGIS ( GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFogFuncSGIS (
JNIEnv *env, jobject obj,
@@ -31109,13 +31109,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, (isCopiedArray0 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFogFuncSGIS ( GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameteriHP (
JNIEnv *env, jobject obj,
@@ -31133,13 +31133,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameteriHP ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameterfHP (
JNIEnv *env, jobject obj,
@@ -31157,13 +31157,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfHP ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameterivHP (
JNIEnv *env, jobject obj,
@@ -31190,13 +31190,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterivHP ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameterfvHP (
JNIEnv *env, jobject obj,
@@ -31223,13 +31223,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfvHP ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetImageTransformParameterivHP (
JNIEnv *env, jobject obj,
@@ -31257,13 +31257,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterivHP ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetImageTransformParameterfvHP (
JNIEnv *env, jobject obj,
@@ -31291,13 +31291,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterfvHP ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorSubTableEXT (
JNIEnv *env, jobject obj,
@@ -31319,13 +31319,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTableEXT ( GLenum , GLsizei , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHintPGI (
JNIEnv *env, jobject obj,
@@ -31341,13 +31341,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHintPGI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetListParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -31375,13 +31375,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterfvSGIX ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetListParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -31409,13 +31409,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterivSGIX ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameterfSGIX (
JNIEnv *env, jobject obj,
@@ -31433,13 +31433,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfSGIX ( GLuint , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -31466,13 +31466,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfvSGIX ( GLuint , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameteriSGIX (
JNIEnv *env, jobject obj,
@@ -31490,13 +31490,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameteriSGIX ( GLuint , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -31523,13 +31523,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterivSGIX ( GLuint , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexMaterialEXT (
JNIEnv *env, jobject obj,
@@ -31545,13 +31545,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexFuncEXT (
JNIEnv *env, jobject obj,
@@ -31567,13 +31567,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexFuncEXT ( GLenum , GLclampf ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCullParameterdvEXT (
JNIEnv *env, jobject obj,
@@ -31599,13 +31599,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterdvEXT ( GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCullParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -31631,13 +31631,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterfvEXT ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentColorMaterialSGIX (
JNIEnv *env, jobject obj,
@@ -31653,13 +31653,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentColorMaterialSGIX ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightfSGIX (
JNIEnv *env, jobject obj,
@@ -31677,13 +31677,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightfvSGIX (
JNIEnv *env, jobject obj,
@@ -31710,13 +31710,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightiSGIX (
JNIEnv *env, jobject obj,
@@ -31734,13 +31734,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightivSGIX (
JNIEnv *env, jobject obj,
@@ -31767,13 +31767,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModelfSGIX (
JNIEnv *env, jobject obj,
@@ -31789,13 +31789,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModelfvSGIX (
JNIEnv *env, jobject obj,
@@ -31820,13 +31820,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModeliSGIX (
JNIEnv *env, jobject obj,
@@ -31842,13 +31842,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModeliSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModelivSGIX (
JNIEnv *env, jobject obj,
@@ -31873,13 +31873,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialfSGIX (
JNIEnv *env, jobject obj,
@@ -31897,13 +31897,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialfvSGIX (
JNIEnv *env, jobject obj,
@@ -31930,13 +31930,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialiSGIX (
JNIEnv *env, jobject obj,
@@ -31954,13 +31954,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialivSGIX (
JNIEnv *env, jobject obj,
@@ -31987,13 +31987,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentLightfvSGIX (
JNIEnv *env, jobject obj,
@@ -32021,13 +32021,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentLightivSGIX (
JNIEnv *env, jobject obj,
@@ -32055,13 +32055,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentMaterialfvSGIX (
JNIEnv *env, jobject obj,
@@ -32089,13 +32089,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentMaterialivSGIX (
JNIEnv *env, jobject obj,
@@ -32123,13 +32123,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightEnviSGIX (
JNIEnv *env, jobject obj,
@@ -32145,13 +32145,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightEnviSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawRangeElementsEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -32376,13 +32376,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg5, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElementsEXT ( GLenum , GLuint , GLuint , GLsizei , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glApplyTextureEXT (
JNIEnv *env, jobject obj,
@@ -32396,13 +32396,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glApplyTextureEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureLightEXT (
JNIEnv *env, jobject obj,
@@ -32416,13 +32416,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureLightEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureMaterialEXT (
JNIEnv *env, jobject obj,
@@ -32438,13 +32438,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAsyncMarkerSGIX (
JNIEnv *env, jobject obj,
@@ -32458,13 +32458,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glFinishAsyncSGIX (
JNIEnv *env, jobject obj,
@@ -32491,13 +32491,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glFinishAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glPollAsyncSGIX (
JNIEnv *env, jobject obj,
@@ -32524,13 +32524,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenAsyncMarkersSGIX (
JNIEnv *env, jobject obj,
@@ -32547,13 +32547,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenAsyncMarkersSGIX ( GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteAsyncMarkersSGIX (
JNIEnv *env, jobject obj,
@@ -32569,13 +32569,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteAsyncMarkersSGIX ( GLuint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsAsyncMarkerSGIX (
JNIEnv *env, jobject obj,
@@ -32592,13 +32592,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -32781,13 +32781,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointervINTEL__I_3_3B (
JNIEnv *env, jobject obj,
@@ -32956,13 +32956,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointervINTEL ( GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -33145,13 +33145,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -33334,13 +33334,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameteriEXT (
JNIEnv *env, jobject obj,
@@ -33358,13 +33358,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameterfEXT (
JNIEnv *env, jobject obj,
@@ -33382,13 +33382,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameterivEXT (
JNIEnv *env, jobject obj,
@@ -33415,13 +33415,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -33448,13 +33448,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3bEXT (
JNIEnv *env, jobject obj,
@@ -33472,13 +33472,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3bvEXT (
JNIEnv *env, jobject obj,
@@ -33501,13 +33501,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3dEXT (
JNIEnv *env, jobject obj,
@@ -33525,13 +33525,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3dvEXT (
JNIEnv *env, jobject obj,
@@ -33554,13 +33554,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3fEXT (
JNIEnv *env, jobject obj,
@@ -33578,13 +33578,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3fvEXT (
JNIEnv *env, jobject obj,
@@ -33607,13 +33607,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3iEXT (
JNIEnv *env, jobject obj,
@@ -33631,13 +33631,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3ivEXT (
JNIEnv *env, jobject obj,
@@ -33660,13 +33660,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3sEXT (
JNIEnv *env, jobject obj,
@@ -33684,13 +33684,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3svEXT (
JNIEnv *env, jobject obj,
@@ -33713,13 +33713,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3ubEXT (
JNIEnv *env, jobject obj,
@@ -33737,13 +33737,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubEXT ( GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3ubvEXT (
JNIEnv *env, jobject obj,
@@ -33766,13 +33766,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubvEXT ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3uiEXT (
JNIEnv *env, jobject obj,
@@ -33790,13 +33790,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uiEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3uivEXT (
JNIEnv *env, jobject obj,
@@ -33819,13 +33819,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uivEXT ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3usEXT (
JNIEnv *env, jobject obj,
@@ -33843,13 +33843,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usEXT ( GLushort , GLushort , GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3usvEXT (
JNIEnv *env, jobject obj,
@@ -33872,13 +33872,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usvEXT ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColorPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -34075,13 +34075,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerEXT ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureNormalEXT (
JNIEnv *env, jobject obj,
@@ -34095,13 +34095,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureNormalEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiDrawArraysEXT (
JNIEnv *env, jobject obj,
@@ -34141,13 +34141,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawArraysEXT ( GLenum , GLint * , GLsizei * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiDrawElementsEXT__I_3II_3_3BI (
JNIEnv *env, jobject obj,
@@ -34421,13 +34421,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawElementsEXT ( GLenum , const GLsizei * , GLenum , const GLvoid * * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordfEXT (
JNIEnv *env, jobject obj,
@@ -34441,13 +34441,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordfvEXT (
JNIEnv *env, jobject obj,
@@ -34470,13 +34470,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoorddEXT (
JNIEnv *env, jobject obj,
@@ -34490,13 +34490,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddEXT ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoorddvEXT (
JNIEnv *env, jobject obj,
@@ -34519,13 +34519,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -34708,13 +34708,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3bEXT (
JNIEnv *env, jobject obj,
@@ -34732,13 +34732,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3bvEXT (
JNIEnv *env, jobject obj,
@@ -34761,13 +34761,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3dEXT (
JNIEnv *env, jobject obj,
@@ -34785,13 +34785,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3dvEXT (
JNIEnv *env, jobject obj,
@@ -34814,13 +34814,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3fEXT (
JNIEnv *env, jobject obj,
@@ -34838,13 +34838,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3fvEXT (
JNIEnv *env, jobject obj,
@@ -34867,13 +34867,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3iEXT (
JNIEnv *env, jobject obj,
@@ -34891,13 +34891,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3ivEXT (
JNIEnv *env, jobject obj,
@@ -34920,13 +34920,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3sEXT (
JNIEnv *env, jobject obj,
@@ -34944,13 +34944,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3svEXT (
JNIEnv *env, jobject obj,
@@ -34973,13 +34973,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3bEXT (
JNIEnv *env, jobject obj,
@@ -34997,13 +34997,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3bvEXT (
JNIEnv *env, jobject obj,
@@ -35026,13 +35026,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3dEXT (
JNIEnv *env, jobject obj,
@@ -35050,13 +35050,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3dvEXT (
JNIEnv *env, jobject obj,
@@ -35079,13 +35079,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3fEXT (
JNIEnv *env, jobject obj,
@@ -35103,13 +35103,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3fvEXT (
JNIEnv *env, jobject obj,
@@ -35132,13 +35132,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3iEXT (
JNIEnv *env, jobject obj,
@@ -35156,13 +35156,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3ivEXT (
JNIEnv *env, jobject obj,
@@ -35185,13 +35185,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3sEXT (
JNIEnv *env, jobject obj,
@@ -35209,13 +35209,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3svEXT (
JNIEnv *env, jobject obj,
@@ -35238,13 +35238,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangentPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -35427,13 +35427,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangentPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormalPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -35616,13 +35616,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormalPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinishTextureSUNX (
JNIEnv *env, jobject obj)
@@ -35634,13 +35634,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishTextureSUNX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorbSUN (
JNIEnv *env, jobject obj,
@@ -35654,13 +35654,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorbSUN ( GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorsSUN (
JNIEnv *env, jobject obj,
@@ -35674,13 +35674,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorsSUN ( GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactoriSUN (
JNIEnv *env, jobject obj,
@@ -35694,13 +35694,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoriSUN ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorfSUN (
JNIEnv *env, jobject obj,
@@ -35714,13 +35714,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorfSUN ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactordSUN (
JNIEnv *env, jobject obj,
@@ -35734,13 +35734,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactordSUN ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorubSUN (
JNIEnv *env, jobject obj,
@@ -35754,13 +35754,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorusSUN (
JNIEnv *env, jobject obj,
@@ -35774,13 +35774,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactoruiSUN (
JNIEnv *env, jobject obj,
@@ -35794,13 +35794,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoruiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiSUN (
JNIEnv *env, jobject obj,
@@ -35814,13 +35814,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeusSUN (
JNIEnv *env, jobject obj,
@@ -35834,13 +35834,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeubSUN (
JNIEnv *env, jobject obj,
@@ -35854,13 +35854,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuivSUN (
JNIEnv *env, jobject obj,
@@ -35883,13 +35883,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuivSUN ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeusvSUN (
JNIEnv *env, jobject obj,
@@ -35912,13 +35912,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusvSUN ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeubvSUN (
JNIEnv *env, jobject obj,
@@ -35941,13 +35941,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubvSUN ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodePointerSUN__II_3_3B (
JNIEnv *env, jobject obj,
@@ -36130,13 +36130,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodePointerSUN ( GLenum , GLsizei , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex2fSUN (
JNIEnv *env, jobject obj,
@@ -36160,13 +36160,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex2fvSUN (
JNIEnv *env, jobject obj,
@@ -36200,13 +36200,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36232,13 +36232,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36272,13 +36272,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36302,13 +36302,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36342,13 +36342,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36372,13 +36372,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36412,13 +36412,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36450,13 +36450,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36501,13 +36501,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36529,13 +36529,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36569,13 +36569,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fVertex4fSUN (
JNIEnv *env, jobject obj,
@@ -36603,13 +36603,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fVertex4fvSUN (
JNIEnv *env, jobject obj,
@@ -36643,13 +36643,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36679,13 +36679,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fSUN ( GLfloat , GLfloat , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36730,13 +36730,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fvSUN ( const GLfloat * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36764,13 +36764,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36815,13 +36815,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36849,13 +36849,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36900,13 +36900,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36942,13 +36942,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37004,13 +37004,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fColor4fNormal3fVertex4fSUN (
JNIEnv *env, jobject obj,
@@ -37052,13 +37052,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fColor4fNormal3fVertex4fvSUN (
JNIEnv *env, jobject obj,
@@ -37114,13 +37114,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37140,13 +37140,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37180,13 +37180,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fvSUN ( const GLenum * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37214,13 +37214,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fSUN ( GLenum , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37265,13 +37265,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fvSUN ( const GLenum * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37297,13 +37297,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37348,13 +37348,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37380,13 +37380,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37431,13 +37431,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37471,13 +37471,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37533,13 +37533,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37563,13 +37563,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37614,13 +37614,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37650,13 +37650,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37712,13 +37712,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37756,13 +37756,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37829,13 +37829,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendFuncSeparateEXT (
JNIEnv *env, jobject obj,
@@ -37855,13 +37855,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateEXT ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendFuncSeparateINGR (
JNIEnv *env, jobject obj,
@@ -37881,13 +37881,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateINGR ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexWeightfEXT (
JNIEnv *env, jobject obj,
@@ -37901,13 +37901,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexWeightfvEXT (
JNIEnv *env, jobject obj,
@@ -37930,13 +37930,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexWeightPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -38133,13 +38133,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightPointerEXT ( GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFlushVertexArrayRangeNV (
JNIEnv *env, jobject obj)
@@ -38151,13 +38151,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushVertexArrayRangeNV ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexArrayRangeNV__I_3B (
JNIEnv *env, jobject obj,
@@ -38326,13 +38326,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexArrayRangeNV ( GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameterfvNV (
JNIEnv *env, jobject obj,
@@ -38357,13 +38357,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfvNV ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameterfNV (
JNIEnv *env, jobject obj,
@@ -38379,13 +38379,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfNV ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameterivNV (
JNIEnv *env, jobject obj,
@@ -38410,13 +38410,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterivNV ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameteriNV (
JNIEnv *env, jobject obj,
@@ -38432,13 +38432,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameteriNV ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerInputNV (
JNIEnv *env, jobject obj,
@@ -38462,13 +38462,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerInputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerOutputNV (
JNIEnv *env, jobject obj,
@@ -38500,13 +38500,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerOutputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinalCombinerInputNV (
JNIEnv *env, jobject obj,
@@ -38526,13 +38526,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinalCombinerInputNV ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerInputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -38564,13 +38564,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterfvNV ( GLenum , GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerInputParameterivNV (
JNIEnv *env, jobject obj,
@@ -38602,13 +38602,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterivNV ( GLenum , GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerOutputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -38638,13 +38638,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterfvNV ( GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerOutputParameterivNV (
JNIEnv *env, jobject obj,
@@ -38674,13 +38674,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterivNV ( GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFinalCombinerInputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -38708,13 +38708,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFinalCombinerInputParameterivNV (
JNIEnv *env, jobject obj,
@@ -38742,13 +38742,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiModeDrawArraysIBM (
JNIEnv *env, jobject obj,
@@ -38788,13 +38788,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawArraysIBM ( GLenum , const GLint * , const GLsizei * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiModeDrawElementsIBM___3I_3II_3_3BII (
JNIEnv *env, jobject obj,
@@ -39145,13 +39145,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawElementsIBM ( const GLenum * , const GLsizei * , GLenum , const GLvoid * * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -39362,13 +39362,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColorPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -39579,13 +39579,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagPointerListIBM (
JNIEnv *env, jobject obj,
@@ -39612,13 +39612,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerListIBM ( GLint , const GLboolean * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -39815,13 +39815,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -40018,13 +40018,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -40221,13 +40221,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -40438,13 +40438,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -40655,13 +40655,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTbufferMask3DFX (
JNIEnv *env, jobject obj,
@@ -40675,13 +40675,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTbufferMask3DFX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleMaskEXT (
JNIEnv *env, jobject obj,
@@ -40697,13 +40697,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskEXT ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSamplePatternEXT (
JNIEnv *env, jobject obj,
@@ -40717,13 +40717,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureColorMaskSGIS (
JNIEnv *env, jobject obj,
@@ -40743,13 +40743,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureColorMaskSGIS ( GLboolean , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIglooInterfaceSGIX__I_3B (
JNIEnv *env, jobject obj,
@@ -40918,13 +40918,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIglooInterfaceSGIX ( GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenFencesNV (
JNIEnv *env, jobject obj,
@@ -40950,13 +40950,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenFencesNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteFencesNV (
JNIEnv *env, jobject obj,
@@ -40981,13 +40981,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFencesNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetFenceNV (
JNIEnv *env, jobject obj,
@@ -41003,13 +41003,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFenceNV ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glTestFenceNV (
JNIEnv *env, jobject obj,
@@ -41026,13 +41026,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glTestFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinishFenceNV (
JNIEnv *env, jobject obj,
@@ -41046,13 +41046,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsFenceNV (
JNIEnv *env, jobject obj,
@@ -41069,13 +41069,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFenceivNV (
JNIEnv *env, jobject obj,
@@ -41103,13 +41103,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFenceivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapControlPointsNV__IIIIIIIZ_3B (
JNIEnv *env, jobject obj,
@@ -41376,13 +41376,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLint , GLint , GLboolean , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapParameterivNV (
JNIEnv *env, jobject obj,
@@ -41409,13 +41409,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterivNV ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41442,13 +41442,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapControlPointsNV__IIIIIZ_3B (
JNIEnv *env, jobject obj,
@@ -41694,13 +41694,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, (isCopiedArray6 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLboolean , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapParameterivNV (
JNIEnv *env, jobject obj,
@@ -41728,13 +41728,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41762,13 +41762,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapAttribParameterivNV (
JNIEnv *env, jobject obj,
@@ -41798,13 +41798,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapAttribParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41834,13 +41834,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalMapsNV (
JNIEnv *env, jobject obj,
@@ -41856,13 +41856,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMapsNV ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerStageParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41889,13 +41889,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerStageParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerStageParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41923,13 +41923,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerStageParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindProgramNV (
JNIEnv *env, jobject obj,
@@ -41945,13 +41945,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindProgramNV ( GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteProgramsNV (
JNIEnv *env, jobject obj,
@@ -41976,13 +41976,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glExecuteProgramNV (
JNIEnv *env, jobject obj,
@@ -42009,13 +42009,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glExecuteProgramNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenProgramsNV (
JNIEnv *env, jobject obj,
@@ -42041,13 +42041,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenProgramsNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glAreProgramsResidentNV (
JNIEnv *env, jobject obj,
@@ -42087,13 +42087,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreProgramsResidentNV ( GLsizei , const GLuint * , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRequestResidentProgramsNV (
JNIEnv *env, jobject obj,
@@ -42118,13 +42118,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRequestResidentProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramParameterfvNV (
JNIEnv *env, jobject obj,
@@ -42154,13 +42154,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramParameterdvNV (
JNIEnv *env, jobject obj,
@@ -42190,13 +42190,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterdvNV ( GLenum , GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramivNV (
JNIEnv *env, jobject obj,
@@ -42224,13 +42224,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramStringNV (
JNIEnv *env, jobject obj,
@@ -42258,13 +42258,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramStringNV ( GLuint , GLenum , GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTrackMatrixivNV (
JNIEnv *env, jobject obj,
@@ -42294,13 +42294,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTrackMatrixivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribdvNV (
JNIEnv *env, jobject obj,
@@ -42328,13 +42328,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribdvNV ( GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribfvNV (
JNIEnv *env, jobject obj,
@@ -42362,13 +42362,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribfvNV ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribivNV (
JNIEnv *env, jobject obj,
@@ -42396,13 +42396,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribPointervNV__II_3_3B (
JNIEnv *env, jobject obj,
@@ -42592,13 +42592,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribPointervNV ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsProgramNV (
JNIEnv *env, jobject obj,
@@ -42615,13 +42615,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsProgramNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadProgramNV (
JNIEnv *env, jobject obj,
@@ -42650,13 +42650,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadProgramNV ( GLenum , GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4fNV (
JNIEnv *env, jobject obj,
@@ -42680,13 +42680,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fNV ( GLenum , GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4dNV (
JNIEnv *env, jobject obj,
@@ -42710,13 +42710,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dNV ( GLenum , GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4dvNV (
JNIEnv *env, jobject obj,
@@ -42743,13 +42743,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dvNV ( GLenum , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4fvNV (
JNIEnv *env, jobject obj,
@@ -42776,13 +42776,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fvNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameters4dvNV (
JNIEnv *env, jobject obj,
@@ -42811,13 +42811,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4dvNV ( GLenum , GLuint , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameters4fvNV (
JNIEnv *env, jobject obj,
@@ -42846,13 +42846,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4fvNV ( GLenum , GLuint , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTrackMatrixNV (
JNIEnv *env, jobject obj,
@@ -42872,13 +42872,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTrackMatrixNV ( GLenum , GLuint , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribPointerNV__IIII_3B (
JNIEnv *env, jobject obj,
@@ -43089,13 +43089,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribPointerNV ( GLuint , GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1sNV (
JNIEnv *env, jobject obj,
@@ -43111,13 +43111,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1sNV ( GLuint , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1fNV (
JNIEnv *env, jobject obj,
@@ -43133,13 +43133,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fNV ( GLuint , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1dNV (
JNIEnv *env, jobject obj,
@@ -43155,13 +43155,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dNV ( GLuint , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2sNV (
JNIEnv *env, jobject obj,
@@ -43179,13 +43179,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2sNV ( GLuint , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2fNV (
JNIEnv *env, jobject obj,
@@ -43203,13 +43203,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fNV ( GLuint , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2dNV (
JNIEnv *env, jobject obj,
@@ -43227,13 +43227,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dNV ( GLuint , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3sNV (
JNIEnv *env, jobject obj,
@@ -43253,13 +43253,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3sNV ( GLuint , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3fNV (
JNIEnv *env, jobject obj,
@@ -43279,13 +43279,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fNV ( GLuint , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3dNV (
JNIEnv *env, jobject obj,
@@ -43305,13 +43305,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dNV ( GLuint , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4sNV (
JNIEnv *env, jobject obj,
@@ -43333,13 +43333,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4sNV ( GLuint , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4fNV (
JNIEnv *env, jobject obj,
@@ -43361,13 +43361,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fNV ( GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4dNV (
JNIEnv *env, jobject obj,
@@ -43389,13 +43389,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dNV ( GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4ubNV (
JNIEnv *env, jobject obj,
@@ -43417,13 +43417,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubNV ( GLuint , GLubyte , GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1svNV (
JNIEnv *env, jobject obj,
@@ -43448,13 +43448,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1fvNV (
JNIEnv *env, jobject obj,
@@ -43479,13 +43479,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1dvNV (
JNIEnv *env, jobject obj,
@@ -43510,13 +43510,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2svNV (
JNIEnv *env, jobject obj,
@@ -43541,13 +43541,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2fvNV (
JNIEnv *env, jobject obj,
@@ -43572,13 +43572,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2dvNV (
JNIEnv *env, jobject obj,
@@ -43603,13 +43603,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3svNV (
JNIEnv *env, jobject obj,
@@ -43634,13 +43634,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3fvNV (
JNIEnv *env, jobject obj,
@@ -43665,13 +43665,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3dvNV (
JNIEnv *env, jobject obj,
@@ -43696,13 +43696,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4svNV (
JNIEnv *env, jobject obj,
@@ -43727,13 +43727,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4fvNV (
JNIEnv *env, jobject obj,
@@ -43758,13 +43758,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4dvNV (
JNIEnv *env, jobject obj,
@@ -43789,13 +43789,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4ubvNV (
JNIEnv *env, jobject obj,
@@ -43820,13 +43820,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubvNV ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs1svNV (
JNIEnv *env, jobject obj,
@@ -43853,13 +43853,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs1fvNV (
JNIEnv *env, jobject obj,
@@ -43886,13 +43886,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs1dvNV (
JNIEnv *env, jobject obj,
@@ -43919,13 +43919,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs2svNV (
JNIEnv *env, jobject obj,
@@ -43952,13 +43952,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs2fvNV (
JNIEnv *env, jobject obj,
@@ -43985,13 +43985,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs2dvNV (
JNIEnv *env, jobject obj,
@@ -44018,13 +44018,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs3svNV (
JNIEnv *env, jobject obj,
@@ -44051,13 +44051,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs3fvNV (
JNIEnv *env, jobject obj,
@@ -44084,13 +44084,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs3dvNV (
JNIEnv *env, jobject obj,
@@ -44117,13 +44117,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4svNV (
JNIEnv *env, jobject obj,
@@ -44150,13 +44150,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4fvNV (
JNIEnv *env, jobject obj,
@@ -44183,13 +44183,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4dvNV (
JNIEnv *env, jobject obj,
@@ -44216,13 +44216,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4ubvNV (
JNIEnv *env, jobject obj,
@@ -44249,13 +44249,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4ubvNV ( GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexBumpParameterivATI (
JNIEnv *env, jobject obj,
@@ -44280,13 +44280,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterivATI ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexBumpParameterfvATI (
JNIEnv *env, jobject obj,
@@ -44311,13 +44311,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterfvATI ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexBumpParameterivATI (
JNIEnv *env, jobject obj,
@@ -44343,13 +44343,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterivATI ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexBumpParameterfvATI (
JNIEnv *env, jobject obj,
@@ -44375,13 +44375,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterfvATI ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenFragmentShadersATI (
JNIEnv *env, jobject obj,
@@ -44398,13 +44398,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenFragmentShadersATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindFragmentShaderATI (
JNIEnv *env, jobject obj,
@@ -44418,13 +44418,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteFragmentShaderATI (
JNIEnv *env, jobject obj,
@@ -44438,13 +44438,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBeginFragmentShaderATI (
JNIEnv *env, jobject obj)
@@ -44456,13 +44456,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEndFragmentShaderATI (
JNIEnv *env, jobject obj)
@@ -44474,13 +44474,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPassTexCoordATI (
JNIEnv *env, jobject obj,
@@ -44498,13 +44498,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPassTexCoordATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleMapATI (
JNIEnv *env, jobject obj,
@@ -44522,13 +44522,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMapATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorFragmentOp1ATI (
JNIEnv *env, jobject obj,
@@ -44554,13 +44554,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorFragmentOp2ATI (
JNIEnv *env, jobject obj,
@@ -44592,13 +44592,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorFragmentOp3ATI (
JNIEnv *env, jobject obj,
@@ -44636,13 +44636,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFragmentOp1ATI (
JNIEnv *env, jobject obj,
@@ -44666,13 +44666,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFragmentOp2ATI (
JNIEnv *env, jobject obj,
@@ -44702,13 +44702,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFragmentOp3ATI (
JNIEnv *env, jobject obj,
@@ -44744,13 +44744,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetFragmentShaderConstantATI (
JNIEnv *env, jobject obj,
@@ -44775,13 +44775,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFragmentShaderConstantATI ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPNTrianglesiATI (
JNIEnv *env, jobject obj,
@@ -44797,13 +44797,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesiATI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPNTrianglesfATI (
JNIEnv *env, jobject obj,
@@ -44819,13 +44819,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesfATI ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glNewObjectBufferATI__I_3BI (
JNIEnv *env, jobject obj,
@@ -45029,13 +45029,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glNewObjectBufferATI ( GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsObjectBufferATI (
JNIEnv *env, jobject obj,
@@ -45052,13 +45052,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glUpdateObjectBufferATI__III_3BI (
JNIEnv *env, jobject obj,
@@ -45269,13 +45269,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glUpdateObjectBufferATI ( GLuint , GLuint , GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetObjectBufferfvATI (
JNIEnv *env, jobject obj,
@@ -45303,13 +45303,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetObjectBufferivATI (
JNIEnv *env, jobject obj,
@@ -45337,13 +45337,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteObjectBufferATI (
JNIEnv *env, jobject obj,
@@ -45357,13 +45357,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glArrayObjectATI (
JNIEnv *env, jobject obj,
@@ -45387,13 +45387,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayObjectATI ( GLenum , GLint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetArrayObjectfvATI (
JNIEnv *env, jobject obj,
@@ -45421,13 +45421,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectfvATI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetArrayObjectivATI (
JNIEnv *env, jobject obj,
@@ -45455,13 +45455,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectivATI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantArrayObjectATI (
JNIEnv *env, jobject obj,
@@ -45483,13 +45483,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantArrayObjectATI ( GLuint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantArrayObjectfvATI (
JNIEnv *env, jobject obj,
@@ -45517,13 +45517,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantArrayObjectivATI (
JNIEnv *env, jobject obj,
@@ -45551,13 +45551,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBeginVertexShaderEXT (
JNIEnv *env, jobject obj)
@@ -45569,13 +45569,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEndVertexShaderEXT (
JNIEnv *env, jobject obj)
@@ -45587,13 +45587,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindVertexShaderEXT (
JNIEnv *env, jobject obj,
@@ -45607,13 +45607,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenVertexShadersEXT (
JNIEnv *env, jobject obj,
@@ -45630,13 +45630,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenVertexShadersEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteVertexShaderEXT (
JNIEnv *env, jobject obj,
@@ -45650,13 +45650,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShaderOp1EXT (
JNIEnv *env, jobject obj,
@@ -45674,13 +45674,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp1EXT ( GLenum , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShaderOp2EXT (
JNIEnv *env, jobject obj,
@@ -45700,13 +45700,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp2EXT ( GLenum , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShaderOp3EXT (
JNIEnv *env, jobject obj,
@@ -45728,13 +45728,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp3EXT ( GLenum , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSwizzleEXT (
JNIEnv *env, jobject obj,
@@ -45758,13 +45758,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSwizzleEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWriteMaskEXT (
JNIEnv *env, jobject obj,
@@ -45788,13 +45788,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWriteMaskEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInsertComponentEXT (
JNIEnv *env, jobject obj,
@@ -45812,13 +45812,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInsertComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glExtractComponentEXT (
JNIEnv *env, jobject obj,
@@ -45836,13 +45836,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glExtractComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenSymbolsEXT (
JNIEnv *env, jobject obj,
@@ -45865,13 +45865,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenSymbolsEXT ( GLenum , GLenum , GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetInvariantEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -46054,13 +46054,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetInvariantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetLocalConstantEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -46243,13 +46243,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetLocalConstantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantbvEXT (
JNIEnv *env, jobject obj,
@@ -46274,13 +46274,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantbvEXT ( GLuint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantsvEXT (
JNIEnv *env, jobject obj,
@@ -46305,13 +46305,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantsvEXT ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantivEXT (
JNIEnv *env, jobject obj,
@@ -46336,13 +46336,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantivEXT ( GLuint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantfvEXT (
JNIEnv *env, jobject obj,
@@ -46367,13 +46367,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantfvEXT ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantdvEXT (
JNIEnv *env, jobject obj,
@@ -46398,13 +46398,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantdvEXT ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantubvEXT (
JNIEnv *env, jobject obj,
@@ -46429,13 +46429,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantubvEXT ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantusvEXT (
JNIEnv *env, jobject obj,
@@ -46460,13 +46460,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantusvEXT ( GLuint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantuivEXT (
JNIEnv *env, jobject obj,
@@ -46491,13 +46491,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantuivEXT ( GLuint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -46694,13 +46694,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantPointerEXT ( GLuint , GLenum , GLuint , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnableVariantClientStateEXT (
JNIEnv *env, jobject obj,
@@ -46714,13 +46714,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDisableVariantClientStateEXT (
JNIEnv *env, jobject obj,
@@ -46734,13 +46734,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindLightParameterEXT (
JNIEnv *env, jobject obj,
@@ -46759,13 +46759,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindLightParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindMaterialParameterEXT (
JNIEnv *env, jobject obj,
@@ -46784,13 +46784,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindMaterialParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindTexGenParameterEXT (
JNIEnv *env, jobject obj,
@@ -46811,13 +46811,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTexGenParameterEXT ( GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindTextureUnitParameterEXT (
JNIEnv *env, jobject obj,
@@ -46836,13 +46836,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTextureUnitParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindParameterEXT (
JNIEnv *env, jobject obj,
@@ -46859,13 +46859,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindParameterEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsVariantEnabledEXT (
JNIEnv *env, jobject obj,
@@ -46884,13 +46884,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsVariantEnabledEXT ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -46918,13 +46918,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -46952,13 +46952,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -46986,13 +46986,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantPointervEXT__II_3_3B (
JNIEnv *env, jobject obj,
@@ -47182,13 +47182,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantPointervEXT ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetInvariantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -47216,13 +47216,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetInvariantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -47250,13 +47250,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetInvariantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -47284,13 +47284,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLocalConstantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -47318,13 +47318,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLocalConstantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -47352,13 +47352,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLocalConstantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -47386,13 +47386,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1s (
JNIEnv *env, jobject obj,
@@ -47408,13 +47408,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1s ( GLenum , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1sv (
JNIEnv *env, jobject obj,
@@ -47439,13 +47439,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1i (
JNIEnv *env, jobject obj,
@@ -47461,13 +47461,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1i ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1iv (
JNIEnv *env, jobject obj,
@@ -47492,13 +47492,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1f (
JNIEnv *env, jobject obj,
@@ -47514,13 +47514,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1f ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1fv (
JNIEnv *env, jobject obj,
@@ -47545,13 +47545,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1d (
JNIEnv *env, jobject obj,
@@ -47567,13 +47567,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1d ( GLenum , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1dv (
JNIEnv *env, jobject obj,
@@ -47598,13 +47598,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2s (
JNIEnv *env, jobject obj,
@@ -47622,13 +47622,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2s ( GLenum , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2sv (
JNIEnv *env, jobject obj,
@@ -47653,13 +47653,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2i (
JNIEnv *env, jobject obj,
@@ -47677,13 +47677,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2i ( GLenum , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2iv (
JNIEnv *env, jobject obj,
@@ -47708,13 +47708,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2f (
JNIEnv *env, jobject obj,
@@ -47732,13 +47732,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2f ( GLenum , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2fv (
JNIEnv *env, jobject obj,
@@ -47763,13 +47763,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2d (
JNIEnv *env, jobject obj,
@@ -47787,13 +47787,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2d ( GLenum , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2dv (
JNIEnv *env, jobject obj,
@@ -47818,13 +47818,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3s (
JNIEnv *env, jobject obj,
@@ -47844,13 +47844,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3sv (
JNIEnv *env, jobject obj,
@@ -47875,13 +47875,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3i (
JNIEnv *env, jobject obj,
@@ -47901,13 +47901,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3iv (
JNIEnv *env, jobject obj,
@@ -47932,13 +47932,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3f (
JNIEnv *env, jobject obj,
@@ -47958,13 +47958,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3fv (
JNIEnv *env, jobject obj,
@@ -47989,13 +47989,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3d (
JNIEnv *env, jobject obj,
@@ -48015,13 +48015,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3dv (
JNIEnv *env, jobject obj,
@@ -48046,13 +48046,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4s (
JNIEnv *env, jobject obj,
@@ -48074,13 +48074,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4s ( GLenum , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4sv (
JNIEnv *env, jobject obj,
@@ -48105,13 +48105,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4i (
JNIEnv *env, jobject obj,
@@ -48133,13 +48133,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4i ( GLenum , GLint , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4iv (
JNIEnv *env, jobject obj,
@@ -48164,13 +48164,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4f (
JNIEnv *env, jobject obj,
@@ -48192,13 +48192,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4f ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4fv (
JNIEnv *env, jobject obj,
@@ -48223,13 +48223,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4d (
JNIEnv *env, jobject obj,
@@ -48251,13 +48251,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4d ( GLenum , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4dv (
JNIEnv *env, jobject obj,
@@ -48282,13 +48282,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3b (
JNIEnv *env, jobject obj,
@@ -48308,13 +48308,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3b ( GLenum , GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3bv (
JNIEnv *env, jobject obj,
@@ -48339,13 +48339,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3bv ( GLenum , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3s (
JNIEnv *env, jobject obj,
@@ -48365,13 +48365,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3sv (
JNIEnv *env, jobject obj,
@@ -48396,13 +48396,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3i (
JNIEnv *env, jobject obj,
@@ -48422,13 +48422,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3iv (
JNIEnv *env, jobject obj,
@@ -48453,13 +48453,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3f (
JNIEnv *env, jobject obj,
@@ -48479,13 +48479,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3fv (
JNIEnv *env, jobject obj,
@@ -48510,13 +48510,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3d (
JNIEnv *env, jobject obj,
@@ -48536,13 +48536,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3dv (
JNIEnv *env, jobject obj,
@@ -48567,13 +48567,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClientActiveVertexStream (
JNIEnv *env, jobject obj,
@@ -48587,13 +48587,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveVertexStream ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexBlendEnvi (
JNIEnv *env, jobject obj,
@@ -48609,13 +48609,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvi ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexBlendEnvf (
JNIEnv *env, jobject obj,
@@ -48631,5 +48631,5 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/CNativeCode/OpenGL_JauJNI12nf_funcs.c b/CNativeCode/OpenGL_JauJNI12nf_funcs.c
index fec5dc6..b474628 100755
--- a/CNativeCode/OpenGL_JauJNI12nf_funcs.c
+++ b/CNativeCode/OpenGL_JauJNI12nf_funcs.c
@@ -71,7 +71,7 @@ Java_gl4java_GLFuncJauJNInf_glGetString ( JNIEnv *env, jobject obj,
}
static const char * _gl_lib_vendor_="Jausoft - Sven Goethel Software Development";
-static const char * _gl_lib_version_="2.8.0.8";
+static const char * _gl_lib_version_="2.8.1.0";
JNIEXPORT jstring JNICALL
Java_gl4java_GLFuncJauJNInf_getNativeVendor ( JNIEnv *env, jobject obj )
diff --git a/CNativeCode/OpenGL_JauJNI12tst_funcs.c b/CNativeCode/OpenGL_JauJNI12tst_funcs.c
index 1a84827..79742d4 100755
--- a/CNativeCode/OpenGL_JauJNI12tst_funcs.c
+++ b/CNativeCode/OpenGL_JauJNI12tst_funcs.c
@@ -71,7 +71,7 @@ Java_gl4java_GLFuncJauJNI_glGetString ( JNIEnv *env, jobject obj,
}
static const char * _gl_lib_vendor_="Jausoft - Sven Goethel Software Development";
-static const char * _gl_lib_version_="2.8.0.8";
+static const char * _gl_lib_version_="2.8.1.0";
JNIEXPORT jstring JNICALL
Java_gl4java_GLFuncJauJNI_getNativeVendor ( JNIEnv *env, jobject obj )
@@ -91,13 +91,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
* Reading from file: gl-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvf ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearIndex (
JNIEnv *env, jobject obj,
@@ -111,13 +111,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearIndex ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearColor (
JNIEnv *env, jobject obj,
@@ -137,13 +137,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClear (
JNIEnv *env, jobject obj,
@@ -157,13 +157,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClear ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexMask (
JNIEnv *env, jobject obj,
@@ -177,13 +177,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorMask (
JNIEnv *env, jobject obj,
@@ -203,13 +203,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMask ( GLboolean red , GLboolean green , GLboolean blue , GLboolean alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFunc (
JNIEnv *env, jobject obj,
@@ -225,13 +225,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFunc ( GLenum func , GLclampf ref ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendFunc (
JNIEnv *env, jobject obj,
@@ -247,13 +247,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFunc ( GLenum sfactor , GLenum dfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLogicOp (
JNIEnv *env, jobject obj,
@@ -267,13 +267,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLogicOp ( GLenum opcode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCullFace (
JNIEnv *env, jobject obj,
@@ -287,13 +287,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFrontFace (
JNIEnv *env, jobject obj,
@@ -307,13 +307,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrontFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointSize (
JNIEnv *env, jobject obj,
@@ -327,13 +327,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointSize ( GLfloat size ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLineWidth (
JNIEnv *env, jobject obj,
@@ -347,13 +347,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLineWidth ( GLfloat width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLineStipple (
JNIEnv *env, jobject obj,
@@ -369,13 +369,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLineStipple ( GLint factor , GLushort pattern ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonMode (
JNIEnv *env, jobject obj,
@@ -391,13 +391,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonMode ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonOffset (
JNIEnv *env, jobject obj,
@@ -413,13 +413,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffset ( GLfloat factor , GLfloat units ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonStipple (
JNIEnv *env, jobject obj,
@@ -448,13 +448,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, mask, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonStipple ( const GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPolygonStipple (
JNIEnv *env, jobject obj,
@@ -483,13 +483,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, mask, ptr0, (isCopiedArray0 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPolygonStipple ( GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlag (
JNIEnv *env, jobject obj,
@@ -503,13 +503,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlag ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagv (
JNIEnv *env, jobject obj,
@@ -538,13 +538,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, flag, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagv ( const GLboolean * flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glScissor (
JNIEnv *env, jobject obj,
@@ -564,13 +564,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScissor ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClipPlane (
JNIEnv *env, jobject obj,
@@ -601,13 +601,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, equation, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClipPlane ( GLenum plane , const GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetClipPlane (
JNIEnv *env, jobject obj,
@@ -638,13 +638,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, equation, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetClipPlane ( GLenum plane , GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawBuffer (
JNIEnv *env, jobject obj,
@@ -658,13 +658,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReadBuffer (
JNIEnv *env, jobject obj,
@@ -678,13 +678,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnable (
JNIEnv *env, jobject obj,
@@ -698,13 +698,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDisable (
JNIEnv *env, jobject obj,
@@ -718,13 +718,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsEnabled (
JNIEnv *env, jobject obj,
@@ -741,13 +741,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsEnabled ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnableClientState (
JNIEnv *env, jobject obj,
@@ -761,13 +761,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDisableClientState (
JNIEnv *env, jobject obj,
@@ -781,13 +781,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetBooleanv (
JNIEnv *env, jobject obj,
@@ -818,13 +818,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetBooleanv ( GLenum pname , GLboolean * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetDoublev (
JNIEnv *env, jobject obj,
@@ -855,13 +855,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDoublev ( GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFloatv (
JNIEnv *env, jobject obj,
@@ -892,13 +892,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFloatv ( GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetIntegerv (
JNIEnv *env, jobject obj,
@@ -929,13 +929,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetIntegerv ( GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushAttrib (
JNIEnv *env, jobject obj,
@@ -949,13 +949,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopAttrib (
JNIEnv *env, jobject obj)
@@ -967,13 +967,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushClientAttrib (
JNIEnv *env, jobject obj,
@@ -987,13 +987,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushClientAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopClientAttrib (
JNIEnv *env, jobject obj)
@@ -1005,13 +1005,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopClientAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glRenderMode (
JNIEnv *env, jobject obj,
@@ -1028,13 +1028,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glRenderMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGetError (
JNIEnv *env, jobject obj)
@@ -1049,13 +1049,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLenum glGetError ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinish (
JNIEnv *env, jobject obj)
@@ -1067,13 +1067,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinish ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFlush (
JNIEnv *env, jobject obj)
@@ -1085,13 +1085,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlush ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHint (
JNIEnv *env, jobject obj,
@@ -1107,13 +1107,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHint ( GLenum target , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearDepth (
JNIEnv *env, jobject obj,
@@ -1127,13 +1127,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearDepth ( GLclampd depth ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDepthFunc (
JNIEnv *env, jobject obj,
@@ -1147,13 +1147,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthFunc ( GLenum func ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDepthMask (
JNIEnv *env, jobject obj,
@@ -1167,13 +1167,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthMask ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDepthRange (
JNIEnv *env, jobject obj,
@@ -1189,13 +1189,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthRange ( GLclampd near_val , GLclampd far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearAccum (
JNIEnv *env, jobject obj,
@@ -1215,13 +1215,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearAccum ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAccum (
JNIEnv *env, jobject obj,
@@ -1237,13 +1237,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAccum ( GLenum op , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixMode (
JNIEnv *env, jobject obj,
@@ -1257,13 +1257,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glOrtho (
JNIEnv *env, jobject obj,
@@ -1287,13 +1287,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glOrtho ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFrustum (
JNIEnv *env, jobject obj,
@@ -1317,13 +1317,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrustum ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glViewport (
JNIEnv *env, jobject obj,
@@ -1343,13 +1343,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glViewport ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushMatrix (
JNIEnv *env, jobject obj)
@@ -1361,13 +1361,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopMatrix (
JNIEnv *env, jobject obj)
@@ -1379,13 +1379,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadIdentity (
JNIEnv *env, jobject obj)
@@ -1397,13 +1397,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentity ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadMatrixd (
JNIEnv *env, jobject obj,
@@ -1432,13 +1432,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadMatrixf (
JNIEnv *env, jobject obj,
@@ -1467,13 +1467,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultMatrixd (
JNIEnv *env, jobject obj,
@@ -1502,13 +1502,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultMatrixf (
JNIEnv *env, jobject obj,
@@ -1537,13 +1537,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRotated (
JNIEnv *env, jobject obj,
@@ -1563,13 +1563,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRotated ( GLdouble angle , GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRotatef (
JNIEnv *env, jobject obj,
@@ -1589,13 +1589,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRotatef ( GLfloat angle , GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glScaled (
JNIEnv *env, jobject obj,
@@ -1613,13 +1613,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScaled ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glScalef (
JNIEnv *env, jobject obj,
@@ -1637,13 +1637,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScalef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTranslated (
JNIEnv *env, jobject obj,
@@ -1661,13 +1661,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslated ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTranslatef (
JNIEnv *env, jobject obj,
@@ -1685,13 +1685,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslatef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsList (
JNIEnv *env, jobject obj,
@@ -1708,13 +1708,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteLists (
JNIEnv *env, jobject obj,
@@ -1730,13 +1730,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteLists ( GLuint list , GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenLists (
JNIEnv *env, jobject obj,
@@ -1753,13 +1753,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenLists ( GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNewList (
JNIEnv *env, jobject obj,
@@ -1775,13 +1775,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNewList ( GLuint list , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEndList (
JNIEnv *env, jobject obj)
@@ -1793,13 +1793,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndList ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCallList (
JNIEnv *env, jobject obj,
@@ -1813,13 +1813,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCallList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCallLists__II_3B (
JNIEnv *env, jobject obj,
@@ -2044,13 +2044,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, lists, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCallLists ( GLsizei n , GLenum type , const GLvoid * lists ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListBase (
JNIEnv *env, jobject obj,
@@ -2064,13 +2064,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListBase ( GLuint base ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBegin (
JNIEnv *env, jobject obj,
@@ -2084,13 +2084,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBegin ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnd (
JNIEnv *env, jobject obj)
@@ -2102,13 +2102,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnd ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2d (
JNIEnv *env, jobject obj,
@@ -2124,13 +2124,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2f (
JNIEnv *env, jobject obj,
@@ -2146,13 +2146,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2i (
JNIEnv *env, jobject obj,
@@ -2168,13 +2168,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2s (
JNIEnv *env, jobject obj,
@@ -2190,13 +2190,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3d (
JNIEnv *env, jobject obj,
@@ -2214,13 +2214,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3f (
JNIEnv *env, jobject obj,
@@ -2238,13 +2238,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3i (
JNIEnv *env, jobject obj,
@@ -2262,13 +2262,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3s (
JNIEnv *env, jobject obj,
@@ -2286,13 +2286,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4d (
JNIEnv *env, jobject obj,
@@ -2312,13 +2312,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4f (
JNIEnv *env, jobject obj,
@@ -2338,13 +2338,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4i (
JNIEnv *env, jobject obj,
@@ -2364,13 +2364,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4s (
JNIEnv *env, jobject obj,
@@ -2390,13 +2390,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2dv (
JNIEnv *env, jobject obj,
@@ -2425,13 +2425,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2fv (
JNIEnv *env, jobject obj,
@@ -2460,13 +2460,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2iv (
JNIEnv *env, jobject obj,
@@ -2495,13 +2495,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2sv (
JNIEnv *env, jobject obj,
@@ -2530,13 +2530,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3dv (
JNIEnv *env, jobject obj,
@@ -2565,13 +2565,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3fv (
JNIEnv *env, jobject obj,
@@ -2600,13 +2600,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3iv (
JNIEnv *env, jobject obj,
@@ -2635,13 +2635,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3sv (
JNIEnv *env, jobject obj,
@@ -2670,13 +2670,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4dv (
JNIEnv *env, jobject obj,
@@ -2705,13 +2705,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4fv (
JNIEnv *env, jobject obj,
@@ -2740,13 +2740,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4iv (
JNIEnv *env, jobject obj,
@@ -2775,13 +2775,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4sv (
JNIEnv *env, jobject obj,
@@ -2810,13 +2810,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3b (
JNIEnv *env, jobject obj,
@@ -2834,13 +2834,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3b ( GLbyte nx , GLbyte ny , GLbyte nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3d (
JNIEnv *env, jobject obj,
@@ -2858,13 +2858,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3d ( GLdouble nx , GLdouble ny , GLdouble nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3f (
JNIEnv *env, jobject obj,
@@ -2882,13 +2882,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3f ( GLfloat nx , GLfloat ny , GLfloat nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3i (
JNIEnv *env, jobject obj,
@@ -2906,13 +2906,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3i ( GLint nx , GLint ny , GLint nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3s (
JNIEnv *env, jobject obj,
@@ -2930,13 +2930,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3s ( GLshort nx , GLshort ny , GLshort nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3bv (
JNIEnv *env, jobject obj,
@@ -2965,13 +2965,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3dv (
JNIEnv *env, jobject obj,
@@ -3000,13 +3000,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3fv (
JNIEnv *env, jobject obj,
@@ -3035,13 +3035,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3iv (
JNIEnv *env, jobject obj,
@@ -3070,13 +3070,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3sv (
JNIEnv *env, jobject obj,
@@ -3105,13 +3105,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexd (
JNIEnv *env, jobject obj,
@@ -3125,13 +3125,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexd ( GLdouble c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexf (
JNIEnv *env, jobject obj,
@@ -3145,13 +3145,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexf ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexi (
JNIEnv *env, jobject obj,
@@ -3165,13 +3165,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexi ( GLint c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexs (
JNIEnv *env, jobject obj,
@@ -3185,13 +3185,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexs ( GLshort c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexub (
JNIEnv *env, jobject obj,
@@ -3205,13 +3205,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexub ( GLubyte c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexdv (
JNIEnv *env, jobject obj,
@@ -3240,13 +3240,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexdv ( const GLdouble * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexfv (
JNIEnv *env, jobject obj,
@@ -3275,13 +3275,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexfv ( const GLfloat * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexiv (
JNIEnv *env, jobject obj,
@@ -3310,13 +3310,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexiv ( const GLint * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexsv (
JNIEnv *env, jobject obj,
@@ -3345,13 +3345,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexsv ( const GLshort * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexubv (
JNIEnv *env, jobject obj,
@@ -3380,13 +3380,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexubv ( const GLubyte * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3b (
JNIEnv *env, jobject obj,
@@ -3404,13 +3404,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3b ( GLbyte red , GLbyte green , GLbyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3d (
JNIEnv *env, jobject obj,
@@ -3428,13 +3428,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3d ( GLdouble red , GLdouble green , GLdouble blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3f (
JNIEnv *env, jobject obj,
@@ -3452,13 +3452,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3f ( GLfloat red , GLfloat green , GLfloat blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3i (
JNIEnv *env, jobject obj,
@@ -3476,13 +3476,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3i ( GLint red , GLint green , GLint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3s (
JNIEnv *env, jobject obj,
@@ -3500,13 +3500,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3s ( GLshort red , GLshort green , GLshort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3ub (
JNIEnv *env, jobject obj,
@@ -3524,13 +3524,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ub ( GLubyte red , GLubyte green , GLubyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3ui (
JNIEnv *env, jobject obj,
@@ -3548,13 +3548,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ui ( GLuint red , GLuint green , GLuint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3us (
JNIEnv *env, jobject obj,
@@ -3572,13 +3572,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3us ( GLushort red , GLushort green , GLushort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4b (
JNIEnv *env, jobject obj,
@@ -3598,13 +3598,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4b ( GLbyte red , GLbyte green , GLbyte blue , GLbyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4d (
JNIEnv *env, jobject obj,
@@ -3624,13 +3624,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4d ( GLdouble red , GLdouble green , GLdouble blue , GLdouble alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4f (
JNIEnv *env, jobject obj,
@@ -3650,13 +3650,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4f ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4i (
JNIEnv *env, jobject obj,
@@ -3676,13 +3676,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4i ( GLint red , GLint green , GLint blue , GLint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4s (
JNIEnv *env, jobject obj,
@@ -3702,13 +3702,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4s ( GLshort red , GLshort green , GLshort blue , GLshort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ub (
JNIEnv *env, jobject obj,
@@ -3728,13 +3728,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ub ( GLubyte red , GLubyte green , GLubyte blue , GLubyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ui (
JNIEnv *env, jobject obj,
@@ -3754,13 +3754,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ui ( GLuint red , GLuint green , GLuint blue , GLuint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4us (
JNIEnv *env, jobject obj,
@@ -3780,13 +3780,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4us ( GLushort red , GLushort green , GLushort blue , GLushort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3bv (
JNIEnv *env, jobject obj,
@@ -3815,13 +3815,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3dv (
JNIEnv *env, jobject obj,
@@ -3850,13 +3850,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3fv (
JNIEnv *env, jobject obj,
@@ -3885,13 +3885,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3iv (
JNIEnv *env, jobject obj,
@@ -3920,13 +3920,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3sv (
JNIEnv *env, jobject obj,
@@ -3955,13 +3955,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3ubv (
JNIEnv *env, jobject obj,
@@ -3990,13 +3990,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3uiv (
JNIEnv *env, jobject obj,
@@ -4025,13 +4025,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3usv (
JNIEnv *env, jobject obj,
@@ -4060,13 +4060,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4bv (
JNIEnv *env, jobject obj,
@@ -4095,13 +4095,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4dv (
JNIEnv *env, jobject obj,
@@ -4130,13 +4130,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4fv (
JNIEnv *env, jobject obj,
@@ -4165,13 +4165,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4iv (
JNIEnv *env, jobject obj,
@@ -4200,13 +4200,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4sv (
JNIEnv *env, jobject obj,
@@ -4235,13 +4235,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubv (
JNIEnv *env, jobject obj,
@@ -4270,13 +4270,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4uiv (
JNIEnv *env, jobject obj,
@@ -4305,13 +4305,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4usv (
JNIEnv *env, jobject obj,
@@ -4340,13 +4340,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1d (
JNIEnv *env, jobject obj,
@@ -4360,13 +4360,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1d ( GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1f (
JNIEnv *env, jobject obj,
@@ -4380,13 +4380,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1f ( GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1i (
JNIEnv *env, jobject obj,
@@ -4400,13 +4400,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1i ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1s (
JNIEnv *env, jobject obj,
@@ -4420,13 +4420,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1s ( GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2d (
JNIEnv *env, jobject obj,
@@ -4442,13 +4442,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2d ( GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2f (
JNIEnv *env, jobject obj,
@@ -4464,13 +4464,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2f ( GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2i (
JNIEnv *env, jobject obj,
@@ -4486,13 +4486,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2i ( GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2s (
JNIEnv *env, jobject obj,
@@ -4508,13 +4508,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2s ( GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3d (
JNIEnv *env, jobject obj,
@@ -4532,13 +4532,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3d ( GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3f (
JNIEnv *env, jobject obj,
@@ -4556,13 +4556,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3f ( GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3i (
JNIEnv *env, jobject obj,
@@ -4580,13 +4580,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3i ( GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3s (
JNIEnv *env, jobject obj,
@@ -4604,13 +4604,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3s ( GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4d (
JNIEnv *env, jobject obj,
@@ -4630,13 +4630,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4d ( GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4f (
JNIEnv *env, jobject obj,
@@ -4656,13 +4656,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4f ( GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4i (
JNIEnv *env, jobject obj,
@@ -4682,13 +4682,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4i ( GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4s (
JNIEnv *env, jobject obj,
@@ -4708,13 +4708,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4s ( GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1dv (
JNIEnv *env, jobject obj,
@@ -4743,13 +4743,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1fv (
JNIEnv *env, jobject obj,
@@ -4778,13 +4778,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1iv (
JNIEnv *env, jobject obj,
@@ -4813,13 +4813,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1sv (
JNIEnv *env, jobject obj,
@@ -4848,13 +4848,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2dv (
JNIEnv *env, jobject obj,
@@ -4883,13 +4883,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fv (
JNIEnv *env, jobject obj,
@@ -4918,13 +4918,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2iv (
JNIEnv *env, jobject obj,
@@ -4953,13 +4953,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2sv (
JNIEnv *env, jobject obj,
@@ -4988,13 +4988,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3dv (
JNIEnv *env, jobject obj,
@@ -5023,13 +5023,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3fv (
JNIEnv *env, jobject obj,
@@ -5058,13 +5058,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3iv (
JNIEnv *env, jobject obj,
@@ -5093,13 +5093,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3sv (
JNIEnv *env, jobject obj,
@@ -5128,13 +5128,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4dv (
JNIEnv *env, jobject obj,
@@ -5163,13 +5163,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fv (
JNIEnv *env, jobject obj,
@@ -5198,13 +5198,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4iv (
JNIEnv *env, jobject obj,
@@ -5233,13 +5233,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4sv (
JNIEnv *env, jobject obj,
@@ -5268,13 +5268,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2d (
JNIEnv *env, jobject obj,
@@ -5290,13 +5290,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2f (
JNIEnv *env, jobject obj,
@@ -5312,13 +5312,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2i (
JNIEnv *env, jobject obj,
@@ -5334,13 +5334,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2s (
JNIEnv *env, jobject obj,
@@ -5356,13 +5356,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3d (
JNIEnv *env, jobject obj,
@@ -5380,13 +5380,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3f (
JNIEnv *env, jobject obj,
@@ -5404,13 +5404,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3i (
JNIEnv *env, jobject obj,
@@ -5428,13 +5428,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3s (
JNIEnv *env, jobject obj,
@@ -5452,13 +5452,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4d (
JNIEnv *env, jobject obj,
@@ -5478,13 +5478,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4f (
JNIEnv *env, jobject obj,
@@ -5504,13 +5504,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4i (
JNIEnv *env, jobject obj,
@@ -5530,13 +5530,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4s (
JNIEnv *env, jobject obj,
@@ -5556,13 +5556,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2dv (
JNIEnv *env, jobject obj,
@@ -5591,13 +5591,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2fv (
JNIEnv *env, jobject obj,
@@ -5626,13 +5626,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2iv (
JNIEnv *env, jobject obj,
@@ -5661,13 +5661,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2sv (
JNIEnv *env, jobject obj,
@@ -5696,13 +5696,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3dv (
JNIEnv *env, jobject obj,
@@ -5731,13 +5731,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3fv (
JNIEnv *env, jobject obj,
@@ -5766,13 +5766,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3iv (
JNIEnv *env, jobject obj,
@@ -5801,13 +5801,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3sv (
JNIEnv *env, jobject obj,
@@ -5836,13 +5836,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4dv (
JNIEnv *env, jobject obj,
@@ -5871,13 +5871,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4fv (
JNIEnv *env, jobject obj,
@@ -5906,13 +5906,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4iv (
JNIEnv *env, jobject obj,
@@ -5941,13 +5941,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4sv (
JNIEnv *env, jobject obj,
@@ -5976,13 +5976,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectd (
JNIEnv *env, jobject obj,
@@ -6002,13 +6002,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectd ( GLdouble x1 , GLdouble y1 , GLdouble x2 , GLdouble y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectf (
JNIEnv *env, jobject obj,
@@ -6028,13 +6028,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectf ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRecti (
JNIEnv *env, jobject obj,
@@ -6054,13 +6054,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRecti ( GLint x1 , GLint y1 , GLint x2 , GLint y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRects (
JNIEnv *env, jobject obj,
@@ -6080,13 +6080,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRects ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectdv (
JNIEnv *env, jobject obj,
@@ -6132,13 +6132,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectdv ( const GLdouble * v1 , const GLdouble * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectfv (
JNIEnv *env, jobject obj,
@@ -6184,13 +6184,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectfv ( const GLfloat * v1 , const GLfloat * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectiv (
JNIEnv *env, jobject obj,
@@ -6236,13 +6236,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectiv ( const GLint * v1 , const GLint * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectsv (
JNIEnv *env, jobject obj,
@@ -6288,13 +6288,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectsv ( const GLshort * v1 , const GLshort * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -6533,13 +6533,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointer__II_3B (
JNIEnv *env, jobject obj,
@@ -6764,13 +6764,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -7009,13 +7009,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexPointer__II_3B (
JNIEnv *env, jobject obj,
@@ -7240,13 +7240,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -7485,13 +7485,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagPointer__I_3B (
JNIEnv *env, jobject obj,
@@ -7702,13 +7702,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointer ( GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPointerv__I_3_3B (
JNIEnv *env, jobject obj,
@@ -7919,13 +7919,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointerv ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glArrayElement (
JNIEnv *env, jobject obj,
@@ -7939,13 +7939,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElement ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawArrays (
JNIEnv *env, jobject obj,
@@ -7963,13 +7963,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArrays ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawElements__III_3B (
JNIEnv *env, jobject obj,
@@ -8208,13 +8208,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, indices, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawElements ( GLenum mode , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInterleavedArrays__II_3B (
JNIEnv *env, jobject obj,
@@ -8439,13 +8439,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pointer, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInterleavedArrays ( GLenum format , GLsizei stride , const GLvoid * pointer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShadeModel (
JNIEnv *env, jobject obj,
@@ -8459,13 +8459,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShadeModel ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightf (
JNIEnv *env, jobject obj,
@@ -8483,13 +8483,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightf ( GLenum light , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLighti (
JNIEnv *env, jobject obj,
@@ -8507,13 +8507,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLighti ( GLenum light , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightfv (
JNIEnv *env, jobject obj,
@@ -8546,13 +8546,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightfv ( GLenum light , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightiv (
JNIEnv *env, jobject obj,
@@ -8585,13 +8585,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightiv ( GLenum light , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLightfv (
JNIEnv *env, jobject obj,
@@ -8624,13 +8624,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightfv ( GLenum light , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLightiv (
JNIEnv *env, jobject obj,
@@ -8663,13 +8663,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightiv ( GLenum light , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModelf (
JNIEnv *env, jobject obj,
@@ -8685,13 +8685,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModeli (
JNIEnv *env, jobject obj,
@@ -8707,13 +8707,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeli ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModelfv (
JNIEnv *env, jobject obj,
@@ -8744,13 +8744,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModeliv (
JNIEnv *env, jobject obj,
@@ -8781,13 +8781,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeliv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMaterialf (
JNIEnv *env, jobject obj,
@@ -8805,13 +8805,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialf ( GLenum face , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMateriali (
JNIEnv *env, jobject obj,
@@ -8829,13 +8829,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMateriali ( GLenum face , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMaterialfv (
JNIEnv *env, jobject obj,
@@ -8868,13 +8868,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialfv ( GLenum face , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMaterialiv (
JNIEnv *env, jobject obj,
@@ -8907,13 +8907,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialiv ( GLenum face , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMaterialfv (
JNIEnv *env, jobject obj,
@@ -8946,13 +8946,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialfv ( GLenum face , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMaterialiv (
JNIEnv *env, jobject obj,
@@ -8985,13 +8985,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialiv ( GLenum face , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorMaterial (
JNIEnv *env, jobject obj,
@@ -9007,13 +9007,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMaterial ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelZoom (
JNIEnv *env, jobject obj,
@@ -9029,13 +9029,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelZoom ( GLfloat xfactor , GLfloat yfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelStoref (
JNIEnv *env, jobject obj,
@@ -9051,13 +9051,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStoref ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelStorei (
JNIEnv *env, jobject obj,
@@ -9073,13 +9073,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStorei ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransferf (
JNIEnv *env, jobject obj,
@@ -9095,13 +9095,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransferi (
JNIEnv *env, jobject obj,
@@ -9117,13 +9117,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelMapfv (
JNIEnv *env, jobject obj,
@@ -9156,13 +9156,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapfv ( GLenum map , GLint mapsize , const GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelMapuiv (
JNIEnv *env, jobject obj,
@@ -9195,13 +9195,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapuiv ( GLenum map , GLint mapsize , const GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelMapusv (
JNIEnv *env, jobject obj,
@@ -9234,13 +9234,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapusv ( GLenum map , GLint mapsize , const GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelMapfv (
JNIEnv *env, jobject obj,
@@ -9271,13 +9271,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapfv ( GLenum map , GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelMapuiv (
JNIEnv *env, jobject obj,
@@ -9308,13 +9308,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapuiv ( GLenum map , GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelMapusv (
JNIEnv *env, jobject obj,
@@ -9345,13 +9345,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapusv ( GLenum map , GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBitmap (
JNIEnv *env, jobject obj,
@@ -9392,13 +9392,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, bitmap, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBitmap ( GLsizei width , GLsizei height , GLfloat xorig , GLfloat yorig , GLfloat xmove , GLfloat ymove , const GLubyte * bitmap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReadPixels__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -9679,13 +9679,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr6, (isCopiedArray6 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawPixels__IIII_3B (
JNIEnv *env, jobject obj,
@@ -9938,13 +9938,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawPixels ( GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyPixels (
JNIEnv *env, jobject obj,
@@ -9966,13 +9966,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStencilFunc (
JNIEnv *env, jobject obj,
@@ -9990,13 +9990,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilFunc ( GLenum func , GLint ref , GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStencilMask (
JNIEnv *env, jobject obj,
@@ -10010,13 +10010,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStencilOp (
JNIEnv *env, jobject obj,
@@ -10034,13 +10034,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilOp ( GLenum fail , GLenum zfail , GLenum zpass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearStencil (
JNIEnv *env, jobject obj,
@@ -10054,13 +10054,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearStencil ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGend (
JNIEnv *env, jobject obj,
@@ -10078,13 +10078,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGend ( GLenum coord , GLenum pname , GLdouble param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGenf (
JNIEnv *env, jobject obj,
@@ -10102,13 +10102,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenf ( GLenum coord , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGeni (
JNIEnv *env, jobject obj,
@@ -10126,13 +10126,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeni ( GLenum coord , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGendv (
JNIEnv *env, jobject obj,
@@ -10165,13 +10165,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGendv ( GLenum coord , GLenum pname , const GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGenfv (
JNIEnv *env, jobject obj,
@@ -10204,13 +10204,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenfv ( GLenum coord , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGeniv (
JNIEnv *env, jobject obj,
@@ -10243,13 +10243,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeniv ( GLenum coord , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexGendv (
JNIEnv *env, jobject obj,
@@ -10282,13 +10282,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGendv ( GLenum coord , GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexGenfv (
JNIEnv *env, jobject obj,
@@ -10321,13 +10321,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGenfv ( GLenum coord , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexGeniv (
JNIEnv *env, jobject obj,
@@ -10360,13 +10360,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGeniv ( GLenum coord , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnvf (
JNIEnv *env, jobject obj,
@@ -10384,13 +10384,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnvi (
JNIEnv *env, jobject obj,
@@ -10408,13 +10408,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvi ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnvfv (
JNIEnv *env, jobject obj,
@@ -10447,13 +10447,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnviv (
JNIEnv *env, jobject obj,
@@ -10486,13 +10486,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnviv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexEnvfv (
JNIEnv *env, jobject obj,
@@ -10525,13 +10525,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnvfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexEnviv (
JNIEnv *env, jobject obj,
@@ -10564,13 +10564,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnviv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameterf (
JNIEnv *env, jobject obj,
@@ -10588,13 +10588,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameteri (
JNIEnv *env, jobject obj,
@@ -10612,13 +10612,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteri ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameterfv (
JNIEnv *env, jobject obj,
@@ -10651,13 +10651,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameteriv (
JNIEnv *env, jobject obj,
@@ -10690,13 +10690,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexParameterfv (
JNIEnv *env, jobject obj,
@@ -10729,13 +10729,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexParameteriv (
JNIEnv *env, jobject obj,
@@ -10768,13 +10768,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexLevelParameterfv (
JNIEnv *env, jobject obj,
@@ -10809,13 +10809,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameterfv ( GLenum target , GLint level , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexLevelParameteriv (
JNIEnv *env, jobject obj,
@@ -10850,13 +10850,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameteriv ( GLenum target , GLint level , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage1D__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -11151,13 +11151,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage1D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -11466,13 +11466,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage2D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLsizei height , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexImage__IIII_3B (
JNIEnv *env, jobject obj,
@@ -11725,13 +11725,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexImage ( GLenum target , GLint level , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenTextures (
JNIEnv *env, jobject obj,
@@ -11762,13 +11762,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTextures ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteTextures (
JNIEnv *env, jobject obj,
@@ -11799,13 +11799,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTextures ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindTexture (
JNIEnv *env, jobject obj,
@@ -11821,13 +11821,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTexture ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPrioritizeTextures (
JNIEnv *env, jobject obj,
@@ -11875,13 +11875,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, priorities, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTextures ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glAreTexturesResident (
JNIEnv *env, jobject obj,
@@ -11932,13 +11932,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResident ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsTexture (
JNIEnv *env, jobject obj,
@@ -11955,13 +11955,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTexture ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -12242,13 +12242,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -12557,13 +12557,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage1D (
JNIEnv *env, jobject obj,
@@ -12589,13 +12589,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage2D (
JNIEnv *env, jobject obj,
@@ -12623,13 +12623,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage1D (
JNIEnv *env, jobject obj,
@@ -12653,13 +12653,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage2D (
JNIEnv *env, jobject obj,
@@ -12687,13 +12687,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap1d (
JNIEnv *env, jobject obj,
@@ -12732,13 +12732,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint stride , GLint order , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap1f (
JNIEnv *env, jobject obj,
@@ -12777,13 +12777,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint stride , GLint order , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap2d (
JNIEnv *env, jobject obj,
@@ -12830,13 +12830,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint ustride , GLint uorder , GLdouble v1 , GLdouble v2 , GLint vstride , GLint vorder , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap2f (
JNIEnv *env, jobject obj,
@@ -12883,13 +12883,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint ustride , GLint uorder , GLfloat v1 , GLfloat v2 , GLint vstride , GLint vorder , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapdv (
JNIEnv *env, jobject obj,
@@ -12922,13 +12922,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapdv ( GLenum target , GLenum query , GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapfv (
JNIEnv *env, jobject obj,
@@ -12961,13 +12961,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapfv ( GLenum target , GLenum query , GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapiv (
JNIEnv *env, jobject obj,
@@ -13000,13 +13000,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapiv ( GLenum target , GLenum query , GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1d (
JNIEnv *env, jobject obj,
@@ -13020,13 +13020,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1d ( GLdouble u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1f (
JNIEnv *env, jobject obj,
@@ -13040,13 +13040,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1f ( GLfloat u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1dv (
JNIEnv *env, jobject obj,
@@ -13075,13 +13075,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1fv (
JNIEnv *env, jobject obj,
@@ -13110,13 +13110,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2d (
JNIEnv *env, jobject obj,
@@ -13132,13 +13132,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2d ( GLdouble u , GLdouble v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2f (
JNIEnv *env, jobject obj,
@@ -13154,13 +13154,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2f ( GLfloat u , GLfloat v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2dv (
JNIEnv *env, jobject obj,
@@ -13189,13 +13189,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2fv (
JNIEnv *env, jobject obj,
@@ -13224,13 +13224,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid1d (
JNIEnv *env, jobject obj,
@@ -13248,13 +13248,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1d ( GLint un , GLdouble u1 , GLdouble u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid1f (
JNIEnv *env, jobject obj,
@@ -13272,13 +13272,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1f ( GLint un , GLfloat u1 , GLfloat u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid2d (
JNIEnv *env, jobject obj,
@@ -13302,13 +13302,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2d ( GLint un , GLdouble u1 , GLdouble u2 , GLint vn , GLdouble v1 , GLdouble v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid2f (
JNIEnv *env, jobject obj,
@@ -13332,13 +13332,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2f ( GLint un , GLfloat u1 , GLfloat u2 , GLint vn , GLfloat v1 , GLfloat v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalPoint1 (
JNIEnv *env, jobject obj,
@@ -13352,13 +13352,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint1 ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalPoint2 (
JNIEnv *env, jobject obj,
@@ -13374,13 +13374,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint2 ( GLint i , GLint j ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalMesh1 (
JNIEnv *env, jobject obj,
@@ -13398,13 +13398,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh1 ( GLenum mode , GLint i1 , GLint i2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalMesh2 (
JNIEnv *env, jobject obj,
@@ -13426,13 +13426,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh2 ( GLenum mode , GLint i1 , GLint i2 , GLint j1 , GLint j2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogf (
JNIEnv *env, jobject obj,
@@ -13448,13 +13448,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogi (
JNIEnv *env, jobject obj,
@@ -13470,13 +13470,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogfv (
JNIEnv *env, jobject obj,
@@ -13507,13 +13507,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogiv (
JNIEnv *env, jobject obj,
@@ -13544,13 +13544,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogiv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFeedbackBuffer (
JNIEnv *env, jobject obj,
@@ -13583,13 +13583,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, buffer, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFeedbackBuffer ( GLsizei size , GLenum type , GLfloat * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPassThrough (
JNIEnv *env, jobject obj,
@@ -13603,13 +13603,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPassThrough ( GLfloat token ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSelectBuffer (
JNIEnv *env, jobject obj,
@@ -13640,13 +13640,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, buffer, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSelectBuffer ( GLsizei size , GLuint * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInitNames (
JNIEnv *env, jobject obj)
@@ -13658,13 +13658,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInitNames ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadName (
JNIEnv *env, jobject obj,
@@ -13678,13 +13678,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushName (
JNIEnv *env, jobject obj,
@@ -13698,13 +13698,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopName (
JNIEnv *env, jobject obj)
@@ -13716,13 +13716,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopName ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawRangeElements__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -13989,13 +13989,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, indices, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElements ( GLenum mode , GLuint start , GLuint end , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage3D__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -14318,13 +14318,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3D ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage3D__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -14661,13 +14661,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage3D (
JNIEnv *env, jobject obj,
@@ -14697,13 +14697,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTable__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -14970,13 +14970,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, table, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTable ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorSubTable__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -15243,13 +15243,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTable ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameteriv (
JNIEnv *env, jobject obj,
@@ -15282,13 +15282,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameterfv (
JNIEnv *env, jobject obj,
@@ -15321,13 +15321,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorSubTable (
JNIEnv *env, jobject obj,
@@ -15349,13 +15349,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTable ( GLenum target , GLsizei start , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorTable (
JNIEnv *env, jobject obj,
@@ -15377,13 +15377,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTable ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTable__III_3B (
JNIEnv *env, jobject obj,
@@ -15622,13 +15622,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, table, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTable ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterfv (
JNIEnv *env, jobject obj,
@@ -15661,13 +15661,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameteriv (
JNIEnv *env, jobject obj,
@@ -15700,13 +15700,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendEquation (
JNIEnv *env, jobject obj,
@@ -15720,13 +15720,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquation ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendColor (
JNIEnv *env, jobject obj,
@@ -15746,13 +15746,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHistogram (
JNIEnv *env, jobject obj,
@@ -15772,13 +15772,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogram ( GLenum target , GLsizei width , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetHistogram (
JNIEnv *env, jobject obj,
@@ -15792,13 +15792,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogram ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogram__IZII_3B (
JNIEnv *env, jobject obj,
@@ -16051,13 +16051,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogram ( GLenum target , GLboolean reset , GLenum format , GLenum type , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameterfv (
JNIEnv *env, jobject obj,
@@ -16090,13 +16090,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameteriv (
JNIEnv *env, jobject obj,
@@ -16129,13 +16129,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMinmax (
JNIEnv *env, jobject obj,
@@ -16153,13 +16153,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmax ( GLenum target , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetMinmax (
JNIEnv *env, jobject obj,
@@ -16173,13 +16173,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmax ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmax__IZII_3B (
JNIEnv *env, jobject obj,
@@ -16432,13 +16432,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmax ( GLenum target , GLboolean reset , GLenum format , GLenum types , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameterfv (
JNIEnv *env, jobject obj,
@@ -16471,13 +16471,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameteriv (
JNIEnv *env, jobject obj,
@@ -16510,13 +16510,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter1D__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -16783,13 +16783,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, image, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1D ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter2D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17070,13 +17070,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, image, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterf (
JNIEnv *env, jobject obj,
@@ -17094,13 +17094,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterf ( GLenum target , GLenum pname , GLfloat params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterfv (
JNIEnv *env, jobject obj,
@@ -17133,13 +17133,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameteri (
JNIEnv *env, jobject obj,
@@ -17157,13 +17157,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteri ( GLenum target , GLenum pname , GLint params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameteriv (
JNIEnv *env, jobject obj,
@@ -17196,13 +17196,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter1D (
JNIEnv *env, jobject obj,
@@ -17224,13 +17224,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter2D (
JNIEnv *env, jobject obj,
@@ -17254,13 +17254,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionFilter__III_3B (
JNIEnv *env, jobject obj,
@@ -17499,13 +17499,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, image, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilter ( GLenum target , GLenum format , GLenum type , GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameterfv (
JNIEnv *env, jobject obj,
@@ -17538,13 +17538,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameteriv (
JNIEnv *env, jobject obj,
@@ -17577,13 +17577,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSeparableFilter2D__IIIIII_3B_3B (
JNIEnv *env, jobject obj,
@@ -17983,13 +17983,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, column, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * row , const GLvoid * column ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetSeparableFilter__III_3B_3B_3B (
JNIEnv *env, jobject obj,
@@ -18466,13 +18466,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, span, ptr5, (isCopiedArray5 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilter ( GLenum target , GLenum format , GLenum type , GLvoid * row , GLvoid * column , GLvoid * span ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glActiveTexture (
JNIEnv *env, jobject obj,
@@ -18486,13 +18486,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClientActiveTexture (
JNIEnv *env, jobject obj,
@@ -18506,13 +18506,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -18793,13 +18793,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage2D__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -19094,13 +19094,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage3D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -19409,13 +19409,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -19696,13 +19696,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -20011,13 +20011,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage3D__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -20354,13 +20354,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCompressedTexImage__II_3B (
JNIEnv *env, jobject obj,
@@ -20585,13 +20585,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, img, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImage ( GLenum target , GLint lod , GLvoid * img ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1d (
JNIEnv *env, jobject obj,
@@ -20607,13 +20607,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1d ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1dv (
JNIEnv *env, jobject obj,
@@ -20644,13 +20644,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1f (
JNIEnv *env, jobject obj,
@@ -20666,13 +20666,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1f ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1fv (
JNIEnv *env, jobject obj,
@@ -20703,13 +20703,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1i (
JNIEnv *env, jobject obj,
@@ -20725,13 +20725,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1i ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1iv (
JNIEnv *env, jobject obj,
@@ -20762,13 +20762,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1s (
JNIEnv *env, jobject obj,
@@ -20784,13 +20784,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1s ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1sv (
JNIEnv *env, jobject obj,
@@ -20821,13 +20821,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2d (
JNIEnv *env, jobject obj,
@@ -20845,13 +20845,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2d ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2dv (
JNIEnv *env, jobject obj,
@@ -20882,13 +20882,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2f (
JNIEnv *env, jobject obj,
@@ -20906,13 +20906,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2f ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2fv (
JNIEnv *env, jobject obj,
@@ -20943,13 +20943,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2i (
JNIEnv *env, jobject obj,
@@ -20967,13 +20967,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2i ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2iv (
JNIEnv *env, jobject obj,
@@ -21004,13 +21004,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2s (
JNIEnv *env, jobject obj,
@@ -21028,13 +21028,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2s ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2sv (
JNIEnv *env, jobject obj,
@@ -21065,13 +21065,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3d (
JNIEnv *env, jobject obj,
@@ -21091,13 +21091,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3d ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3dv (
JNIEnv *env, jobject obj,
@@ -21128,13 +21128,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3f (
JNIEnv *env, jobject obj,
@@ -21154,13 +21154,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3f ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3fv (
JNIEnv *env, jobject obj,
@@ -21191,13 +21191,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3i (
JNIEnv *env, jobject obj,
@@ -21217,13 +21217,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3i ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3iv (
JNIEnv *env, jobject obj,
@@ -21254,13 +21254,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3s (
JNIEnv *env, jobject obj,
@@ -21280,13 +21280,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3s ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3sv (
JNIEnv *env, jobject obj,
@@ -21317,13 +21317,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4d (
JNIEnv *env, jobject obj,
@@ -21345,13 +21345,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4d ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4dv (
JNIEnv *env, jobject obj,
@@ -21382,13 +21382,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4f (
JNIEnv *env, jobject obj,
@@ -21410,13 +21410,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4f ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4fv (
JNIEnv *env, jobject obj,
@@ -21447,13 +21447,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4i (
JNIEnv *env, jobject obj,
@@ -21475,13 +21475,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4i ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4iv (
JNIEnv *env, jobject obj,
@@ -21512,13 +21512,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4s (
JNIEnv *env, jobject obj,
@@ -21540,13 +21540,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4s ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4sv (
JNIEnv *env, jobject obj,
@@ -21577,13 +21577,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixd (
JNIEnv *env, jobject obj,
@@ -21612,13 +21612,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixf (
JNIEnv *env, jobject obj,
@@ -21647,13 +21647,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixd (
JNIEnv *env, jobject obj,
@@ -21682,13 +21682,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixf (
JNIEnv *env, jobject obj,
@@ -21717,13 +21717,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleCoverage (
JNIEnv *env, jobject obj,
@@ -21739,13 +21739,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverage ( GLclampf value , GLboolean invert ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSamplePass (
JNIEnv *env, jobject obj,
@@ -21759,13 +21759,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePass ( GLenum pass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glActiveTextureARB (
JNIEnv *env, jobject obj,
@@ -21779,13 +21779,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClientActiveTextureARB (
JNIEnv *env, jobject obj,
@@ -21799,13 +21799,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1dARB (
JNIEnv *env, jobject obj,
@@ -21821,13 +21821,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dARB ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1dvARB (
JNIEnv *env, jobject obj,
@@ -21858,13 +21858,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1fARB (
JNIEnv *env, jobject obj,
@@ -21880,13 +21880,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fARB ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1fvARB (
JNIEnv *env, jobject obj,
@@ -21917,13 +21917,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1iARB (
JNIEnv *env, jobject obj,
@@ -21939,13 +21939,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iARB ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1ivARB (
JNIEnv *env, jobject obj,
@@ -21976,13 +21976,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1sARB (
JNIEnv *env, jobject obj,
@@ -21998,13 +21998,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sARB ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1svARB (
JNIEnv *env, jobject obj,
@@ -22035,13 +22035,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2dARB (
JNIEnv *env, jobject obj,
@@ -22059,13 +22059,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dARB ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2dvARB (
JNIEnv *env, jobject obj,
@@ -22096,13 +22096,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2fARB (
JNIEnv *env, jobject obj,
@@ -22120,13 +22120,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fARB ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2fvARB (
JNIEnv *env, jobject obj,
@@ -22157,13 +22157,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2iARB (
JNIEnv *env, jobject obj,
@@ -22181,13 +22181,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iARB ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2ivARB (
JNIEnv *env, jobject obj,
@@ -22218,13 +22218,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2sARB (
JNIEnv *env, jobject obj,
@@ -22242,13 +22242,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sARB ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2svARB (
JNIEnv *env, jobject obj,
@@ -22279,13 +22279,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3dARB (
JNIEnv *env, jobject obj,
@@ -22305,13 +22305,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3dvARB (
JNIEnv *env, jobject obj,
@@ -22342,13 +22342,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3fARB (
JNIEnv *env, jobject obj,
@@ -22368,13 +22368,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3fvARB (
JNIEnv *env, jobject obj,
@@ -22405,13 +22405,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3iARB (
JNIEnv *env, jobject obj,
@@ -22431,13 +22431,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iARB ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3ivARB (
JNIEnv *env, jobject obj,
@@ -22468,13 +22468,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3sARB (
JNIEnv *env, jobject obj,
@@ -22494,13 +22494,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sARB ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3svARB (
JNIEnv *env, jobject obj,
@@ -22531,13 +22531,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4dARB (
JNIEnv *env, jobject obj,
@@ -22559,13 +22559,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4dvARB (
JNIEnv *env, jobject obj,
@@ -22596,13 +22596,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4fARB (
JNIEnv *env, jobject obj,
@@ -22624,13 +22624,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4fvARB (
JNIEnv *env, jobject obj,
@@ -22661,13 +22661,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4iARB (
JNIEnv *env, jobject obj,
@@ -22689,13 +22689,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iARB ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4ivARB (
JNIEnv *env, jobject obj,
@@ -22726,13 +22726,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4sARB (
JNIEnv *env, jobject obj,
@@ -22754,13 +22754,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sARB ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4svARB (
JNIEnv *env, jobject obj,
@@ -22791,13 +22791,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendColorEXT (
JNIEnv *env, jobject obj,
@@ -22817,13 +22817,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColorEXT ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonOffsetEXT (
JNIEnv *env, jobject obj,
@@ -22839,13 +22839,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffsetEXT ( GLfloat factor , GLfloat bias ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage3DEXT__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -23168,13 +23168,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3DEXT ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage3DEXT__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -23511,13 +23511,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, pixels, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage3DEXT (
JNIEnv *env, jobject obj,
@@ -23547,13 +23547,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3DEXT ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenTexturesEXT (
JNIEnv *env, jobject obj,
@@ -23584,13 +23584,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTexturesEXT ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteTexturesEXT (
JNIEnv *env, jobject obj,
@@ -23621,13 +23621,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTexturesEXT ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindTextureEXT (
JNIEnv *env, jobject obj,
@@ -23643,13 +23643,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTextureEXT ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPrioritizeTexturesEXT (
JNIEnv *env, jobject obj,
@@ -23697,13 +23697,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, priorities, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTexturesEXT ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glAreTexturesResidentEXT (
JNIEnv *env, jobject obj,
@@ -23754,13 +23754,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResidentEXT ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsTextureEXT (
JNIEnv *env, jobject obj,
@@ -23777,13 +23777,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTextureEXT ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -24036,13 +24036,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -24281,13 +24281,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -24540,13 +24540,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -24785,13 +24785,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -25044,13 +25044,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagPointerEXT (
JNIEnv *env, jobject obj,
@@ -25083,13 +25083,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerEXT ( GLsizei stride , GLsizei count , const GLboolean * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPointervEXT__I_3_3B (
JNIEnv *env, jobject obj,
@@ -25300,13 +25300,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointervEXT ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glArrayElementEXT (
JNIEnv *env, jobject obj,
@@ -25320,13 +25320,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElementEXT ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawArraysEXT (
JNIEnv *env, jobject obj,
@@ -25344,13 +25344,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArraysEXT ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendEquationEXT (
JNIEnv *env, jobject obj,
@@ -25364,13 +25364,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquationEXT ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfEXT (
JNIEnv *env, jobject obj,
@@ -25386,13 +25386,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfEXT ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -25423,13 +25423,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvEXT ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfSGIS (
JNIEnv *env, jobject obj,
@@ -25445,13 +25445,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfSGIS ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -25482,13 +25482,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvSGIS ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -25755,13 +25755,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, table, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableEXT ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorSubTableEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -26028,13 +26028,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, data, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTableEXT ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -26273,13 +26273,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, table, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableEXT ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -26312,13 +26312,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvEXT ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterivEXT (
JNIEnv *env, jobject obj,
@@ -26351,13 +26351,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivEXT ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLockArraysEXT (
JNIEnv *env, jobject obj,
@@ -26373,13 +26373,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLockArraysEXT ( GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glUnlockArraysEXT (
JNIEnv *env, jobject obj)
@@ -26391,13 +26391,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glUnlockArraysEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixfARB (
JNIEnv *env, jobject obj,
@@ -26426,13 +26426,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixdARB (
JNIEnv *env, jobject obj,
@@ -26461,13 +26461,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixfARB (
JNIEnv *env, jobject obj,
@@ -26496,13 +26496,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixdARB (
JNIEnv *env, jobject obj,
@@ -26531,13 +26531,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleCoverageARB (
JNIEnv *env, jobject obj,
@@ -26553,13 +26553,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverageARB ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage3DARB__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -26868,13 +26868,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage2DARB__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -27169,13 +27169,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg7, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage1DARB__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -27456,13 +27456,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1DARB ( GLenum , GLint , GLenum , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage3DARB__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -27799,13 +27799,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg10, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage3DARB ( GLenum , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage2DARB__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -28114,13 +28114,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2DARB ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage1DARB__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -28401,13 +28401,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1DARB ( GLenum , GLint , GLint , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCompressedTexImageARB__II_3B (
JNIEnv *env, jobject obj,
@@ -28632,13 +28632,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImageARB ( GLenum , GLint , void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightbvARB (
JNIEnv *env, jobject obj,
@@ -28669,13 +28669,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightbvARB ( GLint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightsvARB (
JNIEnv *env, jobject obj,
@@ -28706,13 +28706,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightsvARB ( GLint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightivARB (
JNIEnv *env, jobject obj,
@@ -28743,13 +28743,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightivARB ( GLint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightfvARB (
JNIEnv *env, jobject obj,
@@ -28780,13 +28780,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightfvARB ( GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightdvARB (
JNIEnv *env, jobject obj,
@@ -28817,13 +28817,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightdvARB ( GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightubvARB (
JNIEnv *env, jobject obj,
@@ -28854,13 +28854,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightusvARB (
JNIEnv *env, jobject obj,
@@ -28891,13 +28891,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightuivARB (
JNIEnv *env, jobject obj,
@@ -28928,13 +28928,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightPointerARB__III_3B (
JNIEnv *env, jobject obj,
@@ -29173,13 +29173,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexBlendARB (
JNIEnv *env, jobject obj,
@@ -29193,13 +29193,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCurrentPaletteMatrixARB (
JNIEnv *env, jobject obj,
@@ -29213,13 +29213,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCurrentPaletteMatrixARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexubvARB (
JNIEnv *env, jobject obj,
@@ -29250,13 +29250,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexusvARB (
JNIEnv *env, jobject obj,
@@ -29287,13 +29287,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexuivARB (
JNIEnv *env, jobject obj,
@@ -29324,13 +29324,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexPointerARB__III_3B (
JNIEnv *env, jobject obj,
@@ -29569,13 +29569,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexFilterFuncSGIS (
JNIEnv *env, jobject obj,
@@ -29608,13 +29608,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexFilterFuncSGIS ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexFilterFuncSGIS (
JNIEnv *env, jobject obj,
@@ -29649,13 +29649,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexFilterFuncSGIS ( GLenum , GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage1DEXT__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -29936,13 +29936,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1DEXT ( GLenum , GLint , GLint , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage2DEXT__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -30251,13 +30251,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage1DEXT (
JNIEnv *env, jobject obj,
@@ -30283,13 +30283,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage2DEXT (
JNIEnv *env, jobject obj,
@@ -30317,13 +30317,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage1DEXT (
JNIEnv *env, jobject obj,
@@ -30347,13 +30347,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1DEXT ( GLenum , GLint , GLint , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage2DEXT (
JNIEnv *env, jobject obj,
@@ -30381,13 +30381,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramEXT__IZII_3B (
JNIEnv *env, jobject obj,
@@ -30640,13 +30640,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -30679,13 +30679,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameterivEXT (
JNIEnv *env, jobject obj,
@@ -30718,13 +30718,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxEXT__IZII_3B (
JNIEnv *env, jobject obj,
@@ -30977,13 +30977,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -31016,13 +31016,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameterivEXT (
JNIEnv *env, jobject obj,
@@ -31055,13 +31055,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHistogramEXT (
JNIEnv *env, jobject obj,
@@ -31081,13 +31081,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogramEXT ( GLenum , GLsizei , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMinmaxEXT (
JNIEnv *env, jobject obj,
@@ -31105,13 +31105,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmaxEXT ( GLenum , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetHistogramEXT (
JNIEnv *env, jobject obj,
@@ -31125,13 +31125,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogramEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetMinmaxEXT (
JNIEnv *env, jobject obj,
@@ -31145,13 +31145,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmaxEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter1DEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -31418,13 +31418,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg5, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1DEXT ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter2DEXT__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -31705,13 +31705,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterfEXT (
JNIEnv *env, jobject obj,
@@ -31729,13 +31729,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -31768,13 +31768,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameteriEXT (
JNIEnv *env, jobject obj,
@@ -31792,13 +31792,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterivEXT (
JNIEnv *env, jobject obj,
@@ -31831,13 +31831,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter1DEXT (
JNIEnv *env, jobject obj,
@@ -31859,13 +31859,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1DEXT ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter2DEXT (
JNIEnv *env, jobject obj,
@@ -31889,13 +31889,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2DEXT ( GLenum , GLenum , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionFilterEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -32134,13 +32134,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilterEXT ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -32173,13 +32173,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameterivEXT (
JNIEnv *env, jobject obj,
@@ -32212,13 +32212,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetSeparableFilterEXT__III_3B_3B_3B (
JNIEnv *env, jobject obj,
@@ -32695,13 +32695,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg5, ptr5, (isCopiedArray5 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilterEXT ( GLenum , GLenum , GLenum , GLvoid * , GLvoid * , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSeparableFilter2DEXT__IIIIII_3B_3B (
JNIEnv *env, jobject obj,
@@ -33101,13 +33101,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg7, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableSGI__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -33374,13 +33374,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg5, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableSGI ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameterfvSGI (
JNIEnv *env, jobject obj,
@@ -33413,13 +33413,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfvSGI ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameterivSGI (
JNIEnv *env, jobject obj,
@@ -33452,13 +33452,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterivSGI ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorTableSGI (
JNIEnv *env, jobject obj,
@@ -33480,13 +33480,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTableSGI ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableSGI__III_3B (
JNIEnv *env, jobject obj,
@@ -33725,13 +33725,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableSGI ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterfvSGI (
JNIEnv *env, jobject obj,
@@ -33764,13 +33764,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvSGI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterivSGI (
JNIEnv *env, jobject obj,
@@ -33803,13 +33803,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivSGI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenSGIX (
JNIEnv *env, jobject obj,
@@ -33823,13 +33823,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenSGIX ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameteriSGIS (
JNIEnv *env, jobject obj,
@@ -33845,13 +33845,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameteriSGIS ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameterivSGIS (
JNIEnv *env, jobject obj,
@@ -33882,13 +33882,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterivSGIS ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameterfSGIS (
JNIEnv *env, jobject obj,
@@ -33904,13 +33904,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfSGIS ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -33941,13 +33941,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfvSGIS ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelTexGenParameterivSGIS (
JNIEnv *env, jobject obj,
@@ -33978,13 +33978,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterivSGIS ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelTexGenParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -34015,13 +34015,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterfvSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage4DSGIS__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -34358,13 +34358,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg10, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage4DSGIS ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLsizei , GLint , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage4DSGIS__IIIIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -34729,13 +34729,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg12, ptr12, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage4DSGIS ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDetailTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -34768,13 +34768,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDetailTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetDetailTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -34805,13 +34805,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDetailTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSharpenTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -34844,13 +34844,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSharpenTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetSharpenTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -34881,13 +34881,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSharpenTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleMaskSGIS (
JNIEnv *env, jobject obj,
@@ -34903,13 +34903,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskSGIS ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSamplePatternSGIS (
JNIEnv *env, jobject obj,
@@ -34923,13 +34923,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternSGIS ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameterfSGIX (
JNIEnv *env, jobject obj,
@@ -34945,13 +34945,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -34982,13 +34982,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameteriSGIX (
JNIEnv *env, jobject obj,
@@ -35004,13 +35004,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameteriSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -35041,13 +35041,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfARB (
JNIEnv *env, jobject obj,
@@ -35063,13 +35063,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfARB ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfvARB (
JNIEnv *env, jobject obj,
@@ -35100,13 +35100,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvARB ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGetInstrumentsSGIX (
JNIEnv *env, jobject obj)
@@ -35121,13 +35121,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glGetInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInstrumentsBufferSGIX (
JNIEnv *env, jobject obj,
@@ -35158,13 +35158,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInstrumentsBufferSGIX ( GLsizei , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glPollInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -35196,13 +35196,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollInstrumentsSGIX ( GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReadInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -35216,13 +35216,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStartInstrumentsSGIX (
JNIEnv *env, jobject obj)
@@ -35234,13 +35234,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStartInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStopInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -35254,13 +35254,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStopInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFrameZoomSGIX (
JNIEnv *env, jobject obj,
@@ -35274,13 +35274,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrameZoomSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTagSampleBufferSGIX (
JNIEnv *env, jobject obj)
@@ -35292,13 +35292,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTagSampleBufferSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeformationMap3dSGIX (
JNIEnv *env, jobject obj,
@@ -35353,13 +35353,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg13, ptr13, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3dSGIX ( GLenum , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeformationMap3fSGIX (
JNIEnv *env, jobject obj,
@@ -35414,13 +35414,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg13, ptr13, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3fSGIX ( GLenum , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeformSGIX (
JNIEnv *env, jobject obj,
@@ -35434,13 +35434,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadIdentityDeformationMapSGIX (
JNIEnv *env, jobject obj,
@@ -35454,13 +35454,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentityDeformationMapSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReferencePlaneSGIX (
JNIEnv *env, jobject obj,
@@ -35489,13 +35489,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReferencePlaneSGIX ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFlushRasterSGIX (
JNIEnv *env, jobject obj)
@@ -35507,13 +35507,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushRasterSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogFuncSGIS (
JNIEnv *env, jobject obj,
@@ -35544,13 +35544,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogFuncSGIS ( GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFogFuncSGIS (
JNIEnv *env, jobject obj,
@@ -35579,13 +35579,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, (isCopiedArray0 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFogFuncSGIS ( GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameteriHP (
JNIEnv *env, jobject obj,
@@ -35603,13 +35603,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameteriHP ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameterfHP (
JNIEnv *env, jobject obj,
@@ -35627,13 +35627,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfHP ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameterivHP (
JNIEnv *env, jobject obj,
@@ -35666,13 +35666,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterivHP ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameterfvHP (
JNIEnv *env, jobject obj,
@@ -35705,13 +35705,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfvHP ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetImageTransformParameterivHP (
JNIEnv *env, jobject obj,
@@ -35744,13 +35744,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterivHP ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetImageTransformParameterfvHP (
JNIEnv *env, jobject obj,
@@ -35783,13 +35783,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterfvHP ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorSubTableEXT (
JNIEnv *env, jobject obj,
@@ -35811,13 +35811,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTableEXT ( GLenum , GLsizei , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHintPGI (
JNIEnv *env, jobject obj,
@@ -35833,13 +35833,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHintPGI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetListParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -35872,13 +35872,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterfvSGIX ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetListParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -35911,13 +35911,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterivSGIX ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameterfSGIX (
JNIEnv *env, jobject obj,
@@ -35935,13 +35935,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfSGIX ( GLuint , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -35974,13 +35974,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfvSGIX ( GLuint , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameteriSGIX (
JNIEnv *env, jobject obj,
@@ -35998,13 +35998,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameteriSGIX ( GLuint , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -36037,13 +36037,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterivSGIX ( GLuint , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexMaterialEXT (
JNIEnv *env, jobject obj,
@@ -36059,13 +36059,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexFuncEXT (
JNIEnv *env, jobject obj,
@@ -36081,13 +36081,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexFuncEXT ( GLenum , GLclampf ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCullParameterdvEXT (
JNIEnv *env, jobject obj,
@@ -36118,13 +36118,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterdvEXT ( GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCullParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -36155,13 +36155,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterfvEXT ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentColorMaterialSGIX (
JNIEnv *env, jobject obj,
@@ -36177,13 +36177,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentColorMaterialSGIX ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightfSGIX (
JNIEnv *env, jobject obj,
@@ -36201,13 +36201,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightfvSGIX (
JNIEnv *env, jobject obj,
@@ -36240,13 +36240,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightiSGIX (
JNIEnv *env, jobject obj,
@@ -36264,13 +36264,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightivSGIX (
JNIEnv *env, jobject obj,
@@ -36303,13 +36303,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModelfSGIX (
JNIEnv *env, jobject obj,
@@ -36325,13 +36325,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModelfvSGIX (
JNIEnv *env, jobject obj,
@@ -36362,13 +36362,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModeliSGIX (
JNIEnv *env, jobject obj,
@@ -36384,13 +36384,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModeliSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModelivSGIX (
JNIEnv *env, jobject obj,
@@ -36421,13 +36421,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialfSGIX (
JNIEnv *env, jobject obj,
@@ -36445,13 +36445,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialfvSGIX (
JNIEnv *env, jobject obj,
@@ -36484,13 +36484,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialiSGIX (
JNIEnv *env, jobject obj,
@@ -36508,13 +36508,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialivSGIX (
JNIEnv *env, jobject obj,
@@ -36547,13 +36547,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentLightfvSGIX (
JNIEnv *env, jobject obj,
@@ -36586,13 +36586,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentLightivSGIX (
JNIEnv *env, jobject obj,
@@ -36625,13 +36625,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentMaterialfvSGIX (
JNIEnv *env, jobject obj,
@@ -36664,13 +36664,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentMaterialivSGIX (
JNIEnv *env, jobject obj,
@@ -36703,13 +36703,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightEnviSGIX (
JNIEnv *env, jobject obj,
@@ -36725,13 +36725,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightEnviSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawRangeElementsEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -36998,13 +36998,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg5, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElementsEXT ( GLenum , GLuint , GLuint , GLsizei , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glApplyTextureEXT (
JNIEnv *env, jobject obj,
@@ -37018,13 +37018,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glApplyTextureEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureLightEXT (
JNIEnv *env, jobject obj,
@@ -37038,13 +37038,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureLightEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureMaterialEXT (
JNIEnv *env, jobject obj,
@@ -37060,13 +37060,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAsyncMarkerSGIX (
JNIEnv *env, jobject obj,
@@ -37080,13 +37080,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glFinishAsyncSGIX (
JNIEnv *env, jobject obj,
@@ -37118,13 +37118,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glFinishAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glPollAsyncSGIX (
JNIEnv *env, jobject obj,
@@ -37156,13 +37156,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenAsyncMarkersSGIX (
JNIEnv *env, jobject obj,
@@ -37179,13 +37179,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenAsyncMarkersSGIX ( GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteAsyncMarkersSGIX (
JNIEnv *env, jobject obj,
@@ -37201,13 +37201,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteAsyncMarkersSGIX ( GLuint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsAsyncMarkerSGIX (
JNIEnv *env, jobject obj,
@@ -37224,13 +37224,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -37455,13 +37455,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointervINTEL__I_3_3B (
JNIEnv *env, jobject obj,
@@ -37672,13 +37672,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointervINTEL ( GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -37903,13 +37903,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -38134,13 +38134,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameteriEXT (
JNIEnv *env, jobject obj,
@@ -38158,13 +38158,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameterfEXT (
JNIEnv *env, jobject obj,
@@ -38182,13 +38182,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameterivEXT (
JNIEnv *env, jobject obj,
@@ -38221,13 +38221,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -38260,13 +38260,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3bEXT (
JNIEnv *env, jobject obj,
@@ -38284,13 +38284,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3bvEXT (
JNIEnv *env, jobject obj,
@@ -38319,13 +38319,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3dEXT (
JNIEnv *env, jobject obj,
@@ -38343,13 +38343,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3dvEXT (
JNIEnv *env, jobject obj,
@@ -38378,13 +38378,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3fEXT (
JNIEnv *env, jobject obj,
@@ -38402,13 +38402,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3fvEXT (
JNIEnv *env, jobject obj,
@@ -38437,13 +38437,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3iEXT (
JNIEnv *env, jobject obj,
@@ -38461,13 +38461,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3ivEXT (
JNIEnv *env, jobject obj,
@@ -38496,13 +38496,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3sEXT (
JNIEnv *env, jobject obj,
@@ -38520,13 +38520,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3svEXT (
JNIEnv *env, jobject obj,
@@ -38555,13 +38555,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3ubEXT (
JNIEnv *env, jobject obj,
@@ -38579,13 +38579,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubEXT ( GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3ubvEXT (
JNIEnv *env, jobject obj,
@@ -38614,13 +38614,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubvEXT ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3uiEXT (
JNIEnv *env, jobject obj,
@@ -38638,13 +38638,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uiEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3uivEXT (
JNIEnv *env, jobject obj,
@@ -38673,13 +38673,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uivEXT ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3usEXT (
JNIEnv *env, jobject obj,
@@ -38697,13 +38697,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usEXT ( GLushort , GLushort , GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3usvEXT (
JNIEnv *env, jobject obj,
@@ -38732,13 +38732,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usvEXT ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColorPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -38977,13 +38977,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerEXT ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureNormalEXT (
JNIEnv *env, jobject obj,
@@ -38997,13 +38997,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureNormalEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiDrawArraysEXT (
JNIEnv *env, jobject obj,
@@ -39053,13 +39053,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawArraysEXT ( GLenum , GLint * , GLsizei * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiDrawElementsEXT__I_3II_3_3BI (
JNIEnv *env, jobject obj,
@@ -39417,13 +39417,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawElementsEXT ( GLenum , const GLsizei * , GLenum , const GLvoid * * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordfEXT (
JNIEnv *env, jobject obj,
@@ -39437,13 +39437,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordfvEXT (
JNIEnv *env, jobject obj,
@@ -39472,13 +39472,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoorddEXT (
JNIEnv *env, jobject obj,
@@ -39492,13 +39492,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddEXT ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoorddvEXT (
JNIEnv *env, jobject obj,
@@ -39527,13 +39527,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -39758,13 +39758,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3bEXT (
JNIEnv *env, jobject obj,
@@ -39782,13 +39782,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3bvEXT (
JNIEnv *env, jobject obj,
@@ -39817,13 +39817,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3dEXT (
JNIEnv *env, jobject obj,
@@ -39841,13 +39841,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3dvEXT (
JNIEnv *env, jobject obj,
@@ -39876,13 +39876,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3fEXT (
JNIEnv *env, jobject obj,
@@ -39900,13 +39900,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3fvEXT (
JNIEnv *env, jobject obj,
@@ -39935,13 +39935,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3iEXT (
JNIEnv *env, jobject obj,
@@ -39959,13 +39959,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3ivEXT (
JNIEnv *env, jobject obj,
@@ -39994,13 +39994,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3sEXT (
JNIEnv *env, jobject obj,
@@ -40018,13 +40018,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3svEXT (
JNIEnv *env, jobject obj,
@@ -40053,13 +40053,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3bEXT (
JNIEnv *env, jobject obj,
@@ -40077,13 +40077,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3bvEXT (
JNIEnv *env, jobject obj,
@@ -40112,13 +40112,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3dEXT (
JNIEnv *env, jobject obj,
@@ -40136,13 +40136,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3dvEXT (
JNIEnv *env, jobject obj,
@@ -40171,13 +40171,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3fEXT (
JNIEnv *env, jobject obj,
@@ -40195,13 +40195,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3fvEXT (
JNIEnv *env, jobject obj,
@@ -40230,13 +40230,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3iEXT (
JNIEnv *env, jobject obj,
@@ -40254,13 +40254,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3ivEXT (
JNIEnv *env, jobject obj,
@@ -40289,13 +40289,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3sEXT (
JNIEnv *env, jobject obj,
@@ -40313,13 +40313,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3svEXT (
JNIEnv *env, jobject obj,
@@ -40348,13 +40348,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangentPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -40579,13 +40579,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangentPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormalPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -40810,13 +40810,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormalPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinishTextureSUNX (
JNIEnv *env, jobject obj)
@@ -40828,13 +40828,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishTextureSUNX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorbSUN (
JNIEnv *env, jobject obj,
@@ -40848,13 +40848,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorbSUN ( GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorsSUN (
JNIEnv *env, jobject obj,
@@ -40868,13 +40868,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorsSUN ( GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactoriSUN (
JNIEnv *env, jobject obj,
@@ -40888,13 +40888,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoriSUN ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorfSUN (
JNIEnv *env, jobject obj,
@@ -40908,13 +40908,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorfSUN ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactordSUN (
JNIEnv *env, jobject obj,
@@ -40928,13 +40928,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactordSUN ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorubSUN (
JNIEnv *env, jobject obj,
@@ -40948,13 +40948,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorusSUN (
JNIEnv *env, jobject obj,
@@ -40968,13 +40968,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactoruiSUN (
JNIEnv *env, jobject obj,
@@ -40988,13 +40988,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoruiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiSUN (
JNIEnv *env, jobject obj,
@@ -41008,13 +41008,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeusSUN (
JNIEnv *env, jobject obj,
@@ -41028,13 +41028,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeubSUN (
JNIEnv *env, jobject obj,
@@ -41048,13 +41048,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuivSUN (
JNIEnv *env, jobject obj,
@@ -41083,13 +41083,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuivSUN ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeusvSUN (
JNIEnv *env, jobject obj,
@@ -41118,13 +41118,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusvSUN ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeubvSUN (
JNIEnv *env, jobject obj,
@@ -41153,13 +41153,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubvSUN ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodePointerSUN__II_3_3B (
JNIEnv *env, jobject obj,
@@ -41384,13 +41384,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodePointerSUN ( GLenum , GLsizei , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex2fSUN (
JNIEnv *env, jobject obj,
@@ -41414,13 +41414,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex2fvSUN (
JNIEnv *env, jobject obj,
@@ -41466,13 +41466,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -41498,13 +41498,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -41550,13 +41550,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -41580,13 +41580,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -41632,13 +41632,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -41662,13 +41662,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -41714,13 +41714,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -41752,13 +41752,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -41821,13 +41821,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -41849,13 +41849,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -41901,13 +41901,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fVertex4fSUN (
JNIEnv *env, jobject obj,
@@ -41935,13 +41935,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fVertex4fvSUN (
JNIEnv *env, jobject obj,
@@ -41987,13 +41987,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -42023,13 +42023,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fSUN ( GLfloat , GLfloat , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -42092,13 +42092,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fvSUN ( const GLfloat * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -42126,13 +42126,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -42195,13 +42195,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -42229,13 +42229,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -42298,13 +42298,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -42340,13 +42340,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -42426,13 +42426,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fColor4fNormal3fVertex4fSUN (
JNIEnv *env, jobject obj,
@@ -42474,13 +42474,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fColor4fNormal3fVertex4fvSUN (
JNIEnv *env, jobject obj,
@@ -42560,13 +42560,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -42586,13 +42586,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -42638,13 +42638,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fvSUN ( const GLenum * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -42672,13 +42672,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fSUN ( GLenum , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -42741,13 +42741,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fvSUN ( const GLenum * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -42773,13 +42773,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -42842,13 +42842,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -42874,13 +42874,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -42943,13 +42943,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -42983,13 +42983,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -43069,13 +43069,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -43099,13 +43099,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -43168,13 +43168,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -43204,13 +43204,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -43290,13 +43290,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -43334,13 +43334,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -43437,13 +43437,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendFuncSeparateEXT (
JNIEnv *env, jobject obj,
@@ -43463,13 +43463,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateEXT ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendFuncSeparateINGR (
JNIEnv *env, jobject obj,
@@ -43489,13 +43489,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateINGR ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexWeightfEXT (
JNIEnv *env, jobject obj,
@@ -43509,13 +43509,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexWeightfvEXT (
JNIEnv *env, jobject obj,
@@ -43544,13 +43544,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexWeightPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -43789,13 +43789,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightPointerEXT ( GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFlushVertexArrayRangeNV (
JNIEnv *env, jobject obj)
@@ -43807,13 +43807,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushVertexArrayRangeNV ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexArrayRangeNV__I_3B (
JNIEnv *env, jobject obj,
@@ -44024,13 +44024,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexArrayRangeNV ( GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameterfvNV (
JNIEnv *env, jobject obj,
@@ -44061,13 +44061,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfvNV ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameterfNV (
JNIEnv *env, jobject obj,
@@ -44083,13 +44083,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfNV ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameterivNV (
JNIEnv *env, jobject obj,
@@ -44120,13 +44120,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterivNV ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameteriNV (
JNIEnv *env, jobject obj,
@@ -44142,13 +44142,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameteriNV ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerInputNV (
JNIEnv *env, jobject obj,
@@ -44172,13 +44172,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerInputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerOutputNV (
JNIEnv *env, jobject obj,
@@ -44210,13 +44210,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerOutputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinalCombinerInputNV (
JNIEnv *env, jobject obj,
@@ -44236,13 +44236,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinalCombinerInputNV ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerInputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -44279,13 +44279,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterfvNV ( GLenum , GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerInputParameterivNV (
JNIEnv *env, jobject obj,
@@ -44322,13 +44322,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterivNV ( GLenum , GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerOutputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -44363,13 +44363,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterfvNV ( GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerOutputParameterivNV (
JNIEnv *env, jobject obj,
@@ -44404,13 +44404,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterivNV ( GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFinalCombinerInputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -44443,13 +44443,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFinalCombinerInputParameterivNV (
JNIEnv *env, jobject obj,
@@ -44482,13 +44482,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiModeDrawArraysIBM (
JNIEnv *env, jobject obj,
@@ -44540,13 +44540,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawArraysIBM ( GLenum , const GLint * , const GLsizei * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiModeDrawElementsIBM___3I_3II_3_3BII (
JNIEnv *env, jobject obj,
@@ -45023,13 +45023,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawElementsIBM ( const GLenum * , const GLsizei * , GLenum , const GLvoid * * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -45282,13 +45282,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColorPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -45541,13 +45541,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagPointerListIBM (
JNIEnv *env, jobject obj,
@@ -45580,13 +45580,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerListIBM ( GLint , const GLboolean * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -45825,13 +45825,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -46070,13 +46070,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -46315,13 +46315,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -46574,13 +46574,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -46833,13 +46833,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTbufferMask3DFX (
JNIEnv *env, jobject obj,
@@ -46853,13 +46853,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTbufferMask3DFX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleMaskEXT (
JNIEnv *env, jobject obj,
@@ -46875,13 +46875,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskEXT ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSamplePatternEXT (
JNIEnv *env, jobject obj,
@@ -46895,13 +46895,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureColorMaskSGIS (
JNIEnv *env, jobject obj,
@@ -46921,13 +46921,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureColorMaskSGIS ( GLboolean , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIglooInterfaceSGIX__I_3B (
JNIEnv *env, jobject obj,
@@ -47138,13 +47138,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIglooInterfaceSGIX ( GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenFencesNV (
JNIEnv *env, jobject obj,
@@ -47175,13 +47175,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenFencesNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteFencesNV (
JNIEnv *env, jobject obj,
@@ -47212,13 +47212,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFencesNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetFenceNV (
JNIEnv *env, jobject obj,
@@ -47234,13 +47234,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFenceNV ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glTestFenceNV (
JNIEnv *env, jobject obj,
@@ -47257,13 +47257,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glTestFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinishFenceNV (
JNIEnv *env, jobject obj,
@@ -47277,13 +47277,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsFenceNV (
JNIEnv *env, jobject obj,
@@ -47300,13 +47300,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFenceivNV (
JNIEnv *env, jobject obj,
@@ -47339,13 +47339,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFenceivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapControlPointsNV__IIIIIIIZ_3B (
JNIEnv *env, jobject obj,
@@ -47654,13 +47654,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLint , GLint , GLboolean , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapParameterivNV (
JNIEnv *env, jobject obj,
@@ -47693,13 +47693,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterivNV ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapParameterfvNV (
JNIEnv *env, jobject obj,
@@ -47732,13 +47732,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapControlPointsNV__IIIIIZ_3B (
JNIEnv *env, jobject obj,
@@ -48019,13 +48019,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg6, ptr6, (isCopiedArray6 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLboolean , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapParameterivNV (
JNIEnv *env, jobject obj,
@@ -48058,13 +48058,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapParameterfvNV (
JNIEnv *env, jobject obj,
@@ -48097,13 +48097,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapAttribParameterivNV (
JNIEnv *env, jobject obj,
@@ -48138,13 +48138,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapAttribParameterfvNV (
JNIEnv *env, jobject obj,
@@ -48179,13 +48179,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalMapsNV (
JNIEnv *env, jobject obj,
@@ -48201,13 +48201,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMapsNV ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerStageParameterfvNV (
JNIEnv *env, jobject obj,
@@ -48240,13 +48240,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerStageParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerStageParameterfvNV (
JNIEnv *env, jobject obj,
@@ -48279,13 +48279,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerStageParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindProgramNV (
JNIEnv *env, jobject obj,
@@ -48301,13 +48301,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindProgramNV ( GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteProgramsNV (
JNIEnv *env, jobject obj,
@@ -48338,13 +48338,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glExecuteProgramNV (
JNIEnv *env, jobject obj,
@@ -48377,13 +48377,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glExecuteProgramNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenProgramsNV (
JNIEnv *env, jobject obj,
@@ -48414,13 +48414,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenProgramsNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glAreProgramsResidentNV (
JNIEnv *env, jobject obj,
@@ -48471,13 +48471,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreProgramsResidentNV ( GLsizei , const GLuint * , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRequestResidentProgramsNV (
JNIEnv *env, jobject obj,
@@ -48508,13 +48508,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRequestResidentProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramParameterfvNV (
JNIEnv *env, jobject obj,
@@ -48549,13 +48549,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramParameterdvNV (
JNIEnv *env, jobject obj,
@@ -48590,13 +48590,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterdvNV ( GLenum , GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramivNV (
JNIEnv *env, jobject obj,
@@ -48629,13 +48629,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramStringNV (
JNIEnv *env, jobject obj,
@@ -48668,13 +48668,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramStringNV ( GLuint , GLenum , GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTrackMatrixivNV (
JNIEnv *env, jobject obj,
@@ -48709,13 +48709,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTrackMatrixivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribdvNV (
JNIEnv *env, jobject obj,
@@ -48748,13 +48748,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribdvNV ( GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribfvNV (
JNIEnv *env, jobject obj,
@@ -48787,13 +48787,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribfvNV ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribivNV (
JNIEnv *env, jobject obj,
@@ -48826,13 +48826,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribPointervNV__II_3_3B (
JNIEnv *env, jobject obj,
@@ -49057,13 +49057,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribPointervNV ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsProgramNV (
JNIEnv *env, jobject obj,
@@ -49080,13 +49080,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsProgramNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadProgramNV (
JNIEnv *env, jobject obj,
@@ -49121,13 +49121,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadProgramNV ( GLenum , GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4fNV (
JNIEnv *env, jobject obj,
@@ -49151,13 +49151,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fNV ( GLenum , GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4dNV (
JNIEnv *env, jobject obj,
@@ -49181,13 +49181,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dNV ( GLenum , GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4dvNV (
JNIEnv *env, jobject obj,
@@ -49220,13 +49220,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dvNV ( GLenum , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4fvNV (
JNIEnv *env, jobject obj,
@@ -49259,13 +49259,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fvNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameters4dvNV (
JNIEnv *env, jobject obj,
@@ -49300,13 +49300,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4dvNV ( GLenum , GLuint , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameters4fvNV (
JNIEnv *env, jobject obj,
@@ -49341,13 +49341,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4fvNV ( GLenum , GLuint , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTrackMatrixNV (
JNIEnv *env, jobject obj,
@@ -49367,13 +49367,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTrackMatrixNV ( GLenum , GLuint , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribPointerNV__IIII_3B (
JNIEnv *env, jobject obj,
@@ -49626,13 +49626,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribPointerNV ( GLuint , GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1sNV (
JNIEnv *env, jobject obj,
@@ -49648,13 +49648,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1sNV ( GLuint , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1fNV (
JNIEnv *env, jobject obj,
@@ -49670,13 +49670,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fNV ( GLuint , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1dNV (
JNIEnv *env, jobject obj,
@@ -49692,13 +49692,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dNV ( GLuint , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2sNV (
JNIEnv *env, jobject obj,
@@ -49716,13 +49716,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2sNV ( GLuint , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2fNV (
JNIEnv *env, jobject obj,
@@ -49740,13 +49740,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fNV ( GLuint , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2dNV (
JNIEnv *env, jobject obj,
@@ -49764,13 +49764,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dNV ( GLuint , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3sNV (
JNIEnv *env, jobject obj,
@@ -49790,13 +49790,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3sNV ( GLuint , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3fNV (
JNIEnv *env, jobject obj,
@@ -49816,13 +49816,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fNV ( GLuint , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3dNV (
JNIEnv *env, jobject obj,
@@ -49842,13 +49842,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dNV ( GLuint , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4sNV (
JNIEnv *env, jobject obj,
@@ -49870,13 +49870,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4sNV ( GLuint , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4fNV (
JNIEnv *env, jobject obj,
@@ -49898,13 +49898,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fNV ( GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4dNV (
JNIEnv *env, jobject obj,
@@ -49926,13 +49926,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dNV ( GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4ubNV (
JNIEnv *env, jobject obj,
@@ -49954,13 +49954,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubNV ( GLuint , GLubyte , GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1svNV (
JNIEnv *env, jobject obj,
@@ -49991,13 +49991,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1fvNV (
JNIEnv *env, jobject obj,
@@ -50028,13 +50028,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1dvNV (
JNIEnv *env, jobject obj,
@@ -50065,13 +50065,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2svNV (
JNIEnv *env, jobject obj,
@@ -50102,13 +50102,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2fvNV (
JNIEnv *env, jobject obj,
@@ -50139,13 +50139,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2dvNV (
JNIEnv *env, jobject obj,
@@ -50176,13 +50176,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3svNV (
JNIEnv *env, jobject obj,
@@ -50213,13 +50213,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3fvNV (
JNIEnv *env, jobject obj,
@@ -50250,13 +50250,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3dvNV (
JNIEnv *env, jobject obj,
@@ -50287,13 +50287,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4svNV (
JNIEnv *env, jobject obj,
@@ -50324,13 +50324,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4fvNV (
JNIEnv *env, jobject obj,
@@ -50361,13 +50361,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4dvNV (
JNIEnv *env, jobject obj,
@@ -50398,13 +50398,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4ubvNV (
JNIEnv *env, jobject obj,
@@ -50435,13 +50435,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubvNV ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs1svNV (
JNIEnv *env, jobject obj,
@@ -50474,13 +50474,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs1fvNV (
JNIEnv *env, jobject obj,
@@ -50513,13 +50513,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs1dvNV (
JNIEnv *env, jobject obj,
@@ -50552,13 +50552,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs2svNV (
JNIEnv *env, jobject obj,
@@ -50591,13 +50591,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs2fvNV (
JNIEnv *env, jobject obj,
@@ -50630,13 +50630,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs2dvNV (
JNIEnv *env, jobject obj,
@@ -50669,13 +50669,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs3svNV (
JNIEnv *env, jobject obj,
@@ -50708,13 +50708,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs3fvNV (
JNIEnv *env, jobject obj,
@@ -50747,13 +50747,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs3dvNV (
JNIEnv *env, jobject obj,
@@ -50786,13 +50786,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4svNV (
JNIEnv *env, jobject obj,
@@ -50825,13 +50825,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4fvNV (
JNIEnv *env, jobject obj,
@@ -50864,13 +50864,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4dvNV (
JNIEnv *env, jobject obj,
@@ -50903,13 +50903,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4ubvNV (
JNIEnv *env, jobject obj,
@@ -50942,13 +50942,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4ubvNV ( GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexBumpParameterivATI (
JNIEnv *env, jobject obj,
@@ -50979,13 +50979,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterivATI ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexBumpParameterfvATI (
JNIEnv *env, jobject obj,
@@ -51016,13 +51016,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterfvATI ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexBumpParameterivATI (
JNIEnv *env, jobject obj,
@@ -51053,13 +51053,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterivATI ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexBumpParameterfvATI (
JNIEnv *env, jobject obj,
@@ -51090,13 +51090,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterfvATI ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenFragmentShadersATI (
JNIEnv *env, jobject obj,
@@ -51113,13 +51113,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenFragmentShadersATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindFragmentShaderATI (
JNIEnv *env, jobject obj,
@@ -51133,13 +51133,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteFragmentShaderATI (
JNIEnv *env, jobject obj,
@@ -51153,13 +51153,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBeginFragmentShaderATI (
JNIEnv *env, jobject obj)
@@ -51171,13 +51171,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEndFragmentShaderATI (
JNIEnv *env, jobject obj)
@@ -51189,13 +51189,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPassTexCoordATI (
JNIEnv *env, jobject obj,
@@ -51213,13 +51213,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPassTexCoordATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleMapATI (
JNIEnv *env, jobject obj,
@@ -51237,13 +51237,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMapATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorFragmentOp1ATI (
JNIEnv *env, jobject obj,
@@ -51269,13 +51269,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorFragmentOp2ATI (
JNIEnv *env, jobject obj,
@@ -51307,13 +51307,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorFragmentOp3ATI (
JNIEnv *env, jobject obj,
@@ -51351,13 +51351,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFragmentOp1ATI (
JNIEnv *env, jobject obj,
@@ -51381,13 +51381,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFragmentOp2ATI (
JNIEnv *env, jobject obj,
@@ -51417,13 +51417,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFragmentOp3ATI (
JNIEnv *env, jobject obj,
@@ -51459,13 +51459,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetFragmentShaderConstantATI (
JNIEnv *env, jobject obj,
@@ -51496,13 +51496,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFragmentShaderConstantATI ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPNTrianglesiATI (
JNIEnv *env, jobject obj,
@@ -51518,13 +51518,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesiATI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPNTrianglesfATI (
JNIEnv *env, jobject obj,
@@ -51540,13 +51540,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesfATI ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glNewObjectBufferATI__I_3BI (
JNIEnv *env, jobject obj,
@@ -51792,13 +51792,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glNewObjectBufferATI ( GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsObjectBufferATI (
JNIEnv *env, jobject obj,
@@ -51815,13 +51815,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glUpdateObjectBufferATI__III_3BI (
JNIEnv *env, jobject obj,
@@ -52074,13 +52074,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glUpdateObjectBufferATI ( GLuint , GLuint , GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetObjectBufferfvATI (
JNIEnv *env, jobject obj,
@@ -52113,13 +52113,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetObjectBufferivATI (
JNIEnv *env, jobject obj,
@@ -52152,13 +52152,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteObjectBufferATI (
JNIEnv *env, jobject obj,
@@ -52172,13 +52172,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glArrayObjectATI (
JNIEnv *env, jobject obj,
@@ -52202,13 +52202,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayObjectATI ( GLenum , GLint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetArrayObjectfvATI (
JNIEnv *env, jobject obj,
@@ -52241,13 +52241,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectfvATI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetArrayObjectivATI (
JNIEnv *env, jobject obj,
@@ -52280,13 +52280,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectivATI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantArrayObjectATI (
JNIEnv *env, jobject obj,
@@ -52308,13 +52308,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantArrayObjectATI ( GLuint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantArrayObjectfvATI (
JNIEnv *env, jobject obj,
@@ -52347,13 +52347,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantArrayObjectivATI (
JNIEnv *env, jobject obj,
@@ -52386,13 +52386,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBeginVertexShaderEXT (
JNIEnv *env, jobject obj)
@@ -52404,13 +52404,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEndVertexShaderEXT (
JNIEnv *env, jobject obj)
@@ -52422,13 +52422,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindVertexShaderEXT (
JNIEnv *env, jobject obj,
@@ -52442,13 +52442,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenVertexShadersEXT (
JNIEnv *env, jobject obj,
@@ -52465,13 +52465,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenVertexShadersEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteVertexShaderEXT (
JNIEnv *env, jobject obj,
@@ -52485,13 +52485,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShaderOp1EXT (
JNIEnv *env, jobject obj,
@@ -52509,13 +52509,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp1EXT ( GLenum , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShaderOp2EXT (
JNIEnv *env, jobject obj,
@@ -52535,13 +52535,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp2EXT ( GLenum , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShaderOp3EXT (
JNIEnv *env, jobject obj,
@@ -52563,13 +52563,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp3EXT ( GLenum , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSwizzleEXT (
JNIEnv *env, jobject obj,
@@ -52593,13 +52593,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSwizzleEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWriteMaskEXT (
JNIEnv *env, jobject obj,
@@ -52623,13 +52623,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWriteMaskEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInsertComponentEXT (
JNIEnv *env, jobject obj,
@@ -52647,13 +52647,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInsertComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glExtractComponentEXT (
JNIEnv *env, jobject obj,
@@ -52671,13 +52671,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glExtractComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenSymbolsEXT (
JNIEnv *env, jobject obj,
@@ -52700,13 +52700,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenSymbolsEXT ( GLenum , GLenum , GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetInvariantEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -52931,13 +52931,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetInvariantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetLocalConstantEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -53162,13 +53162,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetLocalConstantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantbvEXT (
JNIEnv *env, jobject obj,
@@ -53199,13 +53199,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantbvEXT ( GLuint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantsvEXT (
JNIEnv *env, jobject obj,
@@ -53236,13 +53236,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantsvEXT ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantivEXT (
JNIEnv *env, jobject obj,
@@ -53273,13 +53273,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantivEXT ( GLuint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantfvEXT (
JNIEnv *env, jobject obj,
@@ -53310,13 +53310,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantfvEXT ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantdvEXT (
JNIEnv *env, jobject obj,
@@ -53347,13 +53347,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantdvEXT ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantubvEXT (
JNIEnv *env, jobject obj,
@@ -53384,13 +53384,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantubvEXT ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantusvEXT (
JNIEnv *env, jobject obj,
@@ -53421,13 +53421,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantusvEXT ( GLuint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantuivEXT (
JNIEnv *env, jobject obj,
@@ -53458,13 +53458,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantuivEXT ( GLuint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -53703,13 +53703,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantPointerEXT ( GLuint , GLenum , GLuint , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnableVariantClientStateEXT (
JNIEnv *env, jobject obj,
@@ -53723,13 +53723,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDisableVariantClientStateEXT (
JNIEnv *env, jobject obj,
@@ -53743,13 +53743,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindLightParameterEXT (
JNIEnv *env, jobject obj,
@@ -53768,13 +53768,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindLightParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindMaterialParameterEXT (
JNIEnv *env, jobject obj,
@@ -53793,13 +53793,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindMaterialParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindTexGenParameterEXT (
JNIEnv *env, jobject obj,
@@ -53820,13 +53820,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTexGenParameterEXT ( GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindTextureUnitParameterEXT (
JNIEnv *env, jobject obj,
@@ -53845,13 +53845,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTextureUnitParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindParameterEXT (
JNIEnv *env, jobject obj,
@@ -53868,13 +53868,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindParameterEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsVariantEnabledEXT (
JNIEnv *env, jobject obj,
@@ -53893,13 +53893,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsVariantEnabledEXT ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -53932,13 +53932,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -53971,13 +53971,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -54010,13 +54010,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantPointervEXT__II_3_3B (
JNIEnv *env, jobject obj,
@@ -54241,13 +54241,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantPointervEXT ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetInvariantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -54280,13 +54280,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetInvariantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -54319,13 +54319,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetInvariantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -54358,13 +54358,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLocalConstantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -54397,13 +54397,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLocalConstantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -54436,13 +54436,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLocalConstantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -54475,13 +54475,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1s (
JNIEnv *env, jobject obj,
@@ -54497,13 +54497,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1s ( GLenum , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1sv (
JNIEnv *env, jobject obj,
@@ -54534,13 +54534,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1i (
JNIEnv *env, jobject obj,
@@ -54556,13 +54556,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1i ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1iv (
JNIEnv *env, jobject obj,
@@ -54593,13 +54593,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1f (
JNIEnv *env, jobject obj,
@@ -54615,13 +54615,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1f ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1fv (
JNIEnv *env, jobject obj,
@@ -54652,13 +54652,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1d (
JNIEnv *env, jobject obj,
@@ -54674,13 +54674,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1d ( GLenum , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1dv (
JNIEnv *env, jobject obj,
@@ -54711,13 +54711,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2s (
JNIEnv *env, jobject obj,
@@ -54735,13 +54735,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2s ( GLenum , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2sv (
JNIEnv *env, jobject obj,
@@ -54772,13 +54772,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2i (
JNIEnv *env, jobject obj,
@@ -54796,13 +54796,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2i ( GLenum , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2iv (
JNIEnv *env, jobject obj,
@@ -54833,13 +54833,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2f (
JNIEnv *env, jobject obj,
@@ -54857,13 +54857,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2f ( GLenum , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2fv (
JNIEnv *env, jobject obj,
@@ -54894,13 +54894,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2d (
JNIEnv *env, jobject obj,
@@ -54918,13 +54918,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2d ( GLenum , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2dv (
JNIEnv *env, jobject obj,
@@ -54955,13 +54955,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3s (
JNIEnv *env, jobject obj,
@@ -54981,13 +54981,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3sv (
JNIEnv *env, jobject obj,
@@ -55018,13 +55018,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3i (
JNIEnv *env, jobject obj,
@@ -55044,13 +55044,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3iv (
JNIEnv *env, jobject obj,
@@ -55081,13 +55081,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3f (
JNIEnv *env, jobject obj,
@@ -55107,13 +55107,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3fv (
JNIEnv *env, jobject obj,
@@ -55144,13 +55144,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3d (
JNIEnv *env, jobject obj,
@@ -55170,13 +55170,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3dv (
JNIEnv *env, jobject obj,
@@ -55207,13 +55207,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4s (
JNIEnv *env, jobject obj,
@@ -55235,13 +55235,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4s ( GLenum , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4sv (
JNIEnv *env, jobject obj,
@@ -55272,13 +55272,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4i (
JNIEnv *env, jobject obj,
@@ -55300,13 +55300,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4i ( GLenum , GLint , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4iv (
JNIEnv *env, jobject obj,
@@ -55337,13 +55337,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4f (
JNIEnv *env, jobject obj,
@@ -55365,13 +55365,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4f ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4fv (
JNIEnv *env, jobject obj,
@@ -55402,13 +55402,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4d (
JNIEnv *env, jobject obj,
@@ -55430,13 +55430,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4d ( GLenum , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4dv (
JNIEnv *env, jobject obj,
@@ -55467,13 +55467,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3b (
JNIEnv *env, jobject obj,
@@ -55493,13 +55493,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3b ( GLenum , GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3bv (
JNIEnv *env, jobject obj,
@@ -55530,13 +55530,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3bv ( GLenum , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3s (
JNIEnv *env, jobject obj,
@@ -55556,13 +55556,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3sv (
JNIEnv *env, jobject obj,
@@ -55593,13 +55593,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3i (
JNIEnv *env, jobject obj,
@@ -55619,13 +55619,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3iv (
JNIEnv *env, jobject obj,
@@ -55656,13 +55656,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3f (
JNIEnv *env, jobject obj,
@@ -55682,13 +55682,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3fv (
JNIEnv *env, jobject obj,
@@ -55719,13 +55719,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3d (
JNIEnv *env, jobject obj,
@@ -55745,13 +55745,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3dv (
JNIEnv *env, jobject obj,
@@ -55782,13 +55782,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClientActiveVertexStream (
JNIEnv *env, jobject obj,
@@ -55802,13 +55802,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveVertexStream ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexBlendEnvi (
JNIEnv *env, jobject obj,
@@ -55824,13 +55824,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvi ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexBlendEnvf (
JNIEnv *env, jobject obj,
@@ -55846,5 +55846,5 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/CNativeCode/OpenGL_JauJNI14_funcs.c b/CNativeCode/OpenGL_JauJNI14_funcs.c
index 691fd11..c0eb12d 100644
--- a/CNativeCode/OpenGL_JauJNI14_funcs.c
+++ b/CNativeCode/OpenGL_JauJNI14_funcs.c
@@ -4,56 +4,61 @@
*/
-/*
- * Leo Chan -- 1995
- * lchan@cgl.uwaterloo.ca
- *
- * This mammoth C file takes care of all the native implementation for the
- * bulk of OpenGL commands
- * ---------------
- *
- * Sven Goethel
- *
- * September 1997
- */
-
-/*
- * need to include the JAVA internal header files for macros and function
- * prototypes required to maipulated JAVA data structures and functions
- *
- * StubPreamble.h includes the structure and macro definitions neede to
- * convert JAVA data structures into C data structures.
- *
- */
-
-#include "OpenGL_misc.h"
-
-/*
- * the next thing to include are special headers that were created by
- * JAVAH. They include the C structure definitions for the JAVA classes
- */
-#include "gl4java_GLFunc14JauJNI.h"
-
-/*--------------------------------------------------------------------------
- * here on in is just regular apple pie C
- */
-
-#ifndef LIBAPIENTRY
- #define LIBAPIENTRY
-#endif
-#ifndef LIBAPI
- #define LIBAPI
-#endif
-
-#ifndef CALLBACK
- #define CALLBACK
-#endif
+/*
+ * Leo Chan -- 1995
+ * lchan@cgl.uwaterloo.ca
+ *
+ * This mammoth C file takes care of all the native implementation for the
+ * bulk of OpenGL commands
+ * ---------------
+ *
+ * Sven Goethel
+ *
+ * September 1997
+ */
+
+/*
+ * need to include the JAVA internal header files for macros and function
+ * prototypes required to maipulated JAVA data structures and functions
+ *
+ * StubPreamble.h includes the structure and macro definitions neede to
+ * convert JAVA data structures into C data structures.
+ *
+ */
+
+#include "OpenGL_misc.h"
+
+/*
+ * the next thing to include are special headers that were created by
+ * JAVAH. They include the C structure definitions for the JAVA classes
+ */
+#include "gl4java_GLFunc14JauJNI.h"
+
+/*--------------------------------------------------------------------------
+ * here on in is just regular apple pie C
+ */
+
+#ifndef LIBAPIENTRY
+ #define LIBAPIENTRY
+#endif
+#ifndef LIBAPI
+ #define LIBAPI
+#endif
+
+#ifndef CALLBACK
+ #define CALLBACK
+#endif
/** THIS IS A MANUAL CODED PART
- gl-manualCodedImplJNI.java
+ gl-manualCodedImplJNI14.java
*/
static const char _gl_n_a_string[] = "GL-String not avaiable !";
+static const char * _gl_lib_vendor_="Jausoft - Sven Goethel Software Development";
+static const char * _gl_lib_version_="2.8.1.0";
+
+/* ---------------------------------------------------------------------- */
+
JNIEXPORT jstring JNICALL
Java_gl4java_GLFunc14JauJNI_glGetString ( JNIEnv *env, jobject obj,
jint name )
@@ -70,9 +75,6 @@ Java_gl4java_GLFunc14JauJNI_glGetString ( JNIEnv *env, jobject obj,
return (*env)->NewStringUTF(env, tmpString);
}
-static const char * _gl_lib_vendor_="Jausoft - Sven Goethel Software Development";
-static const char * _gl_lib_version_="2.8.0.8";
-
JNIEXPORT jstring JNICALL
Java_gl4java_GLFunc14JauJNI_getNativeVendor ( JNIEnv *env, jobject obj )
{
@@ -85,9 +87,10 @@ Java_gl4java_GLFunc14JauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return (*env)->NewStringUTF(env, _gl_lib_version_);
}
-//----------------------------------------------------------------------
-// Support for NVidia routines
-//
+/* ---------------------------------------------------------------------- */
+/*
+ * Support for NVidia routines
+ */
#include "ptrtypes.h"
@@ -102,7 +105,7 @@ Java_gl4java_GLFunc14JauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
#include "wgltool.h"
#endif
-#define GET_GL_PROCADDRESS(a) getGLProcAddressHelper (NULL, NULL, (a), NULL, 1, 0);
+#define GET_GL_PROCADDRESS(a) getGLProcAddressHelper (NULL, NULL, (a), NULL, 0);
JNIEXPORT jlong JNICALL
Java_gl4java_GLFunc14JauJNI_glAllocateMemoryNV0(JNIEnv* env, jobject unused,
@@ -153,13 +156,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
* Reading from file: gl-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLFunc14JauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvf ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClearIndex (
JNIEnv *env, jobject obj,
@@ -173,13 +176,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearIndex ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClearColor (
JNIEnv *env, jobject obj,
@@ -199,13 +202,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClear (
JNIEnv *env, jobject obj,
@@ -219,13 +222,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClear ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexMask (
JNIEnv *env, jobject obj,
@@ -239,13 +242,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorMask (
JNIEnv *env, jobject obj,
@@ -265,13 +268,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMask ( GLboolean red , GLboolean green , GLboolean blue , GLboolean alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glAlphaFunc (
JNIEnv *env, jobject obj,
@@ -287,13 +290,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFunc ( GLenum func , GLclampf ref ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBlendFunc (
JNIEnv *env, jobject obj,
@@ -309,13 +312,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFunc ( GLenum sfactor , GLenum dfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLogicOp (
JNIEnv *env, jobject obj,
@@ -329,13 +332,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLogicOp ( GLenum opcode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCullFace (
JNIEnv *env, jobject obj,
@@ -349,13 +352,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFrontFace (
JNIEnv *env, jobject obj,
@@ -369,13 +372,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrontFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPointSize (
JNIEnv *env, jobject obj,
@@ -389,13 +392,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointSize ( GLfloat size ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLineWidth (
JNIEnv *env, jobject obj,
@@ -409,13 +412,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLineWidth ( GLfloat width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLineStipple (
JNIEnv *env, jobject obj,
@@ -431,13 +434,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLineStipple ( GLint factor , GLushort pattern ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPolygonMode (
JNIEnv *env, jobject obj,
@@ -453,13 +456,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonMode ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPolygonOffset (
JNIEnv *env, jobject obj,
@@ -475,13 +478,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffset ( GLfloat factor , GLfloat units ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPolygonStipple (
JNIEnv *env, jobject obj,
@@ -504,13 +507,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, mask, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonStipple ( const GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetPolygonStipple (
JNIEnv *env, jobject obj,
@@ -534,13 +537,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, mask, ptr0, (isCopiedArray0 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPolygonStipple ( GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEdgeFlag (
JNIEnv *env, jobject obj,
@@ -554,13 +557,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlag ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEdgeFlagv (
JNIEnv *env, jobject obj,
@@ -583,13 +586,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, flag, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagv ( const GLboolean * flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glScissor (
JNIEnv *env, jobject obj,
@@ -609,13 +612,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScissor ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClipPlane (
JNIEnv *env, jobject obj,
@@ -640,13 +643,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, equation, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClipPlane ( GLenum plane , const GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetClipPlane (
JNIEnv *env, jobject obj,
@@ -672,13 +675,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, equation, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetClipPlane ( GLenum plane , GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDrawBuffer (
JNIEnv *env, jobject obj,
@@ -692,13 +695,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReadBuffer (
JNIEnv *env, jobject obj,
@@ -712,13 +715,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEnable (
JNIEnv *env, jobject obj,
@@ -732,13 +735,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDisable (
JNIEnv *env, jobject obj,
@@ -752,13 +755,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glIsEnabled (
JNIEnv *env, jobject obj,
@@ -775,13 +778,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsEnabled ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEnableClientState (
JNIEnv *env, jobject obj,
@@ -795,13 +798,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDisableClientState (
JNIEnv *env, jobject obj,
@@ -815,13 +818,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetBooleanv (
JNIEnv *env, jobject obj,
@@ -847,13 +850,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetBooleanv ( GLenum pname , GLboolean * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetDoublev (
JNIEnv *env, jobject obj,
@@ -879,13 +882,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDoublev ( GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetFloatv (
JNIEnv *env, jobject obj,
@@ -911,13 +914,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFloatv ( GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetIntegerv (
JNIEnv *env, jobject obj,
@@ -943,13 +946,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetIntegerv ( GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPushAttrib (
JNIEnv *env, jobject obj,
@@ -963,13 +966,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPopAttrib (
JNIEnv *env, jobject obj)
@@ -981,13 +984,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPushClientAttrib (
JNIEnv *env, jobject obj,
@@ -1001,13 +1004,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushClientAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPopClientAttrib (
JNIEnv *env, jobject obj)
@@ -1019,13 +1022,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopClientAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glRenderMode (
JNIEnv *env, jobject obj,
@@ -1042,13 +1045,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glRenderMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glGetError (
JNIEnv *env, jobject obj)
@@ -1063,13 +1066,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLenum glGetError ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFinish (
JNIEnv *env, jobject obj)
@@ -1081,13 +1084,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinish ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFlush (
JNIEnv *env, jobject obj)
@@ -1099,13 +1102,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlush ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glHint (
JNIEnv *env, jobject obj,
@@ -1121,13 +1124,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHint ( GLenum target , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClearDepth (
JNIEnv *env, jobject obj,
@@ -1141,13 +1144,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearDepth ( GLclampd depth ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDepthFunc (
JNIEnv *env, jobject obj,
@@ -1161,13 +1164,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthFunc ( GLenum func ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDepthMask (
JNIEnv *env, jobject obj,
@@ -1181,13 +1184,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthMask ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDepthRange (
JNIEnv *env, jobject obj,
@@ -1203,13 +1206,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthRange ( GLclampd near_val , GLclampd far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClearAccum (
JNIEnv *env, jobject obj,
@@ -1229,13 +1232,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearAccum ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glAccum (
JNIEnv *env, jobject obj,
@@ -1251,13 +1254,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAccum ( GLenum op , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMatrixMode (
JNIEnv *env, jobject obj,
@@ -1271,13 +1274,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glOrtho (
JNIEnv *env, jobject obj,
@@ -1301,13 +1304,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glOrtho ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFrustum (
JNIEnv *env, jobject obj,
@@ -1331,13 +1334,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrustum ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glViewport (
JNIEnv *env, jobject obj,
@@ -1357,13 +1360,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glViewport ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPushMatrix (
JNIEnv *env, jobject obj)
@@ -1375,13 +1378,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPopMatrix (
JNIEnv *env, jobject obj)
@@ -1393,13 +1396,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadIdentity (
JNIEnv *env, jobject obj)
@@ -1411,13 +1414,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentity ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadMatrixd (
JNIEnv *env, jobject obj,
@@ -1440,13 +1443,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadMatrixf (
JNIEnv *env, jobject obj,
@@ -1469,13 +1472,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultMatrixd (
JNIEnv *env, jobject obj,
@@ -1498,13 +1501,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultMatrixf (
JNIEnv *env, jobject obj,
@@ -1527,13 +1530,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRotated (
JNIEnv *env, jobject obj,
@@ -1553,13 +1556,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRotated ( GLdouble angle , GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRotatef (
JNIEnv *env, jobject obj,
@@ -1579,13 +1582,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRotatef ( GLfloat angle , GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glScaled (
JNIEnv *env, jobject obj,
@@ -1603,13 +1606,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScaled ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glScalef (
JNIEnv *env, jobject obj,
@@ -1627,13 +1630,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScalef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTranslated (
JNIEnv *env, jobject obj,
@@ -1651,13 +1654,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslated ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTranslatef (
JNIEnv *env, jobject obj,
@@ -1675,13 +1678,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslatef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glIsList (
JNIEnv *env, jobject obj,
@@ -1698,13 +1701,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeleteLists (
JNIEnv *env, jobject obj,
@@ -1720,13 +1723,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteLists ( GLuint list , GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glGenLists (
JNIEnv *env, jobject obj,
@@ -1743,13 +1746,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenLists ( GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNewList (
JNIEnv *env, jobject obj,
@@ -1765,13 +1768,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNewList ( GLuint list , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEndList (
JNIEnv *env, jobject obj)
@@ -1783,13 +1786,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndList ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCallList (
JNIEnv *env, jobject obj,
@@ -1803,13 +1806,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCallList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCallLists__II_3B (
JNIEnv *env, jobject obj,
@@ -2019,13 +2022,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCallLists ( GLsizei n , GLenum type , const GLvoid * lists ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glListBase (
JNIEnv *env, jobject obj,
@@ -2039,13 +2042,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListBase ( GLuint base ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBegin (
JNIEnv *env, jobject obj,
@@ -2059,13 +2062,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBegin ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEnd (
JNIEnv *env, jobject obj)
@@ -2077,13 +2080,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnd ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex2d (
JNIEnv *env, jobject obj,
@@ -2099,13 +2102,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex2f (
JNIEnv *env, jobject obj,
@@ -2121,13 +2124,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex2i (
JNIEnv *env, jobject obj,
@@ -2143,13 +2146,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex2s (
JNIEnv *env, jobject obj,
@@ -2165,13 +2168,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex3d (
JNIEnv *env, jobject obj,
@@ -2189,13 +2192,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex3f (
JNIEnv *env, jobject obj,
@@ -2213,13 +2216,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex3i (
JNIEnv *env, jobject obj,
@@ -2237,13 +2240,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex3s (
JNIEnv *env, jobject obj,
@@ -2261,13 +2264,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex4d (
JNIEnv *env, jobject obj,
@@ -2287,13 +2290,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex4f (
JNIEnv *env, jobject obj,
@@ -2313,13 +2316,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex4i (
JNIEnv *env, jobject obj,
@@ -2339,13 +2342,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex4s (
JNIEnv *env, jobject obj,
@@ -2365,13 +2368,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex2dv (
JNIEnv *env, jobject obj,
@@ -2394,13 +2397,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex2fv (
JNIEnv *env, jobject obj,
@@ -2423,13 +2426,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex2iv (
JNIEnv *env, jobject obj,
@@ -2452,13 +2455,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex2sv (
JNIEnv *env, jobject obj,
@@ -2481,13 +2484,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex3dv (
JNIEnv *env, jobject obj,
@@ -2510,13 +2513,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex3fv (
JNIEnv *env, jobject obj,
@@ -2539,13 +2542,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex3iv (
JNIEnv *env, jobject obj,
@@ -2568,13 +2571,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex3sv (
JNIEnv *env, jobject obj,
@@ -2597,13 +2600,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex4dv (
JNIEnv *env, jobject obj,
@@ -2626,13 +2629,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex4fv (
JNIEnv *env, jobject obj,
@@ -2655,13 +2658,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex4iv (
JNIEnv *env, jobject obj,
@@ -2684,13 +2687,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertex4sv (
JNIEnv *env, jobject obj,
@@ -2713,13 +2716,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3b (
JNIEnv *env, jobject obj,
@@ -2737,13 +2740,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3b ( GLbyte nx , GLbyte ny , GLbyte nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3d (
JNIEnv *env, jobject obj,
@@ -2761,13 +2764,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3d ( GLdouble nx , GLdouble ny , GLdouble nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3f (
JNIEnv *env, jobject obj,
@@ -2785,13 +2788,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3f ( GLfloat nx , GLfloat ny , GLfloat nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3i (
JNIEnv *env, jobject obj,
@@ -2809,13 +2812,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3i ( GLint nx , GLint ny , GLint nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3s (
JNIEnv *env, jobject obj,
@@ -2833,13 +2836,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3s ( GLshort nx , GLshort ny , GLshort nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3bv (
JNIEnv *env, jobject obj,
@@ -2862,13 +2865,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3dv (
JNIEnv *env, jobject obj,
@@ -2891,13 +2894,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3fv (
JNIEnv *env, jobject obj,
@@ -2920,13 +2923,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3iv (
JNIEnv *env, jobject obj,
@@ -2949,13 +2952,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3sv (
JNIEnv *env, jobject obj,
@@ -2978,13 +2981,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexd (
JNIEnv *env, jobject obj,
@@ -2998,13 +3001,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexd ( GLdouble c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexf (
JNIEnv *env, jobject obj,
@@ -3018,13 +3021,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexf ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexi (
JNIEnv *env, jobject obj,
@@ -3038,13 +3041,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexi ( GLint c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexs (
JNIEnv *env, jobject obj,
@@ -3058,13 +3061,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexs ( GLshort c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexub (
JNIEnv *env, jobject obj,
@@ -3078,13 +3081,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexub ( GLubyte c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexdv (
JNIEnv *env, jobject obj,
@@ -3107,13 +3110,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexdv ( const GLdouble * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexfv (
JNIEnv *env, jobject obj,
@@ -3136,13 +3139,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexfv ( const GLfloat * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexiv (
JNIEnv *env, jobject obj,
@@ -3165,13 +3168,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexiv ( const GLint * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexsv (
JNIEnv *env, jobject obj,
@@ -3194,13 +3197,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexsv ( const GLshort * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexubv (
JNIEnv *env, jobject obj,
@@ -3223,13 +3226,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexubv ( const GLubyte * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3b (
JNIEnv *env, jobject obj,
@@ -3247,13 +3250,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3b ( GLbyte red , GLbyte green , GLbyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3d (
JNIEnv *env, jobject obj,
@@ -3271,13 +3274,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3d ( GLdouble red , GLdouble green , GLdouble blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3f (
JNIEnv *env, jobject obj,
@@ -3295,13 +3298,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3f ( GLfloat red , GLfloat green , GLfloat blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3i (
JNIEnv *env, jobject obj,
@@ -3319,13 +3322,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3i ( GLint red , GLint green , GLint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3s (
JNIEnv *env, jobject obj,
@@ -3343,13 +3346,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3s ( GLshort red , GLshort green , GLshort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3ub (
JNIEnv *env, jobject obj,
@@ -3367,13 +3370,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ub ( GLubyte red , GLubyte green , GLubyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3ui (
JNIEnv *env, jobject obj,
@@ -3391,13 +3394,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ui ( GLuint red , GLuint green , GLuint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3us (
JNIEnv *env, jobject obj,
@@ -3415,13 +3418,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3us ( GLushort red , GLushort green , GLushort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4b (
JNIEnv *env, jobject obj,
@@ -3441,13 +3444,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4b ( GLbyte red , GLbyte green , GLbyte blue , GLbyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4d (
JNIEnv *env, jobject obj,
@@ -3467,13 +3470,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4d ( GLdouble red , GLdouble green , GLdouble blue , GLdouble alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4f (
JNIEnv *env, jobject obj,
@@ -3493,13 +3496,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4f ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4i (
JNIEnv *env, jobject obj,
@@ -3519,13 +3522,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4i ( GLint red , GLint green , GLint blue , GLint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4s (
JNIEnv *env, jobject obj,
@@ -3545,13 +3548,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4s ( GLshort red , GLshort green , GLshort blue , GLshort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4ub (
JNIEnv *env, jobject obj,
@@ -3571,13 +3574,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ub ( GLubyte red , GLubyte green , GLubyte blue , GLubyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4ui (
JNIEnv *env, jobject obj,
@@ -3597,13 +3600,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ui ( GLuint red , GLuint green , GLuint blue , GLuint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4us (
JNIEnv *env, jobject obj,
@@ -3623,13 +3626,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4us ( GLushort red , GLushort green , GLushort blue , GLushort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3bv (
JNIEnv *env, jobject obj,
@@ -3652,13 +3655,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3dv (
JNIEnv *env, jobject obj,
@@ -3681,13 +3684,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3fv (
JNIEnv *env, jobject obj,
@@ -3710,13 +3713,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3iv (
JNIEnv *env, jobject obj,
@@ -3739,13 +3742,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3sv (
JNIEnv *env, jobject obj,
@@ -3768,13 +3771,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3ubv (
JNIEnv *env, jobject obj,
@@ -3797,13 +3800,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3uiv (
JNIEnv *env, jobject obj,
@@ -3826,13 +3829,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3usv (
JNIEnv *env, jobject obj,
@@ -3855,13 +3858,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4bv (
JNIEnv *env, jobject obj,
@@ -3884,13 +3887,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4dv (
JNIEnv *env, jobject obj,
@@ -3913,13 +3916,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4fv (
JNIEnv *env, jobject obj,
@@ -3942,13 +3945,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4iv (
JNIEnv *env, jobject obj,
@@ -3971,13 +3974,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4sv (
JNIEnv *env, jobject obj,
@@ -4000,13 +4003,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4ubv (
JNIEnv *env, jobject obj,
@@ -4029,13 +4032,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4uiv (
JNIEnv *env, jobject obj,
@@ -4058,13 +4061,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4usv (
JNIEnv *env, jobject obj,
@@ -4087,13 +4090,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord1d (
JNIEnv *env, jobject obj,
@@ -4107,13 +4110,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1d ( GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord1f (
JNIEnv *env, jobject obj,
@@ -4127,13 +4130,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1f ( GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord1i (
JNIEnv *env, jobject obj,
@@ -4147,13 +4150,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1i ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord1s (
JNIEnv *env, jobject obj,
@@ -4167,13 +4170,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1s ( GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2d (
JNIEnv *env, jobject obj,
@@ -4189,13 +4192,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2d ( GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2f (
JNIEnv *env, jobject obj,
@@ -4211,13 +4214,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2f ( GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2i (
JNIEnv *env, jobject obj,
@@ -4233,13 +4236,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2i ( GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2s (
JNIEnv *env, jobject obj,
@@ -4255,13 +4258,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2s ( GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord3d (
JNIEnv *env, jobject obj,
@@ -4279,13 +4282,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3d ( GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord3f (
JNIEnv *env, jobject obj,
@@ -4303,13 +4306,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3f ( GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord3i (
JNIEnv *env, jobject obj,
@@ -4327,13 +4330,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3i ( GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord3s (
JNIEnv *env, jobject obj,
@@ -4351,13 +4354,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3s ( GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4d (
JNIEnv *env, jobject obj,
@@ -4377,13 +4380,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4d ( GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4f (
JNIEnv *env, jobject obj,
@@ -4403,13 +4406,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4f ( GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4i (
JNIEnv *env, jobject obj,
@@ -4429,13 +4432,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4i ( GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4s (
JNIEnv *env, jobject obj,
@@ -4455,13 +4458,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4s ( GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord1dv (
JNIEnv *env, jobject obj,
@@ -4484,13 +4487,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord1fv (
JNIEnv *env, jobject obj,
@@ -4513,13 +4516,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord1iv (
JNIEnv *env, jobject obj,
@@ -4542,13 +4545,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord1sv (
JNIEnv *env, jobject obj,
@@ -4571,13 +4574,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2dv (
JNIEnv *env, jobject obj,
@@ -4600,13 +4603,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fv (
JNIEnv *env, jobject obj,
@@ -4629,13 +4632,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2iv (
JNIEnv *env, jobject obj,
@@ -4658,13 +4661,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2sv (
JNIEnv *env, jobject obj,
@@ -4687,13 +4690,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord3dv (
JNIEnv *env, jobject obj,
@@ -4716,13 +4719,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord3fv (
JNIEnv *env, jobject obj,
@@ -4745,13 +4748,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord3iv (
JNIEnv *env, jobject obj,
@@ -4774,13 +4777,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord3sv (
JNIEnv *env, jobject obj,
@@ -4803,13 +4806,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4dv (
JNIEnv *env, jobject obj,
@@ -4832,13 +4835,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4fv (
JNIEnv *env, jobject obj,
@@ -4861,13 +4864,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4iv (
JNIEnv *env, jobject obj,
@@ -4890,13 +4893,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4sv (
JNIEnv *env, jobject obj,
@@ -4919,13 +4922,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos2d (
JNIEnv *env, jobject obj,
@@ -4941,13 +4944,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos2f (
JNIEnv *env, jobject obj,
@@ -4963,13 +4966,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos2i (
JNIEnv *env, jobject obj,
@@ -4985,13 +4988,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos2s (
JNIEnv *env, jobject obj,
@@ -5007,13 +5010,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos3d (
JNIEnv *env, jobject obj,
@@ -5031,13 +5034,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos3f (
JNIEnv *env, jobject obj,
@@ -5055,13 +5058,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos3i (
JNIEnv *env, jobject obj,
@@ -5079,13 +5082,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos3s (
JNIEnv *env, jobject obj,
@@ -5103,13 +5106,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos4d (
JNIEnv *env, jobject obj,
@@ -5129,13 +5132,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos4f (
JNIEnv *env, jobject obj,
@@ -5155,13 +5158,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos4i (
JNIEnv *env, jobject obj,
@@ -5181,13 +5184,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos4s (
JNIEnv *env, jobject obj,
@@ -5207,13 +5210,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos2dv (
JNIEnv *env, jobject obj,
@@ -5236,13 +5239,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos2fv (
JNIEnv *env, jobject obj,
@@ -5265,13 +5268,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos2iv (
JNIEnv *env, jobject obj,
@@ -5294,13 +5297,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos2sv (
JNIEnv *env, jobject obj,
@@ -5323,13 +5326,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos3dv (
JNIEnv *env, jobject obj,
@@ -5352,13 +5355,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos3fv (
JNIEnv *env, jobject obj,
@@ -5381,13 +5384,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos3iv (
JNIEnv *env, jobject obj,
@@ -5410,13 +5413,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos3sv (
JNIEnv *env, jobject obj,
@@ -5439,13 +5442,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos4dv (
JNIEnv *env, jobject obj,
@@ -5468,13 +5471,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos4fv (
JNIEnv *env, jobject obj,
@@ -5497,13 +5500,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos4iv (
JNIEnv *env, jobject obj,
@@ -5526,13 +5529,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRasterPos4sv (
JNIEnv *env, jobject obj,
@@ -5555,13 +5558,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRectd (
JNIEnv *env, jobject obj,
@@ -5581,13 +5584,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectd ( GLdouble x1 , GLdouble y1 , GLdouble x2 , GLdouble y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRectf (
JNIEnv *env, jobject obj,
@@ -5607,13 +5610,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectf ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRecti (
JNIEnv *env, jobject obj,
@@ -5633,13 +5636,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRecti ( GLint x1 , GLint y1 , GLint x2 , GLint y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRects (
JNIEnv *env, jobject obj,
@@ -5659,13 +5662,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRects ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRectdv (
JNIEnv *env, jobject obj,
@@ -5699,13 +5702,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectdv ( const GLdouble * v1 , const GLdouble * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRectfv (
JNIEnv *env, jobject obj,
@@ -5739,13 +5742,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectfv ( const GLfloat * v1 , const GLfloat * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRectiv (
JNIEnv *env, jobject obj,
@@ -5779,13 +5782,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectiv ( const GLint * v1 , const GLint * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRectsv (
JNIEnv *env, jobject obj,
@@ -5819,13 +5822,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectsv ( const GLshort * v1 , const GLshort * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -6051,13 +6054,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalPointer__II_3B (
JNIEnv *env, jobject obj,
@@ -6267,13 +6270,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -6499,13 +6502,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexPointer__II_3B (
JNIEnv *env, jobject obj,
@@ -6715,13 +6718,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoordPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -6947,13 +6950,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEdgeFlagPointer__I_3B (
JNIEnv *env, jobject obj,
@@ -7147,13 +7150,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointer ( GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetPointerv__I_3_3B (
JNIEnv *env, jobject obj,
@@ -7329,13 +7332,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointerv ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glArrayElement (
JNIEnv *env, jobject obj,
@@ -7349,13 +7352,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElement ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDrawArrays (
JNIEnv *env, jobject obj,
@@ -7373,13 +7376,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArrays ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDrawElements__III_3B (
JNIEnv *env, jobject obj,
@@ -7605,13 +7608,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawElements ( GLenum mode , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glInterleavedArrays__II_3B (
JNIEnv *env, jobject obj,
@@ -7821,13 +7824,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInterleavedArrays ( GLenum format , GLsizei stride , const GLvoid * pointer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glShadeModel (
JNIEnv *env, jobject obj,
@@ -7841,13 +7844,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShadeModel ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLightf (
JNIEnv *env, jobject obj,
@@ -7865,13 +7868,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightf ( GLenum light , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLighti (
JNIEnv *env, jobject obj,
@@ -7889,13 +7892,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLighti ( GLenum light , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLightfv (
JNIEnv *env, jobject obj,
@@ -7922,13 +7925,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightfv ( GLenum light , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLightiv (
JNIEnv *env, jobject obj,
@@ -7955,13 +7958,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightiv ( GLenum light , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetLightfv (
JNIEnv *env, jobject obj,
@@ -7989,13 +7992,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightfv ( GLenum light , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetLightiv (
JNIEnv *env, jobject obj,
@@ -8023,13 +8026,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightiv ( GLenum light , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLightModelf (
JNIEnv *env, jobject obj,
@@ -8045,13 +8048,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLightModeli (
JNIEnv *env, jobject obj,
@@ -8067,13 +8070,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeli ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLightModelfv (
JNIEnv *env, jobject obj,
@@ -8098,13 +8101,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLightModeliv (
JNIEnv *env, jobject obj,
@@ -8129,13 +8132,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeliv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMaterialf (
JNIEnv *env, jobject obj,
@@ -8153,13 +8156,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialf ( GLenum face , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMateriali (
JNIEnv *env, jobject obj,
@@ -8177,13 +8180,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMateriali ( GLenum face , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMaterialfv (
JNIEnv *env, jobject obj,
@@ -8210,13 +8213,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialfv ( GLenum face , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMaterialiv (
JNIEnv *env, jobject obj,
@@ -8243,13 +8246,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialiv ( GLenum face , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMaterialfv (
JNIEnv *env, jobject obj,
@@ -8277,13 +8280,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialfv ( GLenum face , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMaterialiv (
JNIEnv *env, jobject obj,
@@ -8311,13 +8314,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialiv ( GLenum face , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorMaterial (
JNIEnv *env, jobject obj,
@@ -8333,13 +8336,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMaterial ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelZoom (
JNIEnv *env, jobject obj,
@@ -8355,13 +8358,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelZoom ( GLfloat xfactor , GLfloat yfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelStoref (
JNIEnv *env, jobject obj,
@@ -8377,13 +8380,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStoref ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelStorei (
JNIEnv *env, jobject obj,
@@ -8399,13 +8402,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStorei ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTransferf (
JNIEnv *env, jobject obj,
@@ -8421,13 +8424,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTransferi (
JNIEnv *env, jobject obj,
@@ -8443,13 +8446,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelMapfv (
JNIEnv *env, jobject obj,
@@ -8476,13 +8479,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapfv ( GLenum map , GLint mapsize , const GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelMapuiv (
JNIEnv *env, jobject obj,
@@ -8509,13 +8512,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapuiv ( GLenum map , GLint mapsize , const GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelMapusv (
JNIEnv *env, jobject obj,
@@ -8542,13 +8545,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapusv ( GLenum map , GLint mapsize , const GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetPixelMapfv (
JNIEnv *env, jobject obj,
@@ -8574,13 +8577,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapfv ( GLenum map , GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetPixelMapuiv (
JNIEnv *env, jobject obj,
@@ -8606,13 +8609,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapuiv ( GLenum map , GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetPixelMapusv (
JNIEnv *env, jobject obj,
@@ -8638,13 +8641,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapusv ( GLenum map , GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBitmap (
JNIEnv *env, jobject obj,
@@ -8679,13 +8682,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, bitmap, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBitmap ( GLsizei width , GLsizei height , GLfloat xorig , GLfloat yorig , GLfloat xmove , GLfloat ymove , const GLubyte * bitmap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReadPixels__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -8966,13 +8969,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDrawPixels__IIII_3B (
JNIEnv *env, jobject obj,
@@ -9214,13 +9217,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawPixels ( GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyPixels (
JNIEnv *env, jobject obj,
@@ -9242,13 +9245,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glStencilFunc (
JNIEnv *env, jobject obj,
@@ -9266,13 +9269,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilFunc ( GLenum func , GLint ref , GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glStencilMask (
JNIEnv *env, jobject obj,
@@ -9286,13 +9289,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glStencilOp (
JNIEnv *env, jobject obj,
@@ -9310,13 +9313,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilOp ( GLenum fail , GLenum zfail , GLenum zpass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClearStencil (
JNIEnv *env, jobject obj,
@@ -9330,13 +9333,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearStencil ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexGend (
JNIEnv *env, jobject obj,
@@ -9354,13 +9357,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGend ( GLenum coord , GLenum pname , GLdouble param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexGenf (
JNIEnv *env, jobject obj,
@@ -9378,13 +9381,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenf ( GLenum coord , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexGeni (
JNIEnv *env, jobject obj,
@@ -9402,13 +9405,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeni ( GLenum coord , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexGendv (
JNIEnv *env, jobject obj,
@@ -9435,13 +9438,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGendv ( GLenum coord , GLenum pname , const GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexGenfv (
JNIEnv *env, jobject obj,
@@ -9468,13 +9471,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenfv ( GLenum coord , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexGeniv (
JNIEnv *env, jobject obj,
@@ -9501,13 +9504,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeniv ( GLenum coord , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexGendv (
JNIEnv *env, jobject obj,
@@ -9535,13 +9538,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGendv ( GLenum coord , GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexGenfv (
JNIEnv *env, jobject obj,
@@ -9569,13 +9572,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGenfv ( GLenum coord , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexGeniv (
JNIEnv *env, jobject obj,
@@ -9603,13 +9606,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGeniv ( GLenum coord , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexEnvf (
JNIEnv *env, jobject obj,
@@ -9627,13 +9630,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexEnvi (
JNIEnv *env, jobject obj,
@@ -9651,13 +9654,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvi ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexEnvfv (
JNIEnv *env, jobject obj,
@@ -9684,13 +9687,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexEnviv (
JNIEnv *env, jobject obj,
@@ -9717,13 +9720,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnviv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexEnvfv (
JNIEnv *env, jobject obj,
@@ -9751,13 +9754,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnvfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexEnviv (
JNIEnv *env, jobject obj,
@@ -9785,13 +9788,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnviv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexParameterf (
JNIEnv *env, jobject obj,
@@ -9809,13 +9812,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexParameteri (
JNIEnv *env, jobject obj,
@@ -9833,13 +9836,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteri ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexParameterfv (
JNIEnv *env, jobject obj,
@@ -9866,13 +9869,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexParameteriv (
JNIEnv *env, jobject obj,
@@ -9899,13 +9902,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexParameterfv (
JNIEnv *env, jobject obj,
@@ -9933,13 +9936,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexParameteriv (
JNIEnv *env, jobject obj,
@@ -9967,13 +9970,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexLevelParameterfv (
JNIEnv *env, jobject obj,
@@ -10003,13 +10006,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameterfv ( GLenum target , GLint level , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexLevelParameteriv (
JNIEnv *env, jobject obj,
@@ -10039,13 +10042,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameteriv ( GLenum target , GLint level , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexImage1D__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -10335,13 +10338,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage1D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -10647,13 +10650,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage2D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLsizei height , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexImage__IIII_3B (
JNIEnv *env, jobject obj,
@@ -10902,13 +10905,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexImage ( GLenum target , GLint level , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGenTextures (
JNIEnv *env, jobject obj,
@@ -10934,13 +10937,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTextures ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeleteTextures (
JNIEnv *env, jobject obj,
@@ -10965,13 +10968,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTextures ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBindTexture (
JNIEnv *env, jobject obj,
@@ -10987,13 +10990,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTexture ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPrioritizeTextures (
JNIEnv *env, jobject obj,
@@ -11029,13 +11032,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, priorities, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTextures ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glAreTexturesResident (
JNIEnv *env, jobject obj,
@@ -11075,13 +11078,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResident ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glIsTexture (
JNIEnv *env, jobject obj,
@@ -11098,13 +11101,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTexture ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexSubImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -11378,13 +11381,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexSubImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -11690,13 +11693,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexImage1D (
JNIEnv *env, jobject obj,
@@ -11722,13 +11725,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexImage2D (
JNIEnv *env, jobject obj,
@@ -11756,13 +11759,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexSubImage1D (
JNIEnv *env, jobject obj,
@@ -11786,13 +11789,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexSubImage2D (
JNIEnv *env, jobject obj,
@@ -11820,13 +11823,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMap1d (
JNIEnv *env, jobject obj,
@@ -11859,13 +11862,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint stride , GLint order , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMap1f (
JNIEnv *env, jobject obj,
@@ -11898,13 +11901,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint stride , GLint order , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMap2d (
JNIEnv *env, jobject obj,
@@ -11945,13 +11948,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint ustride , GLint uorder , GLdouble v1 , GLdouble v2 , GLint vstride , GLint vorder , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMap2f (
JNIEnv *env, jobject obj,
@@ -11992,13 +11995,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, points, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint ustride , GLint uorder , GLfloat v1 , GLfloat v2 , GLint vstride , GLint vorder , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMapdv (
JNIEnv *env, jobject obj,
@@ -12026,13 +12029,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapdv ( GLenum target , GLenum query , GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMapfv (
JNIEnv *env, jobject obj,
@@ -12060,13 +12063,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapfv ( GLenum target , GLenum query , GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMapiv (
JNIEnv *env, jobject obj,
@@ -12094,13 +12097,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapiv ( GLenum target , GLenum query , GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalCoord1d (
JNIEnv *env, jobject obj,
@@ -12114,13 +12117,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1d ( GLdouble u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalCoord1f (
JNIEnv *env, jobject obj,
@@ -12134,13 +12137,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1f ( GLfloat u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalCoord1dv (
JNIEnv *env, jobject obj,
@@ -12163,13 +12166,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalCoord1fv (
JNIEnv *env, jobject obj,
@@ -12192,13 +12195,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalCoord2d (
JNIEnv *env, jobject obj,
@@ -12214,13 +12217,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2d ( GLdouble u , GLdouble v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalCoord2f (
JNIEnv *env, jobject obj,
@@ -12236,13 +12239,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2f ( GLfloat u , GLfloat v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalCoord2dv (
JNIEnv *env, jobject obj,
@@ -12265,13 +12268,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalCoord2fv (
JNIEnv *env, jobject obj,
@@ -12294,13 +12297,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMapGrid1d (
JNIEnv *env, jobject obj,
@@ -12318,13 +12321,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1d ( GLint un , GLdouble u1 , GLdouble u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMapGrid1f (
JNIEnv *env, jobject obj,
@@ -12342,13 +12345,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1f ( GLint un , GLfloat u1 , GLfloat u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMapGrid2d (
JNIEnv *env, jobject obj,
@@ -12372,13 +12375,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2d ( GLint un , GLdouble u1 , GLdouble u2 , GLint vn , GLdouble v1 , GLdouble v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMapGrid2f (
JNIEnv *env, jobject obj,
@@ -12402,13 +12405,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2f ( GLint un , GLfloat u1 , GLfloat u2 , GLint vn , GLfloat v1 , GLfloat v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalPoint1 (
JNIEnv *env, jobject obj,
@@ -12422,13 +12425,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint1 ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalPoint2 (
JNIEnv *env, jobject obj,
@@ -12444,13 +12447,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint2 ( GLint i , GLint j ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalMesh1 (
JNIEnv *env, jobject obj,
@@ -12468,13 +12471,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh1 ( GLenum mode , GLint i1 , GLint i2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalMesh2 (
JNIEnv *env, jobject obj,
@@ -12496,13 +12499,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh2 ( GLenum mode , GLint i1 , GLint i2 , GLint j1 , GLint j2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogf (
JNIEnv *env, jobject obj,
@@ -12518,13 +12521,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogi (
JNIEnv *env, jobject obj,
@@ -12540,13 +12543,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogfv (
JNIEnv *env, jobject obj,
@@ -12571,13 +12574,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogiv (
JNIEnv *env, jobject obj,
@@ -12602,13 +12605,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogiv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFeedbackBuffer (
JNIEnv *env, jobject obj,
@@ -12636,13 +12639,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, buffer, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFeedbackBuffer ( GLsizei size , GLenum type , GLfloat * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPassThrough (
JNIEnv *env, jobject obj,
@@ -12656,13 +12659,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPassThrough ( GLfloat token ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSelectBuffer (
JNIEnv *env, jobject obj,
@@ -12688,13 +12691,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, buffer, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSelectBuffer ( GLsizei size , GLuint * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glInitNames (
JNIEnv *env, jobject obj)
@@ -12706,13 +12709,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInitNames ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadName (
JNIEnv *env, jobject obj,
@@ -12726,13 +12729,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPushName (
JNIEnv *env, jobject obj,
@@ -12746,13 +12749,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPopName (
JNIEnv *env, jobject obj)
@@ -12764,13 +12767,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopName ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDrawRangeElements__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -13028,13 +13031,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElements ( GLenum mode , GLuint start , GLuint end , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexImage3D__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -13356,13 +13359,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3D ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexSubImage3D__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -13700,13 +13703,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexSubImage3D (
JNIEnv *env, jobject obj,
@@ -13736,13 +13739,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorTable__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -14000,13 +14003,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTable ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorSubTable__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -14264,13 +14267,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTable ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorTableParameteriv (
JNIEnv *env, jobject obj,
@@ -14297,13 +14300,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorTableParameterfv (
JNIEnv *env, jobject obj,
@@ -14330,13 +14333,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyColorSubTable (
JNIEnv *env, jobject obj,
@@ -14358,13 +14361,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTable ( GLenum target , GLsizei start , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyColorTable (
JNIEnv *env, jobject obj,
@@ -14386,13 +14389,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTable ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetColorTable__III_3B (
JNIEnv *env, jobject obj,
@@ -14625,13 +14628,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTable ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetColorTableParameterfv (
JNIEnv *env, jobject obj,
@@ -14659,13 +14662,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetColorTableParameteriv (
JNIEnv *env, jobject obj,
@@ -14693,13 +14696,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBlendEquation (
JNIEnv *env, jobject obj,
@@ -14713,13 +14716,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquation ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBlendColor (
JNIEnv *env, jobject obj,
@@ -14739,13 +14742,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glHistogram (
JNIEnv *env, jobject obj,
@@ -14765,13 +14768,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogram ( GLenum target , GLsizei width , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glResetHistogram (
JNIEnv *env, jobject obj,
@@ -14785,13 +14788,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogram ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetHistogram__IZII_3B (
JNIEnv *env, jobject obj,
@@ -15040,13 +15043,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogram ( GLenum target , GLboolean reset , GLenum format , GLenum type , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetHistogramParameterfv (
JNIEnv *env, jobject obj,
@@ -15074,13 +15077,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetHistogramParameteriv (
JNIEnv *env, jobject obj,
@@ -15108,13 +15111,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMinmax (
JNIEnv *env, jobject obj,
@@ -15132,13 +15135,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmax ( GLenum target , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glResetMinmax (
JNIEnv *env, jobject obj,
@@ -15152,13 +15155,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmax ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMinmax__IZII_3B (
JNIEnv *env, jobject obj,
@@ -15407,13 +15410,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmax ( GLenum target , GLboolean reset , GLenum format , GLenum types , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMinmaxParameterfv (
JNIEnv *env, jobject obj,
@@ -15441,13 +15444,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMinmaxParameteriv (
JNIEnv *env, jobject obj,
@@ -15475,13 +15478,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionFilter1D__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -15739,13 +15742,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1D ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionFilter2D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -16019,13 +16022,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionParameterf (
JNIEnv *env, jobject obj,
@@ -16043,13 +16046,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterf ( GLenum target , GLenum pname , GLfloat params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionParameterfv (
JNIEnv *env, jobject obj,
@@ -16076,13 +16079,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionParameteri (
JNIEnv *env, jobject obj,
@@ -16100,13 +16103,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteri ( GLenum target , GLenum pname , GLint params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionParameteriv (
JNIEnv *env, jobject obj,
@@ -16133,13 +16136,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyConvolutionFilter1D (
JNIEnv *env, jobject obj,
@@ -16161,13 +16164,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyConvolutionFilter2D (
JNIEnv *env, jobject obj,
@@ -16191,13 +16194,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetConvolutionFilter__III_3B (
JNIEnv *env, jobject obj,
@@ -16430,13 +16433,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilter ( GLenum target , GLenum format , GLenum type , GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetConvolutionParameterfv (
JNIEnv *env, jobject obj,
@@ -16464,13 +16467,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetConvolutionParameteriv (
JNIEnv *env, jobject obj,
@@ -16498,13 +16501,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSeparableFilter2D__IIIIII_3B_3B (
JNIEnv *env, jobject obj,
@@ -16867,13 +16870,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * row , const GLvoid * column ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetSeparableFilter__III_3B_3B_3B (
JNIEnv *env, jobject obj,
@@ -17298,13 +17301,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilter ( GLenum target , GLenum format , GLenum type , GLvoid * row , GLvoid * column , GLvoid * span ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glActiveTexture (
JNIEnv *env, jobject obj,
@@ -17318,13 +17321,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClientActiveTexture (
JNIEnv *env, jobject obj,
@@ -17338,13 +17341,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17618,13 +17621,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexImage2D__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17914,13 +17917,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexImage3D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -18226,13 +18229,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexSubImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -18506,13 +18509,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexSubImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -18818,13 +18821,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexSubImage3D__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -19162,13 +19165,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetCompressedTexImage__II_3B (
JNIEnv *env, jobject obj,
@@ -19385,13 +19388,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImage ( GLenum target , GLint lod , GLvoid * img ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1d (
JNIEnv *env, jobject obj,
@@ -19407,13 +19410,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1d ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1dv (
JNIEnv *env, jobject obj,
@@ -19438,13 +19441,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1f (
JNIEnv *env, jobject obj,
@@ -19460,13 +19463,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1f ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1fv (
JNIEnv *env, jobject obj,
@@ -19491,13 +19494,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1i (
JNIEnv *env, jobject obj,
@@ -19513,13 +19516,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1i ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1iv (
JNIEnv *env, jobject obj,
@@ -19544,13 +19547,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1s (
JNIEnv *env, jobject obj,
@@ -19566,13 +19569,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1s ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1sv (
JNIEnv *env, jobject obj,
@@ -19597,13 +19600,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2d (
JNIEnv *env, jobject obj,
@@ -19621,13 +19624,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2d ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2dv (
JNIEnv *env, jobject obj,
@@ -19652,13 +19655,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2f (
JNIEnv *env, jobject obj,
@@ -19676,13 +19679,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2f ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2fv (
JNIEnv *env, jobject obj,
@@ -19707,13 +19710,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2i (
JNIEnv *env, jobject obj,
@@ -19731,13 +19734,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2i ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2iv (
JNIEnv *env, jobject obj,
@@ -19762,13 +19765,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2s (
JNIEnv *env, jobject obj,
@@ -19786,13 +19789,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2s ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2sv (
JNIEnv *env, jobject obj,
@@ -19817,13 +19820,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3d (
JNIEnv *env, jobject obj,
@@ -19843,13 +19846,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3d ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3dv (
JNIEnv *env, jobject obj,
@@ -19874,13 +19877,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3f (
JNIEnv *env, jobject obj,
@@ -19900,13 +19903,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3f ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3fv (
JNIEnv *env, jobject obj,
@@ -19931,13 +19934,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3i (
JNIEnv *env, jobject obj,
@@ -19957,13 +19960,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3i ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3iv (
JNIEnv *env, jobject obj,
@@ -19988,13 +19991,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3s (
JNIEnv *env, jobject obj,
@@ -20014,13 +20017,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3s ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3sv (
JNIEnv *env, jobject obj,
@@ -20045,13 +20048,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4d (
JNIEnv *env, jobject obj,
@@ -20073,13 +20076,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4d ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4dv (
JNIEnv *env, jobject obj,
@@ -20104,13 +20107,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4f (
JNIEnv *env, jobject obj,
@@ -20132,13 +20135,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4f ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4fv (
JNIEnv *env, jobject obj,
@@ -20163,13 +20166,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4i (
JNIEnv *env, jobject obj,
@@ -20191,13 +20194,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4i ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4iv (
JNIEnv *env, jobject obj,
@@ -20222,13 +20225,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4s (
JNIEnv *env, jobject obj,
@@ -20250,13 +20253,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4s ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4sv (
JNIEnv *env, jobject obj,
@@ -20281,13 +20284,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadTransposeMatrixd (
JNIEnv *env, jobject obj,
@@ -20310,13 +20313,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadTransposeMatrixf (
JNIEnv *env, jobject obj,
@@ -20339,13 +20342,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultTransposeMatrixd (
JNIEnv *env, jobject obj,
@@ -20368,13 +20371,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultTransposeMatrixf (
JNIEnv *env, jobject obj,
@@ -20397,13 +20400,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSampleCoverage (
JNIEnv *env, jobject obj,
@@ -20419,13 +20422,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverage ( GLclampf value , GLboolean invert ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSamplePass (
JNIEnv *env, jobject obj,
@@ -20439,13 +20442,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePass ( GLenum pass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glActiveTextureARB (
JNIEnv *env, jobject obj,
@@ -20459,13 +20462,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClientActiveTextureARB (
JNIEnv *env, jobject obj,
@@ -20479,13 +20482,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1dARB (
JNIEnv *env, jobject obj,
@@ -20501,13 +20504,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dARB ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1dvARB (
JNIEnv *env, jobject obj,
@@ -20532,13 +20535,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1fARB (
JNIEnv *env, jobject obj,
@@ -20554,13 +20557,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fARB ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1fvARB (
JNIEnv *env, jobject obj,
@@ -20585,13 +20588,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1iARB (
JNIEnv *env, jobject obj,
@@ -20607,13 +20610,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iARB ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1ivARB (
JNIEnv *env, jobject obj,
@@ -20638,13 +20641,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1sARB (
JNIEnv *env, jobject obj,
@@ -20660,13 +20663,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sARB ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord1svARB (
JNIEnv *env, jobject obj,
@@ -20691,13 +20694,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2dARB (
JNIEnv *env, jobject obj,
@@ -20715,13 +20718,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dARB ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2dvARB (
JNIEnv *env, jobject obj,
@@ -20746,13 +20749,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2fARB (
JNIEnv *env, jobject obj,
@@ -20770,13 +20773,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fARB ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2fvARB (
JNIEnv *env, jobject obj,
@@ -20801,13 +20804,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2iARB (
JNIEnv *env, jobject obj,
@@ -20825,13 +20828,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iARB ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2ivARB (
JNIEnv *env, jobject obj,
@@ -20856,13 +20859,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2sARB (
JNIEnv *env, jobject obj,
@@ -20880,13 +20883,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sARB ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord2svARB (
JNIEnv *env, jobject obj,
@@ -20911,13 +20914,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3dARB (
JNIEnv *env, jobject obj,
@@ -20937,13 +20940,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3dvARB (
JNIEnv *env, jobject obj,
@@ -20968,13 +20971,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3fARB (
JNIEnv *env, jobject obj,
@@ -20994,13 +20997,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3fvARB (
JNIEnv *env, jobject obj,
@@ -21025,13 +21028,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3iARB (
JNIEnv *env, jobject obj,
@@ -21051,13 +21054,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iARB ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3ivARB (
JNIEnv *env, jobject obj,
@@ -21082,13 +21085,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3sARB (
JNIEnv *env, jobject obj,
@@ -21108,13 +21111,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sARB ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord3svARB (
JNIEnv *env, jobject obj,
@@ -21139,13 +21142,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4dARB (
JNIEnv *env, jobject obj,
@@ -21167,13 +21170,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4dvARB (
JNIEnv *env, jobject obj,
@@ -21198,13 +21201,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4fARB (
JNIEnv *env, jobject obj,
@@ -21226,13 +21229,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4fvARB (
JNIEnv *env, jobject obj,
@@ -21257,13 +21260,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4iARB (
JNIEnv *env, jobject obj,
@@ -21285,13 +21288,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iARB ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4ivARB (
JNIEnv *env, jobject obj,
@@ -21316,13 +21319,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4sARB (
JNIEnv *env, jobject obj,
@@ -21344,13 +21347,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sARB ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiTexCoord4svARB (
JNIEnv *env, jobject obj,
@@ -21375,13 +21378,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBlendColorEXT (
JNIEnv *env, jobject obj,
@@ -21401,13 +21404,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColorEXT ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPolygonOffsetEXT (
JNIEnv *env, jobject obj,
@@ -21423,13 +21426,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffsetEXT ( GLfloat factor , GLfloat bias ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexImage3DEXT__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -21751,13 +21754,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3DEXT ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexSubImage3DEXT__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -22095,13 +22098,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexSubImage3DEXT (
JNIEnv *env, jobject obj,
@@ -22131,13 +22134,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3DEXT ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGenTexturesEXT (
JNIEnv *env, jobject obj,
@@ -22163,13 +22166,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTexturesEXT ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeleteTexturesEXT (
JNIEnv *env, jobject obj,
@@ -22194,13 +22197,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, textures, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTexturesEXT ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBindTextureEXT (
JNIEnv *env, jobject obj,
@@ -22216,13 +22219,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTextureEXT ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPrioritizeTexturesEXT (
JNIEnv *env, jobject obj,
@@ -22258,13 +22261,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, priorities, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTexturesEXT ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glAreTexturesResidentEXT (
JNIEnv *env, jobject obj,
@@ -22304,13 +22307,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResidentEXT ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glIsTextureEXT (
JNIEnv *env, jobject obj,
@@ -22327,13 +22330,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTextureEXT ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -22575,13 +22578,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -22807,13 +22810,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -23055,13 +23058,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -23287,13 +23290,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoordPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -23535,13 +23538,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEdgeFlagPointerEXT (
JNIEnv *env, jobject obj,
@@ -23568,13 +23571,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerEXT ( GLsizei stride , GLsizei count , const GLboolean * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetPointervEXT__I_3_3B (
JNIEnv *env, jobject obj,
@@ -23750,13 +23753,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointervEXT ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glArrayElementEXT (
JNIEnv *env, jobject obj,
@@ -23770,13 +23773,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElementEXT ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDrawArraysEXT (
JNIEnv *env, jobject obj,
@@ -23794,13 +23797,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArraysEXT ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBlendEquationEXT (
JNIEnv *env, jobject obj,
@@ -23814,13 +23817,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquationEXT ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPointParameterfEXT (
JNIEnv *env, jobject obj,
@@ -23836,13 +23839,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfEXT ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPointParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -23867,13 +23870,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvEXT ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPointParameterfSGIS (
JNIEnv *env, jobject obj,
@@ -23889,13 +23892,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfSGIS ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPointParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -23920,13 +23923,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvSGIS ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorTableEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -24184,13 +24187,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableEXT ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorSubTableEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -24448,13 +24451,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTableEXT ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetColorTableEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -24687,13 +24690,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableEXT ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetColorTableParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -24721,13 +24724,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvEXT ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetColorTableParameterivEXT (
JNIEnv *env, jobject obj,
@@ -24755,13 +24758,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivEXT ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLockArraysEXT (
JNIEnv *env, jobject obj,
@@ -24777,13 +24780,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLockArraysEXT ( GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glUnlockArraysEXT (
JNIEnv *env, jobject obj)
@@ -24795,13 +24798,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glUnlockArraysEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadTransposeMatrixfARB (
JNIEnv *env, jobject obj,
@@ -24824,13 +24827,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadTransposeMatrixdARB (
JNIEnv *env, jobject obj,
@@ -24853,13 +24856,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultTransposeMatrixfARB (
JNIEnv *env, jobject obj,
@@ -24882,13 +24885,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultTransposeMatrixdARB (
JNIEnv *env, jobject obj,
@@ -24911,13 +24914,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSampleCoverageARB (
JNIEnv *env, jobject obj,
@@ -24933,13 +24936,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverageARB ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexImage3DARB__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -25245,13 +25248,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexImage2DARB__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -25541,13 +25544,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexImage1DARB__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -25821,13 +25824,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1DARB ( GLenum , GLint , GLenum , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexSubImage3DARB__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -26165,13 +26168,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage3DARB ( GLenum , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexSubImage2DARB__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -26477,13 +26480,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2DARB ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCompressedTexSubImage1DARB__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -26757,13 +26760,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1DARB ( GLenum , GLint , GLint , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetCompressedTexImageARB__II_3B (
JNIEnv *env, jobject obj,
@@ -26980,13 +26983,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImageARB ( GLenum , GLint , void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWeightbvARB (
JNIEnv *env, jobject obj,
@@ -27011,13 +27014,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightbvARB ( GLint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWeightsvARB (
JNIEnv *env, jobject obj,
@@ -27042,13 +27045,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightsvARB ( GLint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWeightivARB (
JNIEnv *env, jobject obj,
@@ -27073,13 +27076,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightivARB ( GLint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWeightfvARB (
JNIEnv *env, jobject obj,
@@ -27104,13 +27107,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightfvARB ( GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWeightdvARB (
JNIEnv *env, jobject obj,
@@ -27135,13 +27138,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightdvARB ( GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWeightubvARB (
JNIEnv *env, jobject obj,
@@ -27166,13 +27169,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWeightusvARB (
JNIEnv *env, jobject obj,
@@ -27197,13 +27200,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWeightuivARB (
JNIEnv *env, jobject obj,
@@ -27228,13 +27231,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWeightPointerARB__III_3B (
JNIEnv *env, jobject obj,
@@ -27460,13 +27463,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexBlendARB (
JNIEnv *env, jobject obj,
@@ -27480,13 +27483,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCurrentPaletteMatrixARB (
JNIEnv *env, jobject obj,
@@ -27500,13 +27503,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCurrentPaletteMatrixARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMatrixIndexubvARB (
JNIEnv *env, jobject obj,
@@ -27531,13 +27534,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMatrixIndexusvARB (
JNIEnv *env, jobject obj,
@@ -27562,13 +27565,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMatrixIndexuivARB (
JNIEnv *env, jobject obj,
@@ -27593,13 +27596,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMatrixIndexPointerARB__III_3B (
JNIEnv *env, jobject obj,
@@ -27825,13 +27828,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexFilterFuncSGIS (
JNIEnv *env, jobject obj,
@@ -27859,13 +27862,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexFilterFuncSGIS ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexFilterFuncSGIS (
JNIEnv *env, jobject obj,
@@ -27894,13 +27897,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexFilterFuncSGIS ( GLenum , GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexSubImage1DEXT__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -28174,13 +28177,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1DEXT ( GLenum , GLint , GLint , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexSubImage2DEXT__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -28486,13 +28489,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexImage1DEXT (
JNIEnv *env, jobject obj,
@@ -28518,13 +28521,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexImage2DEXT (
JNIEnv *env, jobject obj,
@@ -28552,13 +28555,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexSubImage1DEXT (
JNIEnv *env, jobject obj,
@@ -28582,13 +28585,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1DEXT ( GLenum , GLint , GLint , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyTexSubImage2DEXT (
JNIEnv *env, jobject obj,
@@ -28616,13 +28619,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetHistogramEXT__IZII_3B (
JNIEnv *env, jobject obj,
@@ -28871,13 +28874,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetHistogramParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -28905,13 +28908,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetHistogramParameterivEXT (
JNIEnv *env, jobject obj,
@@ -28939,13 +28942,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMinmaxEXT__IZII_3B (
JNIEnv *env, jobject obj,
@@ -29194,13 +29197,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMinmaxParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -29228,13 +29231,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMinmaxParameterivEXT (
JNIEnv *env, jobject obj,
@@ -29262,13 +29265,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glHistogramEXT (
JNIEnv *env, jobject obj,
@@ -29288,13 +29291,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogramEXT ( GLenum , GLsizei , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMinmaxEXT (
JNIEnv *env, jobject obj,
@@ -29312,13 +29315,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmaxEXT ( GLenum , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glResetHistogramEXT (
JNIEnv *env, jobject obj,
@@ -29332,13 +29335,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogramEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glResetMinmaxEXT (
JNIEnv *env, jobject obj,
@@ -29352,13 +29355,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmaxEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionFilter1DEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -29616,13 +29619,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1DEXT ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionFilter2DEXT__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -29896,13 +29899,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionParameterfEXT (
JNIEnv *env, jobject obj,
@@ -29920,13 +29923,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -29953,13 +29956,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionParameteriEXT (
JNIEnv *env, jobject obj,
@@ -29977,13 +29980,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glConvolutionParameterivEXT (
JNIEnv *env, jobject obj,
@@ -30010,13 +30013,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyConvolutionFilter1DEXT (
JNIEnv *env, jobject obj,
@@ -30038,13 +30041,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1DEXT ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyConvolutionFilter2DEXT (
JNIEnv *env, jobject obj,
@@ -30068,13 +30071,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2DEXT ( GLenum , GLenum , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetConvolutionFilterEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -30307,13 +30310,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilterEXT ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetConvolutionParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -30341,13 +30344,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetConvolutionParameterivEXT (
JNIEnv *env, jobject obj,
@@ -30375,13 +30378,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetSeparableFilterEXT__III_3B_3B_3B (
JNIEnv *env, jobject obj,
@@ -30806,13 +30809,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilterEXT ( GLenum , GLenum , GLenum , GLvoid * , GLvoid * , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSeparableFilter2DEXT__IIIIII_3B_3B (
JNIEnv *env, jobject obj,
@@ -31175,13 +31178,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorTableSGI__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -31439,13 +31442,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableSGI ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorTableParameterfvSGI (
JNIEnv *env, jobject obj,
@@ -31472,13 +31475,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfvSGI ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorTableParameterivSGI (
JNIEnv *env, jobject obj,
@@ -31505,13 +31508,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterivSGI ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyColorTableSGI (
JNIEnv *env, jobject obj,
@@ -31533,13 +31536,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTableSGI ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetColorTableSGI__III_3B (
JNIEnv *env, jobject obj,
@@ -31772,13 +31775,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableSGI ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetColorTableParameterfvSGI (
JNIEnv *env, jobject obj,
@@ -31806,13 +31809,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvSGI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetColorTableParameterivSGI (
JNIEnv *env, jobject obj,
@@ -31840,13 +31843,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivSGI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTexGenSGIX (
JNIEnv *env, jobject obj,
@@ -31860,13 +31863,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenSGIX ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTexGenParameteriSGIS (
JNIEnv *env, jobject obj,
@@ -31882,13 +31885,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameteriSGIS ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTexGenParameterivSGIS (
JNIEnv *env, jobject obj,
@@ -31913,13 +31916,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterivSGIS ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTexGenParameterfSGIS (
JNIEnv *env, jobject obj,
@@ -31935,13 +31938,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfSGIS ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTexGenParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -31966,13 +31969,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfvSGIS ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetPixelTexGenParameterivSGIS (
JNIEnv *env, jobject obj,
@@ -31998,13 +32001,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterivSGIS ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetPixelTexGenParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -32030,13 +32033,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterfvSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexImage4DSGIS__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -32374,13 +32377,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage4DSGIS ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLsizei , GLint , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexSubImage4DSGIS__IIIIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -32750,13 +32753,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage4DSGIS ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDetailTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -32783,13 +32786,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDetailTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetDetailTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -32815,13 +32818,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDetailTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSharpenTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -32848,13 +32851,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSharpenTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetSharpenTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -32880,13 +32883,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSharpenTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSampleMaskSGIS (
JNIEnv *env, jobject obj,
@@ -32902,13 +32905,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskSGIS ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSamplePatternSGIS (
JNIEnv *env, jobject obj,
@@ -32922,13 +32925,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternSGIS ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSpriteParameterfSGIX (
JNIEnv *env, jobject obj,
@@ -32944,13 +32947,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSpriteParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -32975,13 +32978,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSpriteParameteriSGIX (
JNIEnv *env, jobject obj,
@@ -32997,13 +33000,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameteriSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSpriteParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -33028,13 +33031,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPointParameterfARB (
JNIEnv *env, jobject obj,
@@ -33050,13 +33053,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfARB ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPointParameterfvARB (
JNIEnv *env, jobject obj,
@@ -33081,13 +33084,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvARB ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glGetInstrumentsSGIX (
JNIEnv *env, jobject obj)
@@ -33102,13 +33105,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glGetInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glInstrumentsBufferSGIX (
JNIEnv *env, jobject obj,
@@ -33134,13 +33137,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInstrumentsBufferSGIX ( GLsizei , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glPollInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -33167,13 +33170,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollInstrumentsSGIX ( GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReadInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -33187,13 +33190,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glStartInstrumentsSGIX (
JNIEnv *env, jobject obj)
@@ -33205,13 +33208,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStartInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glStopInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -33225,13 +33228,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStopInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFrameZoomSGIX (
JNIEnv *env, jobject obj,
@@ -33245,13 +33248,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrameZoomSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTagSampleBufferSGIX (
JNIEnv *env, jobject obj)
@@ -33263,13 +33266,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTagSampleBufferSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeformationMap3dSGIX (
JNIEnv *env, jobject obj,
@@ -33318,13 +33321,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg13, ptr13, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3dSGIX ( GLenum , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeformationMap3fSGIX (
JNIEnv *env, jobject obj,
@@ -33373,13 +33376,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg13, ptr13, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3fSGIX ( GLenum , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeformSGIX (
JNIEnv *env, jobject obj,
@@ -33393,13 +33396,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadIdentityDeformationMapSGIX (
JNIEnv *env, jobject obj,
@@ -33413,13 +33416,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentityDeformationMapSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReferencePlaneSGIX (
JNIEnv *env, jobject obj,
@@ -33442,13 +33445,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReferencePlaneSGIX ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFlushRasterSGIX (
JNIEnv *env, jobject obj)
@@ -33460,13 +33463,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushRasterSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogFuncSGIS (
JNIEnv *env, jobject obj,
@@ -33491,13 +33494,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogFuncSGIS ( GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetFogFuncSGIS (
JNIEnv *env, jobject obj,
@@ -33521,13 +33524,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, (isCopiedArray0 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFogFuncSGIS ( GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glImageTransformParameteriHP (
JNIEnv *env, jobject obj,
@@ -33545,13 +33548,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameteriHP ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glImageTransformParameterfHP (
JNIEnv *env, jobject obj,
@@ -33569,13 +33572,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfHP ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glImageTransformParameterivHP (
JNIEnv *env, jobject obj,
@@ -33602,13 +33605,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterivHP ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glImageTransformParameterfvHP (
JNIEnv *env, jobject obj,
@@ -33635,13 +33638,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfvHP ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetImageTransformParameterivHP (
JNIEnv *env, jobject obj,
@@ -33669,13 +33672,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterivHP ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetImageTransformParameterfvHP (
JNIEnv *env, jobject obj,
@@ -33703,13 +33706,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterfvHP ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCopyColorSubTableEXT (
JNIEnv *env, jobject obj,
@@ -33731,13 +33734,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTableEXT ( GLenum , GLsizei , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glHintPGI (
JNIEnv *env, jobject obj,
@@ -33753,13 +33756,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHintPGI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetListParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -33787,13 +33790,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterfvSGIX ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetListParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -33821,13 +33824,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterivSGIX ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glListParameterfSGIX (
JNIEnv *env, jobject obj,
@@ -33845,13 +33848,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfSGIX ( GLuint , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glListParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -33878,13 +33881,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfvSGIX ( GLuint , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glListParameteriSGIX (
JNIEnv *env, jobject obj,
@@ -33902,13 +33905,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameteriSGIX ( GLuint , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glListParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -33935,13 +33938,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterivSGIX ( GLuint , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexMaterialEXT (
JNIEnv *env, jobject obj,
@@ -33957,13 +33960,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexFuncEXT (
JNIEnv *env, jobject obj,
@@ -33979,13 +33982,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexFuncEXT ( GLenum , GLclampf ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCullParameterdvEXT (
JNIEnv *env, jobject obj,
@@ -34011,13 +34014,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterdvEXT ( GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCullParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -34043,13 +34046,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterfvEXT ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentColorMaterialSGIX (
JNIEnv *env, jobject obj,
@@ -34065,13 +34068,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentColorMaterialSGIX ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentLightfSGIX (
JNIEnv *env, jobject obj,
@@ -34089,13 +34092,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentLightfvSGIX (
JNIEnv *env, jobject obj,
@@ -34122,13 +34125,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentLightiSGIX (
JNIEnv *env, jobject obj,
@@ -34146,13 +34149,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentLightivSGIX (
JNIEnv *env, jobject obj,
@@ -34179,13 +34182,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentLightModelfSGIX (
JNIEnv *env, jobject obj,
@@ -34201,13 +34204,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentLightModelfvSGIX (
JNIEnv *env, jobject obj,
@@ -34232,13 +34235,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentLightModeliSGIX (
JNIEnv *env, jobject obj,
@@ -34254,13 +34257,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModeliSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentLightModelivSGIX (
JNIEnv *env, jobject obj,
@@ -34285,13 +34288,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentMaterialfSGIX (
JNIEnv *env, jobject obj,
@@ -34309,13 +34312,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentMaterialfvSGIX (
JNIEnv *env, jobject obj,
@@ -34342,13 +34345,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentMaterialiSGIX (
JNIEnv *env, jobject obj,
@@ -34366,13 +34369,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFragmentMaterialivSGIX (
JNIEnv *env, jobject obj,
@@ -34399,13 +34402,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetFragmentLightfvSGIX (
JNIEnv *env, jobject obj,
@@ -34433,13 +34436,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetFragmentLightivSGIX (
JNIEnv *env, jobject obj,
@@ -34467,13 +34470,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetFragmentMaterialfvSGIX (
JNIEnv *env, jobject obj,
@@ -34501,13 +34504,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetFragmentMaterialivSGIX (
JNIEnv *env, jobject obj,
@@ -34535,13 +34538,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLightEnviSGIX (
JNIEnv *env, jobject obj,
@@ -34557,13 +34560,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightEnviSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDrawRangeElementsEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -34821,13 +34824,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElementsEXT ( GLenum , GLuint , GLuint , GLsizei , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glApplyTextureEXT (
JNIEnv *env, jobject obj,
@@ -34841,13 +34844,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glApplyTextureEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTextureLightEXT (
JNIEnv *env, jobject obj,
@@ -34861,13 +34864,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureLightEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTextureMaterialEXT (
JNIEnv *env, jobject obj,
@@ -34883,13 +34886,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glAsyncMarkerSGIX (
JNIEnv *env, jobject obj,
@@ -34903,13 +34906,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glFinishAsyncSGIX (
JNIEnv *env, jobject obj,
@@ -34936,13 +34939,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glFinishAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glPollAsyncSGIX (
JNIEnv *env, jobject obj,
@@ -34969,13 +34972,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glGenAsyncMarkersSGIX (
JNIEnv *env, jobject obj,
@@ -34992,13 +34995,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenAsyncMarkersSGIX ( GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeleteAsyncMarkersSGIX (
JNIEnv *env, jobject obj,
@@ -35014,13 +35017,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteAsyncMarkersSGIX ( GLuint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glIsAsyncMarkerSGIX (
JNIEnv *env, jobject obj,
@@ -35037,13 +35040,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -35226,13 +35229,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalPointervINTEL__I_3_3B (
JNIEnv *env, jobject obj,
@@ -35401,13 +35404,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointervINTEL ( GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -35590,13 +35593,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoordPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -35779,13 +35782,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTransformParameteriEXT (
JNIEnv *env, jobject obj,
@@ -35803,13 +35806,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTransformParameterfEXT (
JNIEnv *env, jobject obj,
@@ -35827,13 +35830,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTransformParameterivEXT (
JNIEnv *env, jobject obj,
@@ -35860,13 +35863,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPixelTransformParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -35893,13 +35896,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3bEXT (
JNIEnv *env, jobject obj,
@@ -35917,13 +35920,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3bvEXT (
JNIEnv *env, jobject obj,
@@ -35946,13 +35949,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3dEXT (
JNIEnv *env, jobject obj,
@@ -35970,13 +35973,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3dvEXT (
JNIEnv *env, jobject obj,
@@ -35999,13 +36002,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3fEXT (
JNIEnv *env, jobject obj,
@@ -36023,13 +36026,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3fvEXT (
JNIEnv *env, jobject obj,
@@ -36052,13 +36055,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3iEXT (
JNIEnv *env, jobject obj,
@@ -36076,13 +36079,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3ivEXT (
JNIEnv *env, jobject obj,
@@ -36105,13 +36108,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3sEXT (
JNIEnv *env, jobject obj,
@@ -36129,13 +36132,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3svEXT (
JNIEnv *env, jobject obj,
@@ -36158,13 +36161,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3ubEXT (
JNIEnv *env, jobject obj,
@@ -36182,13 +36185,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubEXT ( GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3ubvEXT (
JNIEnv *env, jobject obj,
@@ -36211,13 +36214,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubvEXT ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3uiEXT (
JNIEnv *env, jobject obj,
@@ -36235,13 +36238,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uiEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3uivEXT (
JNIEnv *env, jobject obj,
@@ -36264,13 +36267,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uivEXT ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3usEXT (
JNIEnv *env, jobject obj,
@@ -36288,13 +36291,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usEXT ( GLushort , GLushort , GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColor3usvEXT (
JNIEnv *env, jobject obj,
@@ -36317,13 +36320,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usvEXT ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColorPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -36549,13 +36552,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerEXT ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTextureNormalEXT (
JNIEnv *env, jobject obj,
@@ -36569,13 +36572,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureNormalEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiDrawArraysEXT (
JNIEnv *env, jobject obj,
@@ -36615,13 +36618,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawArraysEXT ( GLenum , GLint * , GLsizei * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiDrawElementsEXT__I_3II_3_3BI (
JNIEnv *env, jobject obj,
@@ -36895,13 +36898,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawElementsEXT ( GLenum , const GLsizei * , GLenum , const GLvoid * * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogCoordfEXT (
JNIEnv *env, jobject obj,
@@ -36915,13 +36918,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogCoordfvEXT (
JNIEnv *env, jobject obj,
@@ -36944,13 +36947,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogCoorddEXT (
JNIEnv *env, jobject obj,
@@ -36964,13 +36967,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddEXT ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogCoorddvEXT (
JNIEnv *env, jobject obj,
@@ -36993,13 +36996,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogCoordPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -37209,13 +37212,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3bEXT (
JNIEnv *env, jobject obj,
@@ -37233,13 +37236,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3bvEXT (
JNIEnv *env, jobject obj,
@@ -37262,13 +37265,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3dEXT (
JNIEnv *env, jobject obj,
@@ -37286,13 +37289,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3dvEXT (
JNIEnv *env, jobject obj,
@@ -37315,13 +37318,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3fEXT (
JNIEnv *env, jobject obj,
@@ -37339,13 +37342,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3fvEXT (
JNIEnv *env, jobject obj,
@@ -37368,13 +37371,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3iEXT (
JNIEnv *env, jobject obj,
@@ -37392,13 +37395,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3ivEXT (
JNIEnv *env, jobject obj,
@@ -37421,13 +37424,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3sEXT (
JNIEnv *env, jobject obj,
@@ -37445,13 +37448,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangent3svEXT (
JNIEnv *env, jobject obj,
@@ -37474,13 +37477,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3bEXT (
JNIEnv *env, jobject obj,
@@ -37498,13 +37501,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3bvEXT (
JNIEnv *env, jobject obj,
@@ -37527,13 +37530,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3dEXT (
JNIEnv *env, jobject obj,
@@ -37551,13 +37554,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3dvEXT (
JNIEnv *env, jobject obj,
@@ -37580,13 +37583,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3fEXT (
JNIEnv *env, jobject obj,
@@ -37604,13 +37607,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3fvEXT (
JNIEnv *env, jobject obj,
@@ -37633,13 +37636,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3iEXT (
JNIEnv *env, jobject obj,
@@ -37657,13 +37660,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3ivEXT (
JNIEnv *env, jobject obj,
@@ -37686,13 +37689,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3sEXT (
JNIEnv *env, jobject obj,
@@ -37710,13 +37713,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormal3svEXT (
JNIEnv *env, jobject obj,
@@ -37739,13 +37742,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTangentPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -37955,13 +37958,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangentPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBinormalPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -38171,13 +38174,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormalPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFinishTextureSUNX (
JNIEnv *env, jobject obj)
@@ -38189,13 +38192,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishTextureSUNX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGlobalAlphaFactorbSUN (
JNIEnv *env, jobject obj,
@@ -38209,13 +38212,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorbSUN ( GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGlobalAlphaFactorsSUN (
JNIEnv *env, jobject obj,
@@ -38229,13 +38232,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorsSUN ( GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGlobalAlphaFactoriSUN (
JNIEnv *env, jobject obj,
@@ -38249,13 +38252,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoriSUN ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGlobalAlphaFactorfSUN (
JNIEnv *env, jobject obj,
@@ -38269,13 +38272,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorfSUN ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGlobalAlphaFactordSUN (
JNIEnv *env, jobject obj,
@@ -38289,13 +38292,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactordSUN ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGlobalAlphaFactorubSUN (
JNIEnv *env, jobject obj,
@@ -38309,13 +38312,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGlobalAlphaFactorusSUN (
JNIEnv *env, jobject obj,
@@ -38329,13 +38332,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGlobalAlphaFactoruiSUN (
JNIEnv *env, jobject obj,
@@ -38349,13 +38352,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoruiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiSUN (
JNIEnv *env, jobject obj,
@@ -38369,13 +38372,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeusSUN (
JNIEnv *env, jobject obj,
@@ -38389,13 +38392,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeubSUN (
JNIEnv *env, jobject obj,
@@ -38409,13 +38412,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuivSUN (
JNIEnv *env, jobject obj,
@@ -38438,13 +38441,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuivSUN ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeusvSUN (
JNIEnv *env, jobject obj,
@@ -38467,13 +38470,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusvSUN ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeubvSUN (
JNIEnv *env, jobject obj,
@@ -38496,13 +38499,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubvSUN ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodePointerSUN__II_3_3B (
JNIEnv *env, jobject obj,
@@ -38685,13 +38688,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodePointerSUN ( GLenum , GLsizei , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4ubVertex2fSUN (
JNIEnv *env, jobject obj,
@@ -38715,13 +38718,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4ubVertex2fvSUN (
JNIEnv *env, jobject obj,
@@ -38755,13 +38758,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -38787,13 +38790,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -38827,13 +38830,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -38857,13 +38860,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -38897,13 +38900,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -38927,13 +38930,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -38967,13 +38970,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39005,13 +39008,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39056,13 +39059,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39084,13 +39087,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39124,13 +39127,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4fVertex4fSUN (
JNIEnv *env, jobject obj,
@@ -39158,13 +39161,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4fVertex4fvSUN (
JNIEnv *env, jobject obj,
@@ -39198,13 +39201,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39234,13 +39237,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fSUN ( GLfloat , GLfloat , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39285,13 +39288,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fvSUN ( const GLfloat * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39319,13 +39322,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39370,13 +39373,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39404,13 +39407,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39455,13 +39458,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39497,13 +39500,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord2fColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39559,13 +39562,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4fColor4fNormal3fVertex4fSUN (
JNIEnv *env, jobject obj,
@@ -39607,13 +39610,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoord4fColor4fNormal3fVertex4fvSUN (
JNIEnv *env, jobject obj,
@@ -39669,13 +39672,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39695,13 +39698,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39735,13 +39738,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fvSUN ( const GLenum * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39769,13 +39772,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fSUN ( GLenum , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39820,13 +39823,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fvSUN ( const GLenum * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39852,13 +39855,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39903,13 +39906,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -39935,13 +39938,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -39986,13 +39989,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -40026,13 +40029,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -40088,13 +40091,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiTexCoord2fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -40118,13 +40121,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiTexCoord2fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -40169,13 +40172,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -40205,13 +40208,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -40267,13 +40270,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -40311,13 +40314,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -40384,13 +40387,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBlendFuncSeparateEXT (
JNIEnv *env, jobject obj,
@@ -40410,13 +40413,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateEXT ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBlendFuncSeparateINGR (
JNIEnv *env, jobject obj,
@@ -40436,13 +40439,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateINGR ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexWeightfEXT (
JNIEnv *env, jobject obj,
@@ -40456,13 +40459,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexWeightfvEXT (
JNIEnv *env, jobject obj,
@@ -40485,13 +40488,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexWeightPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -40717,13 +40720,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightPointerEXT ( GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFlushVertexArrayRangeNV (
JNIEnv *env, jobject obj)
@@ -40735,13 +40738,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushVertexArrayRangeNV ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexArrayRangeNV__I_3B (
JNIEnv *env, jobject obj,
@@ -40935,13 +40938,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexArrayRangeNV ( GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCombinerParameterfvNV (
JNIEnv *env, jobject obj,
@@ -40966,13 +40969,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfvNV ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCombinerParameterfNV (
JNIEnv *env, jobject obj,
@@ -40988,13 +40991,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfNV ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCombinerParameterivNV (
JNIEnv *env, jobject obj,
@@ -41019,13 +41022,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterivNV ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCombinerParameteriNV (
JNIEnv *env, jobject obj,
@@ -41041,13 +41044,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameteriNV ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCombinerInputNV (
JNIEnv *env, jobject obj,
@@ -41071,13 +41074,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerInputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCombinerOutputNV (
JNIEnv *env, jobject obj,
@@ -41109,13 +41112,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerOutputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFinalCombinerInputNV (
JNIEnv *env, jobject obj,
@@ -41135,13 +41138,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinalCombinerInputNV ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetCombinerInputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41173,13 +41176,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterfvNV ( GLenum , GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetCombinerInputParameterivNV (
JNIEnv *env, jobject obj,
@@ -41211,13 +41214,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterivNV ( GLenum , GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetCombinerOutputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41247,13 +41250,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterfvNV ( GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetCombinerOutputParameterivNV (
JNIEnv *env, jobject obj,
@@ -41283,13 +41286,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterivNV ( GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetFinalCombinerInputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41317,13 +41320,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetFinalCombinerInputParameterivNV (
JNIEnv *env, jobject obj,
@@ -41351,13 +41354,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiModeDrawArraysIBM (
JNIEnv *env, jobject obj,
@@ -41397,13 +41400,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawArraysIBM ( GLenum , const GLint * , const GLsizei * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMultiModeDrawElementsIBM___3I_3II_3_3BII (
JNIEnv *env, jobject obj,
@@ -41754,13 +41757,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawElementsIBM ( const GLenum * , const GLsizei * , GLenum , const GLvoid * * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -41971,13 +41974,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSecondaryColorPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -42188,13 +42191,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEdgeFlagPointerListIBM (
JNIEnv *env, jobject obj,
@@ -42221,13 +42224,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerListIBM ( GLint , const GLboolean * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFogCoordPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -42424,13 +42427,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIndexPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -42627,13 +42630,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -42830,13 +42833,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexCoordPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -43047,13 +43050,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -43264,13 +43267,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTbufferMask3DFX (
JNIEnv *env, jobject obj,
@@ -43284,13 +43287,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTbufferMask3DFX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSampleMaskEXT (
JNIEnv *env, jobject obj,
@@ -43306,13 +43309,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskEXT ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSamplePatternEXT (
JNIEnv *env, jobject obj,
@@ -43326,13 +43329,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTextureColorMaskSGIS (
JNIEnv *env, jobject obj,
@@ -43352,13 +43355,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureColorMaskSGIS ( GLboolean , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glIglooInterfaceSGIX__I_3B (
JNIEnv *env, jobject obj,
@@ -43552,13 +43555,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIglooInterfaceSGIX ( GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGenFencesNV (
JNIEnv *env, jobject obj,
@@ -43584,13 +43587,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenFencesNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeleteFencesNV (
JNIEnv *env, jobject obj,
@@ -43615,13 +43618,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFencesNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSetFenceNV (
JNIEnv *env, jobject obj,
@@ -43637,13 +43640,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFenceNV ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glTestFenceNV (
JNIEnv *env, jobject obj,
@@ -43660,13 +43663,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glTestFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glFinishFenceNV (
JNIEnv *env, jobject obj,
@@ -43680,13 +43683,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glIsFenceNV (
JNIEnv *env, jobject obj,
@@ -43703,13 +43706,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetFenceivNV (
JNIEnv *env, jobject obj,
@@ -43737,13 +43740,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFenceivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMapControlPointsNV__IIIIIIIZ_3B (
JNIEnv *env, jobject obj,
@@ -44049,13 +44052,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLint , GLint , GLboolean , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMapParameterivNV (
JNIEnv *env, jobject obj,
@@ -44082,13 +44085,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterivNV ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glMapParameterfvNV (
JNIEnv *env, jobject obj,
@@ -44115,13 +44118,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMapControlPointsNV__IIIIIZ_3B (
JNIEnv *env, jobject obj,
@@ -44402,13 +44405,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLboolean , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMapParameterivNV (
JNIEnv *env, jobject obj,
@@ -44436,13 +44439,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMapParameterfvNV (
JNIEnv *env, jobject obj,
@@ -44470,13 +44473,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMapAttribParameterivNV (
JNIEnv *env, jobject obj,
@@ -44506,13 +44509,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetMapAttribParameterfvNV (
JNIEnv *env, jobject obj,
@@ -44542,13 +44545,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEvalMapsNV (
JNIEnv *env, jobject obj,
@@ -44564,13 +44567,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMapsNV ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glCombinerStageParameterfvNV (
JNIEnv *env, jobject obj,
@@ -44597,13 +44600,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerStageParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetCombinerStageParameterfvNV (
JNIEnv *env, jobject obj,
@@ -44631,13 +44634,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerStageParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBindProgramNV (
JNIEnv *env, jobject obj,
@@ -44653,13 +44656,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindProgramNV ( GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeleteProgramsNV (
JNIEnv *env, jobject obj,
@@ -44684,13 +44687,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glExecuteProgramNV (
JNIEnv *env, jobject obj,
@@ -44717,13 +44720,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glExecuteProgramNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGenProgramsNV (
JNIEnv *env, jobject obj,
@@ -44749,13 +44752,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenProgramsNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glAreProgramsResidentNV (
JNIEnv *env, jobject obj,
@@ -44795,13 +44798,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreProgramsResidentNV ( GLsizei , const GLuint * , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glRequestResidentProgramsNV (
JNIEnv *env, jobject obj,
@@ -44826,13 +44829,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRequestResidentProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetProgramParameterfvNV (
JNIEnv *env, jobject obj,
@@ -44862,13 +44865,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetProgramParameterdvNV (
JNIEnv *env, jobject obj,
@@ -44898,13 +44901,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterdvNV ( GLenum , GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetProgramivNV (
JNIEnv *env, jobject obj,
@@ -44932,13 +44935,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetProgramStringNV (
JNIEnv *env, jobject obj,
@@ -44966,13 +44969,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramStringNV ( GLuint , GLenum , GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTrackMatrixivNV (
JNIEnv *env, jobject obj,
@@ -45002,13 +45005,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTrackMatrixivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVertexAttribdvNV (
JNIEnv *env, jobject obj,
@@ -45036,13 +45039,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribdvNV ( GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVertexAttribfvNV (
JNIEnv *env, jobject obj,
@@ -45070,13 +45073,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribfvNV ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVertexAttribivNV (
JNIEnv *env, jobject obj,
@@ -45104,13 +45107,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVertexAttribPointervNV__II_3_3B (
JNIEnv *env, jobject obj,
@@ -45300,13 +45303,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribPointervNV ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glIsProgramNV (
JNIEnv *env, jobject obj,
@@ -45323,13 +45326,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsProgramNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glLoadProgramNV (
JNIEnv *env, jobject obj,
@@ -45358,13 +45361,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadProgramNV ( GLenum , GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glProgramParameter4fNV (
JNIEnv *env, jobject obj,
@@ -45388,13 +45391,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fNV ( GLenum , GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glProgramParameter4dNV (
JNIEnv *env, jobject obj,
@@ -45418,13 +45421,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dNV ( GLenum , GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glProgramParameter4dvNV (
JNIEnv *env, jobject obj,
@@ -45451,13 +45454,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dvNV ( GLenum , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glProgramParameter4fvNV (
JNIEnv *env, jobject obj,
@@ -45484,13 +45487,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fvNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glProgramParameters4dvNV (
JNIEnv *env, jobject obj,
@@ -45519,13 +45522,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4dvNV ( GLenum , GLuint , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glProgramParameters4fvNV (
JNIEnv *env, jobject obj,
@@ -45554,13 +45557,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4fvNV ( GLenum , GLuint , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTrackMatrixNV (
JNIEnv *env, jobject obj,
@@ -45580,13 +45583,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTrackMatrixNV ( GLenum , GLuint , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribPointerNV__IIII_3B (
JNIEnv *env, jobject obj,
@@ -45828,13 +45831,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribPointerNV ( GLuint , GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib1sNV (
JNIEnv *env, jobject obj,
@@ -45850,13 +45853,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1sNV ( GLuint , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib1fNV (
JNIEnv *env, jobject obj,
@@ -45872,13 +45875,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fNV ( GLuint , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib1dNV (
JNIEnv *env, jobject obj,
@@ -45894,13 +45897,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dNV ( GLuint , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib2sNV (
JNIEnv *env, jobject obj,
@@ -45918,13 +45921,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2sNV ( GLuint , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib2fNV (
JNIEnv *env, jobject obj,
@@ -45942,13 +45945,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fNV ( GLuint , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib2dNV (
JNIEnv *env, jobject obj,
@@ -45966,13 +45969,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dNV ( GLuint , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib3sNV (
JNIEnv *env, jobject obj,
@@ -45992,13 +45995,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3sNV ( GLuint , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib3fNV (
JNIEnv *env, jobject obj,
@@ -46018,13 +46021,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fNV ( GLuint , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib3dNV (
JNIEnv *env, jobject obj,
@@ -46044,13 +46047,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dNV ( GLuint , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib4sNV (
JNIEnv *env, jobject obj,
@@ -46072,13 +46075,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4sNV ( GLuint , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib4fNV (
JNIEnv *env, jobject obj,
@@ -46100,13 +46103,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fNV ( GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib4dNV (
JNIEnv *env, jobject obj,
@@ -46128,13 +46131,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dNV ( GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib4ubNV (
JNIEnv *env, jobject obj,
@@ -46156,13 +46159,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubNV ( GLuint , GLubyte , GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib1svNV (
JNIEnv *env, jobject obj,
@@ -46187,13 +46190,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib1fvNV (
JNIEnv *env, jobject obj,
@@ -46218,13 +46221,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib1dvNV (
JNIEnv *env, jobject obj,
@@ -46249,13 +46252,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib2svNV (
JNIEnv *env, jobject obj,
@@ -46280,13 +46283,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib2fvNV (
JNIEnv *env, jobject obj,
@@ -46311,13 +46314,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib2dvNV (
JNIEnv *env, jobject obj,
@@ -46342,13 +46345,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib3svNV (
JNIEnv *env, jobject obj,
@@ -46373,13 +46376,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib3fvNV (
JNIEnv *env, jobject obj,
@@ -46404,13 +46407,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib3dvNV (
JNIEnv *env, jobject obj,
@@ -46435,13 +46438,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib4svNV (
JNIEnv *env, jobject obj,
@@ -46466,13 +46469,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib4fvNV (
JNIEnv *env, jobject obj,
@@ -46497,13 +46500,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib4dvNV (
JNIEnv *env, jobject obj,
@@ -46528,13 +46531,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttrib4ubvNV (
JNIEnv *env, jobject obj,
@@ -46559,13 +46562,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubvNV ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs1svNV (
JNIEnv *env, jobject obj,
@@ -46592,13 +46595,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs1fvNV (
JNIEnv *env, jobject obj,
@@ -46625,13 +46628,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs1dvNV (
JNIEnv *env, jobject obj,
@@ -46658,13 +46661,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs2svNV (
JNIEnv *env, jobject obj,
@@ -46691,13 +46694,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs2fvNV (
JNIEnv *env, jobject obj,
@@ -46724,13 +46727,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs2dvNV (
JNIEnv *env, jobject obj,
@@ -46757,13 +46760,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs3svNV (
JNIEnv *env, jobject obj,
@@ -46790,13 +46793,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs3fvNV (
JNIEnv *env, jobject obj,
@@ -46823,13 +46826,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs3dvNV (
JNIEnv *env, jobject obj,
@@ -46856,13 +46859,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs4svNV (
JNIEnv *env, jobject obj,
@@ -46889,13 +46892,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs4fvNV (
JNIEnv *env, jobject obj,
@@ -46922,13 +46925,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs4dvNV (
JNIEnv *env, jobject obj,
@@ -46955,13 +46958,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexAttribs4ubvNV (
JNIEnv *env, jobject obj,
@@ -46988,13 +46991,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4ubvNV ( GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexBumpParameterivATI (
JNIEnv *env, jobject obj,
@@ -47019,13 +47022,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterivATI ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glTexBumpParameterfvATI (
JNIEnv *env, jobject obj,
@@ -47050,13 +47053,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterfvATI ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexBumpParameterivATI (
JNIEnv *env, jobject obj,
@@ -47082,13 +47085,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterivATI ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetTexBumpParameterfvATI (
JNIEnv *env, jobject obj,
@@ -47114,13 +47117,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterfvATI ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glGenFragmentShadersATI (
JNIEnv *env, jobject obj,
@@ -47137,13 +47140,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenFragmentShadersATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBindFragmentShaderATI (
JNIEnv *env, jobject obj,
@@ -47157,13 +47160,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeleteFragmentShaderATI (
JNIEnv *env, jobject obj,
@@ -47177,13 +47180,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBeginFragmentShaderATI (
JNIEnv *env, jobject obj)
@@ -47195,13 +47198,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEndFragmentShaderATI (
JNIEnv *env, jobject obj)
@@ -47213,13 +47216,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPassTexCoordATI (
JNIEnv *env, jobject obj,
@@ -47237,13 +47240,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPassTexCoordATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSampleMapATI (
JNIEnv *env, jobject obj,
@@ -47261,13 +47264,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMapATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorFragmentOp1ATI (
JNIEnv *env, jobject obj,
@@ -47293,13 +47296,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorFragmentOp2ATI (
JNIEnv *env, jobject obj,
@@ -47331,13 +47334,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glColorFragmentOp3ATI (
JNIEnv *env, jobject obj,
@@ -47375,13 +47378,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glAlphaFragmentOp1ATI (
JNIEnv *env, jobject obj,
@@ -47405,13 +47408,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glAlphaFragmentOp2ATI (
JNIEnv *env, jobject obj,
@@ -47441,13 +47444,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glAlphaFragmentOp3ATI (
JNIEnv *env, jobject obj,
@@ -47483,13 +47486,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSetFragmentShaderConstantATI (
JNIEnv *env, jobject obj,
@@ -47514,13 +47517,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFragmentShaderConstantATI ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPNTrianglesiATI (
JNIEnv *env, jobject obj,
@@ -47536,13 +47539,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesiATI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glPNTrianglesfATI (
JNIEnv *env, jobject obj,
@@ -47558,13 +47561,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesfATI ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glNewObjectBufferATI__I_3BI (
JNIEnv *env, jobject obj,
@@ -47798,13 +47801,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glNewObjectBufferATI ( GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glIsObjectBufferATI (
JNIEnv *env, jobject obj,
@@ -47821,13 +47824,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glUpdateObjectBufferATI__III_3BI (
JNIEnv *env, jobject obj,
@@ -48069,13 +48072,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glUpdateObjectBufferATI ( GLuint , GLuint , GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetObjectBufferfvATI (
JNIEnv *env, jobject obj,
@@ -48103,13 +48106,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetObjectBufferivATI (
JNIEnv *env, jobject obj,
@@ -48137,13 +48140,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeleteObjectBufferATI (
JNIEnv *env, jobject obj,
@@ -48157,13 +48160,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glArrayObjectATI (
JNIEnv *env, jobject obj,
@@ -48187,13 +48190,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayObjectATI ( GLenum , GLint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetArrayObjectfvATI (
JNIEnv *env, jobject obj,
@@ -48221,13 +48224,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectfvATI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetArrayObjectivATI (
JNIEnv *env, jobject obj,
@@ -48255,13 +48258,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectivATI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantArrayObjectATI (
JNIEnv *env, jobject obj,
@@ -48283,13 +48286,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantArrayObjectATI ( GLuint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVariantArrayObjectfvATI (
JNIEnv *env, jobject obj,
@@ -48317,13 +48320,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVariantArrayObjectivATI (
JNIEnv *env, jobject obj,
@@ -48351,13 +48354,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBeginVertexShaderEXT (
JNIEnv *env, jobject obj)
@@ -48369,13 +48372,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEndVertexShaderEXT (
JNIEnv *env, jobject obj)
@@ -48387,13 +48390,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glBindVertexShaderEXT (
JNIEnv *env, jobject obj,
@@ -48407,13 +48410,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glGenVertexShadersEXT (
JNIEnv *env, jobject obj,
@@ -48430,13 +48433,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenVertexShadersEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDeleteVertexShaderEXT (
JNIEnv *env, jobject obj,
@@ -48450,13 +48453,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glShaderOp1EXT (
JNIEnv *env, jobject obj,
@@ -48474,13 +48477,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp1EXT ( GLenum , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glShaderOp2EXT (
JNIEnv *env, jobject obj,
@@ -48500,13 +48503,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp2EXT ( GLenum , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glShaderOp3EXT (
JNIEnv *env, jobject obj,
@@ -48528,13 +48531,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp3EXT ( GLenum , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSwizzleEXT (
JNIEnv *env, jobject obj,
@@ -48558,13 +48561,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSwizzleEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glWriteMaskEXT (
JNIEnv *env, jobject obj,
@@ -48588,13 +48591,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWriteMaskEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glInsertComponentEXT (
JNIEnv *env, jobject obj,
@@ -48612,13 +48615,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInsertComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glExtractComponentEXT (
JNIEnv *env, jobject obj,
@@ -48636,13 +48639,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glExtractComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glGenSymbolsEXT (
JNIEnv *env, jobject obj,
@@ -48665,13 +48668,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenSymbolsEXT ( GLenum , GLenum , GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSetInvariantEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -48881,13 +48884,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetInvariantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glSetLocalConstantEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -49097,13 +49100,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetLocalConstantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantbvEXT (
JNIEnv *env, jobject obj,
@@ -49128,13 +49131,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantbvEXT ( GLuint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantsvEXT (
JNIEnv *env, jobject obj,
@@ -49159,13 +49162,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantsvEXT ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantivEXT (
JNIEnv *env, jobject obj,
@@ -49190,13 +49193,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantivEXT ( GLuint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantfvEXT (
JNIEnv *env, jobject obj,
@@ -49221,13 +49224,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantfvEXT ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantdvEXT (
JNIEnv *env, jobject obj,
@@ -49252,13 +49255,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantdvEXT ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantubvEXT (
JNIEnv *env, jobject obj,
@@ -49283,13 +49286,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantubvEXT ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantusvEXT (
JNIEnv *env, jobject obj,
@@ -49314,13 +49317,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantusvEXT ( GLuint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantuivEXT (
JNIEnv *env, jobject obj,
@@ -49345,13 +49348,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantuivEXT ( GLuint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVariantPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -49577,13 +49580,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantPointerEXT ( GLuint , GLenum , GLuint , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glEnableVariantClientStateEXT (
JNIEnv *env, jobject obj,
@@ -49597,13 +49600,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glDisableVariantClientStateEXT (
JNIEnv *env, jobject obj,
@@ -49617,13 +49620,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glBindLightParameterEXT (
JNIEnv *env, jobject obj,
@@ -49642,13 +49645,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindLightParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glBindMaterialParameterEXT (
JNIEnv *env, jobject obj,
@@ -49667,13 +49670,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindMaterialParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glBindTexGenParameterEXT (
JNIEnv *env, jobject obj,
@@ -49694,13 +49697,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTexGenParameterEXT ( GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glBindTextureUnitParameterEXT (
JNIEnv *env, jobject obj,
@@ -49719,13 +49722,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTextureUnitParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFunc14JauJNI_glBindParameterEXT (
JNIEnv *env, jobject obj,
@@ -49742,13 +49745,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindParameterEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFunc14JauJNI_glIsVariantEnabledEXT (
JNIEnv *env, jobject obj,
@@ -49767,13 +49770,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsVariantEnabledEXT ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVariantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -49801,13 +49804,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVariantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -49835,13 +49838,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVariantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -49869,13 +49872,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetVariantPointervEXT__II_3_3B (
JNIEnv *env, jobject obj,
@@ -50065,13 +50068,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantPointervEXT ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetInvariantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -50099,13 +50102,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetInvariantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -50133,13 +50136,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetInvariantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -50167,13 +50170,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetLocalConstantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -50201,13 +50204,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetLocalConstantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -50235,13 +50238,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glGetLocalConstantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -50269,13 +50272,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream1s (
JNIEnv *env, jobject obj,
@@ -50291,13 +50294,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1s ( GLenum , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream1sv (
JNIEnv *env, jobject obj,
@@ -50322,13 +50325,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream1i (
JNIEnv *env, jobject obj,
@@ -50344,13 +50347,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1i ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream1iv (
JNIEnv *env, jobject obj,
@@ -50375,13 +50378,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream1f (
JNIEnv *env, jobject obj,
@@ -50397,13 +50400,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1f ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream1fv (
JNIEnv *env, jobject obj,
@@ -50428,13 +50431,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream1d (
JNIEnv *env, jobject obj,
@@ -50450,13 +50453,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1d ( GLenum , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream1dv (
JNIEnv *env, jobject obj,
@@ -50481,13 +50484,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream2s (
JNIEnv *env, jobject obj,
@@ -50505,13 +50508,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2s ( GLenum , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream2sv (
JNIEnv *env, jobject obj,
@@ -50536,13 +50539,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream2i (
JNIEnv *env, jobject obj,
@@ -50560,13 +50563,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2i ( GLenum , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream2iv (
JNIEnv *env, jobject obj,
@@ -50591,13 +50594,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream2f (
JNIEnv *env, jobject obj,
@@ -50615,13 +50618,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2f ( GLenum , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream2fv (
JNIEnv *env, jobject obj,
@@ -50646,13 +50649,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream2d (
JNIEnv *env, jobject obj,
@@ -50670,13 +50673,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2d ( GLenum , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream2dv (
JNIEnv *env, jobject obj,
@@ -50701,13 +50704,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream3s (
JNIEnv *env, jobject obj,
@@ -50727,13 +50730,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream3sv (
JNIEnv *env, jobject obj,
@@ -50758,13 +50761,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream3i (
JNIEnv *env, jobject obj,
@@ -50784,13 +50787,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream3iv (
JNIEnv *env, jobject obj,
@@ -50815,13 +50818,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream3f (
JNIEnv *env, jobject obj,
@@ -50841,13 +50844,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream3fv (
JNIEnv *env, jobject obj,
@@ -50872,13 +50875,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream3d (
JNIEnv *env, jobject obj,
@@ -50898,13 +50901,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream3dv (
JNIEnv *env, jobject obj,
@@ -50929,13 +50932,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream4s (
JNIEnv *env, jobject obj,
@@ -50957,13 +50960,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4s ( GLenum , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream4sv (
JNIEnv *env, jobject obj,
@@ -50988,13 +50991,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream4i (
JNIEnv *env, jobject obj,
@@ -51016,13 +51019,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4i ( GLenum , GLint , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream4iv (
JNIEnv *env, jobject obj,
@@ -51047,13 +51050,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream4f (
JNIEnv *env, jobject obj,
@@ -51075,13 +51078,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4f ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream4fv (
JNIEnv *env, jobject obj,
@@ -51106,13 +51109,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream4d (
JNIEnv *env, jobject obj,
@@ -51134,13 +51137,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4d ( GLenum , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexStream4dv (
JNIEnv *env, jobject obj,
@@ -51165,13 +51168,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3b (
JNIEnv *env, jobject obj,
@@ -51191,13 +51194,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3b ( GLenum , GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3bv (
JNIEnv *env, jobject obj,
@@ -51222,13 +51225,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3bv ( GLenum , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3s (
JNIEnv *env, jobject obj,
@@ -51248,13 +51251,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3sv (
JNIEnv *env, jobject obj,
@@ -51279,13 +51282,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3i (
JNIEnv *env, jobject obj,
@@ -51305,13 +51308,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3iv (
JNIEnv *env, jobject obj,
@@ -51336,13 +51339,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3f (
JNIEnv *env, jobject obj,
@@ -51362,13 +51365,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3fv (
JNIEnv *env, jobject obj,
@@ -51393,13 +51396,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3d (
JNIEnv *env, jobject obj,
@@ -51419,13 +51422,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glNormalStream3dv (
JNIEnv *env, jobject obj,
@@ -51450,13 +51453,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
(*env)->ReleasePrimitiveArrayCritical(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glClientActiveVertexStream (
JNIEnv *env, jobject obj,
@@ -51470,13 +51473,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveVertexStream ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexBlendEnvi (
JNIEnv *env, jobject obj,
@@ -51492,13 +51495,13 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvi ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFunc14JauJNI_glVertexBlendEnvf (
JNIEnv *env, jobject obj,
@@ -51514,5 +51517,5 @@ Java_gl4java_GLFunc14JauJNI_newDirectByteBuffer(JNIEnv* env, jobject unused, jlo
);
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/CNativeCode/OpenGL_JauJNI_funcs.c b/CNativeCode/OpenGL_JauJNI_funcs.c
index 3fe4c23..d070dfe 100755
--- a/CNativeCode/OpenGL_JauJNI_funcs.c
+++ b/CNativeCode/OpenGL_JauJNI_funcs.c
@@ -71,7 +71,7 @@ Java_gl4java_GLFuncJauJNI_glGetString ( JNIEnv *env, jobject obj,
}
static const char * _gl_lib_vendor_="Jausoft - Sven Goethel Software Development";
-static const char * _gl_lib_version_="2.8.0.8";
+static const char * _gl_lib_version_="2.8.1.0";
JNIEXPORT jstring JNICALL
Java_gl4java_GLFuncJauJNI_getNativeVendor ( JNIEnv *env, jobject obj )
@@ -91,13 +91,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
* Reading from file: gl-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvf ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearIndex (
JNIEnv *env, jobject obj,
@@ -111,13 +111,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearIndex ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearColor (
JNIEnv *env, jobject obj,
@@ -137,13 +137,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClear (
JNIEnv *env, jobject obj,
@@ -157,13 +157,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClear ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexMask (
JNIEnv *env, jobject obj,
@@ -177,13 +177,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorMask (
JNIEnv *env, jobject obj,
@@ -203,13 +203,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMask ( GLboolean red , GLboolean green , GLboolean blue , GLboolean alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFunc (
JNIEnv *env, jobject obj,
@@ -225,13 +225,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFunc ( GLenum func , GLclampf ref ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendFunc (
JNIEnv *env, jobject obj,
@@ -247,13 +247,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFunc ( GLenum sfactor , GLenum dfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLogicOp (
JNIEnv *env, jobject obj,
@@ -267,13 +267,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLogicOp ( GLenum opcode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCullFace (
JNIEnv *env, jobject obj,
@@ -287,13 +287,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFrontFace (
JNIEnv *env, jobject obj,
@@ -307,13 +307,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrontFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointSize (
JNIEnv *env, jobject obj,
@@ -327,13 +327,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointSize ( GLfloat size ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLineWidth (
JNIEnv *env, jobject obj,
@@ -347,13 +347,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLineWidth ( GLfloat width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLineStipple (
JNIEnv *env, jobject obj,
@@ -369,13 +369,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLineStipple ( GLint factor , GLushort pattern ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonMode (
JNIEnv *env, jobject obj,
@@ -391,13 +391,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonMode ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonOffset (
JNIEnv *env, jobject obj,
@@ -413,13 +413,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffset ( GLfloat factor , GLfloat units ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonStipple (
JNIEnv *env, jobject obj,
@@ -442,13 +442,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, mask, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonStipple ( const GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPolygonStipple (
JNIEnv *env, jobject obj,
@@ -472,13 +472,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, mask, ptr0, (isCopiedArray0 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPolygonStipple ( GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlag (
JNIEnv *env, jobject obj,
@@ -492,13 +492,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlag ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagv (
JNIEnv *env, jobject obj,
@@ -521,13 +521,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseBooleanArrayElements(env, flag, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagv ( const GLboolean * flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glScissor (
JNIEnv *env, jobject obj,
@@ -547,13 +547,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScissor ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClipPlane (
JNIEnv *env, jobject obj,
@@ -578,13 +578,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, equation, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClipPlane ( GLenum plane , const GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetClipPlane (
JNIEnv *env, jobject obj,
@@ -610,13 +610,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, equation, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetClipPlane ( GLenum plane , GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawBuffer (
JNIEnv *env, jobject obj,
@@ -630,13 +630,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReadBuffer (
JNIEnv *env, jobject obj,
@@ -650,13 +650,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnable (
JNIEnv *env, jobject obj,
@@ -670,13 +670,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDisable (
JNIEnv *env, jobject obj,
@@ -690,13 +690,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsEnabled (
JNIEnv *env, jobject obj,
@@ -713,13 +713,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsEnabled ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnableClientState (
JNIEnv *env, jobject obj,
@@ -733,13 +733,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDisableClientState (
JNIEnv *env, jobject obj,
@@ -753,13 +753,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetBooleanv (
JNIEnv *env, jobject obj,
@@ -785,13 +785,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseBooleanArrayElements(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetBooleanv ( GLenum pname , GLboolean * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetDoublev (
JNIEnv *env, jobject obj,
@@ -817,13 +817,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDoublev ( GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFloatv (
JNIEnv *env, jobject obj,
@@ -849,13 +849,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFloatv ( GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetIntegerv (
JNIEnv *env, jobject obj,
@@ -881,13 +881,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetIntegerv ( GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushAttrib (
JNIEnv *env, jobject obj,
@@ -901,13 +901,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopAttrib (
JNIEnv *env, jobject obj)
@@ -919,13 +919,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushClientAttrib (
JNIEnv *env, jobject obj,
@@ -939,13 +939,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushClientAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopClientAttrib (
JNIEnv *env, jobject obj)
@@ -957,13 +957,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopClientAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glRenderMode (
JNIEnv *env, jobject obj,
@@ -980,13 +980,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glRenderMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGetError (
JNIEnv *env, jobject obj)
@@ -1001,13 +1001,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLenum glGetError ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinish (
JNIEnv *env, jobject obj)
@@ -1019,13 +1019,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinish ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFlush (
JNIEnv *env, jobject obj)
@@ -1037,13 +1037,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlush ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHint (
JNIEnv *env, jobject obj,
@@ -1059,13 +1059,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHint ( GLenum target , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearDepth (
JNIEnv *env, jobject obj,
@@ -1079,13 +1079,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearDepth ( GLclampd depth ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDepthFunc (
JNIEnv *env, jobject obj,
@@ -1099,13 +1099,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthFunc ( GLenum func ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDepthMask (
JNIEnv *env, jobject obj,
@@ -1119,13 +1119,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthMask ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDepthRange (
JNIEnv *env, jobject obj,
@@ -1141,13 +1141,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthRange ( GLclampd near_val , GLclampd far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearAccum (
JNIEnv *env, jobject obj,
@@ -1167,13 +1167,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearAccum ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAccum (
JNIEnv *env, jobject obj,
@@ -1189,13 +1189,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAccum ( GLenum op , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixMode (
JNIEnv *env, jobject obj,
@@ -1209,13 +1209,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glOrtho (
JNIEnv *env, jobject obj,
@@ -1239,13 +1239,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glOrtho ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFrustum (
JNIEnv *env, jobject obj,
@@ -1269,13 +1269,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrustum ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glViewport (
JNIEnv *env, jobject obj,
@@ -1295,13 +1295,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glViewport ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushMatrix (
JNIEnv *env, jobject obj)
@@ -1313,13 +1313,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopMatrix (
JNIEnv *env, jobject obj)
@@ -1331,13 +1331,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadIdentity (
JNIEnv *env, jobject obj)
@@ -1349,13 +1349,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentity ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadMatrixd (
JNIEnv *env, jobject obj,
@@ -1378,13 +1378,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadMatrixf (
JNIEnv *env, jobject obj,
@@ -1407,13 +1407,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultMatrixd (
JNIEnv *env, jobject obj,
@@ -1436,13 +1436,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultMatrixf (
JNIEnv *env, jobject obj,
@@ -1465,13 +1465,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRotated (
JNIEnv *env, jobject obj,
@@ -1491,13 +1491,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRotated ( GLdouble angle , GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRotatef (
JNIEnv *env, jobject obj,
@@ -1517,13 +1517,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRotatef ( GLfloat angle , GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glScaled (
JNIEnv *env, jobject obj,
@@ -1541,13 +1541,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScaled ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glScalef (
JNIEnv *env, jobject obj,
@@ -1565,13 +1565,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glScalef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTranslated (
JNIEnv *env, jobject obj,
@@ -1589,13 +1589,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslated ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTranslatef (
JNIEnv *env, jobject obj,
@@ -1613,13 +1613,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslatef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsList (
JNIEnv *env, jobject obj,
@@ -1636,13 +1636,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteLists (
JNIEnv *env, jobject obj,
@@ -1658,13 +1658,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteLists ( GLuint list , GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenLists (
JNIEnv *env, jobject obj,
@@ -1681,13 +1681,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenLists ( GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNewList (
JNIEnv *env, jobject obj,
@@ -1703,13 +1703,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNewList ( GLuint list , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEndList (
JNIEnv *env, jobject obj)
@@ -1721,13 +1721,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndList ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCallList (
JNIEnv *env, jobject obj,
@@ -1741,13 +1741,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCallList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCallLists__II_3B (
JNIEnv *env, jobject obj,
@@ -1930,13 +1930,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, lists, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCallLists ( GLsizei n , GLenum type , const GLvoid * lists ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListBase (
JNIEnv *env, jobject obj,
@@ -1950,13 +1950,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListBase ( GLuint base ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBegin (
JNIEnv *env, jobject obj,
@@ -1970,13 +1970,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBegin ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnd (
JNIEnv *env, jobject obj)
@@ -1988,13 +1988,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnd ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2d (
JNIEnv *env, jobject obj,
@@ -2010,13 +2010,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2f (
JNIEnv *env, jobject obj,
@@ -2032,13 +2032,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2i (
JNIEnv *env, jobject obj,
@@ -2054,13 +2054,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2s (
JNIEnv *env, jobject obj,
@@ -2076,13 +2076,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3d (
JNIEnv *env, jobject obj,
@@ -2100,13 +2100,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3f (
JNIEnv *env, jobject obj,
@@ -2124,13 +2124,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3i (
JNIEnv *env, jobject obj,
@@ -2148,13 +2148,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3s (
JNIEnv *env, jobject obj,
@@ -2172,13 +2172,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4d (
JNIEnv *env, jobject obj,
@@ -2198,13 +2198,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4f (
JNIEnv *env, jobject obj,
@@ -2224,13 +2224,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4i (
JNIEnv *env, jobject obj,
@@ -2250,13 +2250,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4s (
JNIEnv *env, jobject obj,
@@ -2276,13 +2276,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2dv (
JNIEnv *env, jobject obj,
@@ -2305,13 +2305,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2fv (
JNIEnv *env, jobject obj,
@@ -2334,13 +2334,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2iv (
JNIEnv *env, jobject obj,
@@ -2363,13 +2363,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex2sv (
JNIEnv *env, jobject obj,
@@ -2392,13 +2392,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3dv (
JNIEnv *env, jobject obj,
@@ -2421,13 +2421,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3fv (
JNIEnv *env, jobject obj,
@@ -2450,13 +2450,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3iv (
JNIEnv *env, jobject obj,
@@ -2479,13 +2479,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex3sv (
JNIEnv *env, jobject obj,
@@ -2508,13 +2508,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4dv (
JNIEnv *env, jobject obj,
@@ -2537,13 +2537,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4fv (
JNIEnv *env, jobject obj,
@@ -2566,13 +2566,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4iv (
JNIEnv *env, jobject obj,
@@ -2595,13 +2595,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertex4sv (
JNIEnv *env, jobject obj,
@@ -2624,13 +2624,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3b (
JNIEnv *env, jobject obj,
@@ -2648,13 +2648,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3b ( GLbyte nx , GLbyte ny , GLbyte nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3d (
JNIEnv *env, jobject obj,
@@ -2672,13 +2672,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3d ( GLdouble nx , GLdouble ny , GLdouble nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3f (
JNIEnv *env, jobject obj,
@@ -2696,13 +2696,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3f ( GLfloat nx , GLfloat ny , GLfloat nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3i (
JNIEnv *env, jobject obj,
@@ -2720,13 +2720,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3i ( GLint nx , GLint ny , GLint nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3s (
JNIEnv *env, jobject obj,
@@ -2744,13 +2744,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3s ( GLshort nx , GLshort ny , GLshort nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3bv (
JNIEnv *env, jobject obj,
@@ -2773,13 +2773,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3dv (
JNIEnv *env, jobject obj,
@@ -2802,13 +2802,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3fv (
JNIEnv *env, jobject obj,
@@ -2831,13 +2831,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3iv (
JNIEnv *env, jobject obj,
@@ -2860,13 +2860,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3sv (
JNIEnv *env, jobject obj,
@@ -2889,13 +2889,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexd (
JNIEnv *env, jobject obj,
@@ -2909,13 +2909,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexd ( GLdouble c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexf (
JNIEnv *env, jobject obj,
@@ -2929,13 +2929,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexf ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexi (
JNIEnv *env, jobject obj,
@@ -2949,13 +2949,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexi ( GLint c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexs (
JNIEnv *env, jobject obj,
@@ -2969,13 +2969,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexs ( GLshort c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexub (
JNIEnv *env, jobject obj,
@@ -2989,13 +2989,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexub ( GLubyte c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexdv (
JNIEnv *env, jobject obj,
@@ -3018,13 +3018,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexdv ( const GLdouble * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexfv (
JNIEnv *env, jobject obj,
@@ -3047,13 +3047,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexfv ( const GLfloat * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexiv (
JNIEnv *env, jobject obj,
@@ -3076,13 +3076,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexiv ( const GLint * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexsv (
JNIEnv *env, jobject obj,
@@ -3105,13 +3105,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexsv ( const GLshort * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexubv (
JNIEnv *env, jobject obj,
@@ -3134,13 +3134,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, c, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexubv ( const GLubyte * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3b (
JNIEnv *env, jobject obj,
@@ -3158,13 +3158,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3b ( GLbyte red , GLbyte green , GLbyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3d (
JNIEnv *env, jobject obj,
@@ -3182,13 +3182,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3d ( GLdouble red , GLdouble green , GLdouble blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3f (
JNIEnv *env, jobject obj,
@@ -3206,13 +3206,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3f ( GLfloat red , GLfloat green , GLfloat blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3i (
JNIEnv *env, jobject obj,
@@ -3230,13 +3230,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3i ( GLint red , GLint green , GLint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3s (
JNIEnv *env, jobject obj,
@@ -3254,13 +3254,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3s ( GLshort red , GLshort green , GLshort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3ub (
JNIEnv *env, jobject obj,
@@ -3278,13 +3278,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ub ( GLubyte red , GLubyte green , GLubyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3ui (
JNIEnv *env, jobject obj,
@@ -3302,13 +3302,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ui ( GLuint red , GLuint green , GLuint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3us (
JNIEnv *env, jobject obj,
@@ -3326,13 +3326,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3us ( GLushort red , GLushort green , GLushort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4b (
JNIEnv *env, jobject obj,
@@ -3352,13 +3352,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4b ( GLbyte red , GLbyte green , GLbyte blue , GLbyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4d (
JNIEnv *env, jobject obj,
@@ -3378,13 +3378,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4d ( GLdouble red , GLdouble green , GLdouble blue , GLdouble alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4f (
JNIEnv *env, jobject obj,
@@ -3404,13 +3404,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4f ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4i (
JNIEnv *env, jobject obj,
@@ -3430,13 +3430,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4i ( GLint red , GLint green , GLint blue , GLint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4s (
JNIEnv *env, jobject obj,
@@ -3456,13 +3456,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4s ( GLshort red , GLshort green , GLshort blue , GLshort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ub (
JNIEnv *env, jobject obj,
@@ -3482,13 +3482,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ub ( GLubyte red , GLubyte green , GLubyte blue , GLubyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ui (
JNIEnv *env, jobject obj,
@@ -3508,13 +3508,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ui ( GLuint red , GLuint green , GLuint blue , GLuint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4us (
JNIEnv *env, jobject obj,
@@ -3534,13 +3534,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4us ( GLushort red , GLushort green , GLushort blue , GLushort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3bv (
JNIEnv *env, jobject obj,
@@ -3563,13 +3563,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3dv (
JNIEnv *env, jobject obj,
@@ -3592,13 +3592,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3fv (
JNIEnv *env, jobject obj,
@@ -3621,13 +3621,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3iv (
JNIEnv *env, jobject obj,
@@ -3650,13 +3650,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3sv (
JNIEnv *env, jobject obj,
@@ -3679,13 +3679,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3ubv (
JNIEnv *env, jobject obj,
@@ -3708,13 +3708,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3uiv (
JNIEnv *env, jobject obj,
@@ -3737,13 +3737,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3usv (
JNIEnv *env, jobject obj,
@@ -3766,13 +3766,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4bv (
JNIEnv *env, jobject obj,
@@ -3795,13 +3795,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4dv (
JNIEnv *env, jobject obj,
@@ -3824,13 +3824,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4fv (
JNIEnv *env, jobject obj,
@@ -3853,13 +3853,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4iv (
JNIEnv *env, jobject obj,
@@ -3882,13 +3882,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4sv (
JNIEnv *env, jobject obj,
@@ -3911,13 +3911,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubv (
JNIEnv *env, jobject obj,
@@ -3940,13 +3940,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4uiv (
JNIEnv *env, jobject obj,
@@ -3969,13 +3969,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4usv (
JNIEnv *env, jobject obj,
@@ -3998,13 +3998,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1d (
JNIEnv *env, jobject obj,
@@ -4018,13 +4018,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1d ( GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1f (
JNIEnv *env, jobject obj,
@@ -4038,13 +4038,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1f ( GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1i (
JNIEnv *env, jobject obj,
@@ -4058,13 +4058,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1i ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1s (
JNIEnv *env, jobject obj,
@@ -4078,13 +4078,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1s ( GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2d (
JNIEnv *env, jobject obj,
@@ -4100,13 +4100,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2d ( GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2f (
JNIEnv *env, jobject obj,
@@ -4122,13 +4122,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2f ( GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2i (
JNIEnv *env, jobject obj,
@@ -4144,13 +4144,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2i ( GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2s (
JNIEnv *env, jobject obj,
@@ -4166,13 +4166,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2s ( GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3d (
JNIEnv *env, jobject obj,
@@ -4190,13 +4190,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3d ( GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3f (
JNIEnv *env, jobject obj,
@@ -4214,13 +4214,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3f ( GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3i (
JNIEnv *env, jobject obj,
@@ -4238,13 +4238,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3i ( GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3s (
JNIEnv *env, jobject obj,
@@ -4262,13 +4262,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3s ( GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4d (
JNIEnv *env, jobject obj,
@@ -4288,13 +4288,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4d ( GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4f (
JNIEnv *env, jobject obj,
@@ -4314,13 +4314,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4f ( GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4i (
JNIEnv *env, jobject obj,
@@ -4340,13 +4340,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4i ( GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4s (
JNIEnv *env, jobject obj,
@@ -4366,13 +4366,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4s ( GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1dv (
JNIEnv *env, jobject obj,
@@ -4395,13 +4395,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1fv (
JNIEnv *env, jobject obj,
@@ -4424,13 +4424,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1iv (
JNIEnv *env, jobject obj,
@@ -4453,13 +4453,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord1sv (
JNIEnv *env, jobject obj,
@@ -4482,13 +4482,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2dv (
JNIEnv *env, jobject obj,
@@ -4511,13 +4511,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fv (
JNIEnv *env, jobject obj,
@@ -4540,13 +4540,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2iv (
JNIEnv *env, jobject obj,
@@ -4569,13 +4569,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2sv (
JNIEnv *env, jobject obj,
@@ -4598,13 +4598,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3dv (
JNIEnv *env, jobject obj,
@@ -4627,13 +4627,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3fv (
JNIEnv *env, jobject obj,
@@ -4656,13 +4656,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3iv (
JNIEnv *env, jobject obj,
@@ -4685,13 +4685,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord3sv (
JNIEnv *env, jobject obj,
@@ -4714,13 +4714,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4dv (
JNIEnv *env, jobject obj,
@@ -4743,13 +4743,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fv (
JNIEnv *env, jobject obj,
@@ -4772,13 +4772,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4iv (
JNIEnv *env, jobject obj,
@@ -4801,13 +4801,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4sv (
JNIEnv *env, jobject obj,
@@ -4830,13 +4830,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2d (
JNIEnv *env, jobject obj,
@@ -4852,13 +4852,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2f (
JNIEnv *env, jobject obj,
@@ -4874,13 +4874,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2i (
JNIEnv *env, jobject obj,
@@ -4896,13 +4896,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2s (
JNIEnv *env, jobject obj,
@@ -4918,13 +4918,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3d (
JNIEnv *env, jobject obj,
@@ -4942,13 +4942,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3f (
JNIEnv *env, jobject obj,
@@ -4966,13 +4966,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3i (
JNIEnv *env, jobject obj,
@@ -4990,13 +4990,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3s (
JNIEnv *env, jobject obj,
@@ -5014,13 +5014,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4d (
JNIEnv *env, jobject obj,
@@ -5040,13 +5040,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4f (
JNIEnv *env, jobject obj,
@@ -5066,13 +5066,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4i (
JNIEnv *env, jobject obj,
@@ -5092,13 +5092,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4s (
JNIEnv *env, jobject obj,
@@ -5118,13 +5118,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2dv (
JNIEnv *env, jobject obj,
@@ -5147,13 +5147,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2fv (
JNIEnv *env, jobject obj,
@@ -5176,13 +5176,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2iv (
JNIEnv *env, jobject obj,
@@ -5205,13 +5205,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos2sv (
JNIEnv *env, jobject obj,
@@ -5234,13 +5234,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3dv (
JNIEnv *env, jobject obj,
@@ -5263,13 +5263,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3fv (
JNIEnv *env, jobject obj,
@@ -5292,13 +5292,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3iv (
JNIEnv *env, jobject obj,
@@ -5321,13 +5321,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos3sv (
JNIEnv *env, jobject obj,
@@ -5350,13 +5350,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4dv (
JNIEnv *env, jobject obj,
@@ -5379,13 +5379,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4fv (
JNIEnv *env, jobject obj,
@@ -5408,13 +5408,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4iv (
JNIEnv *env, jobject obj,
@@ -5437,13 +5437,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRasterPos4sv (
JNIEnv *env, jobject obj,
@@ -5466,13 +5466,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectd (
JNIEnv *env, jobject obj,
@@ -5492,13 +5492,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectd ( GLdouble x1 , GLdouble y1 , GLdouble x2 , GLdouble y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectf (
JNIEnv *env, jobject obj,
@@ -5518,13 +5518,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectf ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRecti (
JNIEnv *env, jobject obj,
@@ -5544,13 +5544,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRecti ( GLint x1 , GLint y1 , GLint x2 , GLint y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRects (
JNIEnv *env, jobject obj,
@@ -5570,13 +5570,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRects ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectdv (
JNIEnv *env, jobject obj,
@@ -5610,13 +5610,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectdv ( const GLdouble * v1 , const GLdouble * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectfv (
JNIEnv *env, jobject obj,
@@ -5650,13 +5650,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectfv ( const GLfloat * v1 , const GLfloat * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectiv (
JNIEnv *env, jobject obj,
@@ -5690,13 +5690,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectiv ( const GLint * v1 , const GLint * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRectsv (
JNIEnv *env, jobject obj,
@@ -5730,13 +5730,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v2, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRectsv ( const GLshort * v1 , const GLshort * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -5933,13 +5933,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointer__II_3B (
JNIEnv *env, jobject obj,
@@ -6122,13 +6122,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -6325,13 +6325,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexPointer__II_3B (
JNIEnv *env, jobject obj,
@@ -6514,13 +6514,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointer__III_3B (
JNIEnv *env, jobject obj,
@@ -6717,13 +6717,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagPointer__I_3B (
JNIEnv *env, jobject obj,
@@ -6892,13 +6892,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, ptr, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointer ( GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPointerv__I_3_3B (
JNIEnv *env, jobject obj,
@@ -7074,13 +7074,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointerv ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glArrayElement (
JNIEnv *env, jobject obj,
@@ -7094,13 +7094,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElement ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawArrays (
JNIEnv *env, jobject obj,
@@ -7118,13 +7118,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArrays ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawElements__III_3B (
JNIEnv *env, jobject obj,
@@ -7321,13 +7321,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, indices, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawElements ( GLenum mode , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInterleavedArrays__II_3B (
JNIEnv *env, jobject obj,
@@ -7510,13 +7510,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, pointer, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInterleavedArrays ( GLenum format , GLsizei stride , const GLvoid * pointer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShadeModel (
JNIEnv *env, jobject obj,
@@ -7530,13 +7530,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShadeModel ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightf (
JNIEnv *env, jobject obj,
@@ -7554,13 +7554,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightf ( GLenum light , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLighti (
JNIEnv *env, jobject obj,
@@ -7578,13 +7578,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLighti ( GLenum light , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightfv (
JNIEnv *env, jobject obj,
@@ -7611,13 +7611,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightfv ( GLenum light , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightiv (
JNIEnv *env, jobject obj,
@@ -7644,13 +7644,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightiv ( GLenum light , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLightfv (
JNIEnv *env, jobject obj,
@@ -7678,13 +7678,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightfv ( GLenum light , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLightiv (
JNIEnv *env, jobject obj,
@@ -7712,13 +7712,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightiv ( GLenum light , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModelf (
JNIEnv *env, jobject obj,
@@ -7734,13 +7734,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModeli (
JNIEnv *env, jobject obj,
@@ -7756,13 +7756,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeli ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModelfv (
JNIEnv *env, jobject obj,
@@ -7787,13 +7787,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightModeliv (
JNIEnv *env, jobject obj,
@@ -7818,13 +7818,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeliv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMaterialf (
JNIEnv *env, jobject obj,
@@ -7842,13 +7842,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialf ( GLenum face , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMateriali (
JNIEnv *env, jobject obj,
@@ -7866,13 +7866,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMateriali ( GLenum face , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMaterialfv (
JNIEnv *env, jobject obj,
@@ -7899,13 +7899,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialfv ( GLenum face , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMaterialiv (
JNIEnv *env, jobject obj,
@@ -7932,13 +7932,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialiv ( GLenum face , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMaterialfv (
JNIEnv *env, jobject obj,
@@ -7966,13 +7966,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialfv ( GLenum face , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMaterialiv (
JNIEnv *env, jobject obj,
@@ -8000,13 +8000,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialiv ( GLenum face , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorMaterial (
JNIEnv *env, jobject obj,
@@ -8022,13 +8022,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMaterial ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelZoom (
JNIEnv *env, jobject obj,
@@ -8044,13 +8044,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelZoom ( GLfloat xfactor , GLfloat yfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelStoref (
JNIEnv *env, jobject obj,
@@ -8066,13 +8066,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStoref ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelStorei (
JNIEnv *env, jobject obj,
@@ -8088,13 +8088,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStorei ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransferf (
JNIEnv *env, jobject obj,
@@ -8110,13 +8110,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransferi (
JNIEnv *env, jobject obj,
@@ -8132,13 +8132,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelMapfv (
JNIEnv *env, jobject obj,
@@ -8165,13 +8165,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapfv ( GLenum map , GLint mapsize , const GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelMapuiv (
JNIEnv *env, jobject obj,
@@ -8198,13 +8198,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapuiv ( GLenum map , GLint mapsize , const GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelMapusv (
JNIEnv *env, jobject obj,
@@ -8231,13 +8231,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, values, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapusv ( GLenum map , GLint mapsize , const GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelMapfv (
JNIEnv *env, jobject obj,
@@ -8263,13 +8263,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapfv ( GLenum map , GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelMapuiv (
JNIEnv *env, jobject obj,
@@ -8295,13 +8295,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapuiv ( GLenum map , GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelMapusv (
JNIEnv *env, jobject obj,
@@ -8327,13 +8327,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, values, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapusv ( GLenum map , GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBitmap (
JNIEnv *env, jobject obj,
@@ -8368,13 +8368,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, bitmap, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBitmap ( GLsizei width , GLsizei height , GLfloat xorig , GLfloat yorig , GLfloat xmove , GLfloat ymove , const GLubyte * bitmap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReadPixels__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -8620,13 +8620,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, pixels, ptr6, (isCopiedArray6 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawPixels__IIII_3B (
JNIEnv *env, jobject obj,
@@ -8837,13 +8837,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, pixels, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawPixels ( GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyPixels (
JNIEnv *env, jobject obj,
@@ -8865,13 +8865,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStencilFunc (
JNIEnv *env, jobject obj,
@@ -8889,13 +8889,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilFunc ( GLenum func , GLint ref , GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStencilMask (
JNIEnv *env, jobject obj,
@@ -8909,13 +8909,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStencilOp (
JNIEnv *env, jobject obj,
@@ -8933,13 +8933,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilOp ( GLenum fail , GLenum zfail , GLenum zpass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClearStencil (
JNIEnv *env, jobject obj,
@@ -8953,13 +8953,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClearStencil ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGend (
JNIEnv *env, jobject obj,
@@ -8977,13 +8977,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGend ( GLenum coord , GLenum pname , GLdouble param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGenf (
JNIEnv *env, jobject obj,
@@ -9001,13 +9001,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenf ( GLenum coord , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGeni (
JNIEnv *env, jobject obj,
@@ -9025,13 +9025,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeni ( GLenum coord , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGendv (
JNIEnv *env, jobject obj,
@@ -9058,13 +9058,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGendv ( GLenum coord , GLenum pname , const GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGenfv (
JNIEnv *env, jobject obj,
@@ -9091,13 +9091,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenfv ( GLenum coord , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexGeniv (
JNIEnv *env, jobject obj,
@@ -9124,13 +9124,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeniv ( GLenum coord , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexGendv (
JNIEnv *env, jobject obj,
@@ -9158,13 +9158,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGendv ( GLenum coord , GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexGenfv (
JNIEnv *env, jobject obj,
@@ -9192,13 +9192,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGenfv ( GLenum coord , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexGeniv (
JNIEnv *env, jobject obj,
@@ -9226,13 +9226,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGeniv ( GLenum coord , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnvf (
JNIEnv *env, jobject obj,
@@ -9250,13 +9250,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnvi (
JNIEnv *env, jobject obj,
@@ -9274,13 +9274,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvi ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnvfv (
JNIEnv *env, jobject obj,
@@ -9307,13 +9307,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexEnviv (
JNIEnv *env, jobject obj,
@@ -9340,13 +9340,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnviv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexEnvfv (
JNIEnv *env, jobject obj,
@@ -9374,13 +9374,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnvfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexEnviv (
JNIEnv *env, jobject obj,
@@ -9408,13 +9408,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnviv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameterf (
JNIEnv *env, jobject obj,
@@ -9432,13 +9432,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameteri (
JNIEnv *env, jobject obj,
@@ -9456,13 +9456,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteri ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameterfv (
JNIEnv *env, jobject obj,
@@ -9489,13 +9489,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexParameteriv (
JNIEnv *env, jobject obj,
@@ -9522,13 +9522,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexParameterfv (
JNIEnv *env, jobject obj,
@@ -9556,13 +9556,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexParameteriv (
JNIEnv *env, jobject obj,
@@ -9590,13 +9590,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexLevelParameterfv (
JNIEnv *env, jobject obj,
@@ -9626,13 +9626,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameterfv ( GLenum target , GLint level , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexLevelParameteriv (
JNIEnv *env, jobject obj,
@@ -9662,13 +9662,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameteriv ( GLenum target , GLint level , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage1D__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -9921,13 +9921,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, pixels, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage1D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -10194,13 +10194,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, pixels, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage2D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLsizei height , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexImage__IIII_3B (
JNIEnv *env, jobject obj,
@@ -10418,13 +10418,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, pixels, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexImage ( GLenum target , GLint level , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenTextures (
JNIEnv *env, jobject obj,
@@ -10450,13 +10450,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, textures, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTextures ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteTextures (
JNIEnv *env, jobject obj,
@@ -10481,13 +10481,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, textures, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTextures ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindTexture (
JNIEnv *env, jobject obj,
@@ -10503,13 +10503,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTexture ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPrioritizeTextures (
JNIEnv *env, jobject obj,
@@ -10545,13 +10545,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, priorities, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTextures ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glAreTexturesResident (
JNIEnv *env, jobject obj,
@@ -10591,13 +10591,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResident ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsTexture (
JNIEnv *env, jobject obj,
@@ -10614,13 +10614,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTexture ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -10859,13 +10859,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, pixels, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -11132,13 +11132,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, pixels, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage1D (
JNIEnv *env, jobject obj,
@@ -11164,13 +11164,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage2D (
JNIEnv *env, jobject obj,
@@ -11198,13 +11198,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage1D (
JNIEnv *env, jobject obj,
@@ -11228,13 +11228,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage2D (
JNIEnv *env, jobject obj,
@@ -11262,13 +11262,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap1d (
JNIEnv *env, jobject obj,
@@ -11301,13 +11301,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, points, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint stride , GLint order , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap1f (
JNIEnv *env, jobject obj,
@@ -11340,13 +11340,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, points, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint stride , GLint order , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap2d (
JNIEnv *env, jobject obj,
@@ -11387,13 +11387,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, points, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint ustride , GLint uorder , GLdouble v1 , GLdouble v2 , GLint vstride , GLint vorder , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMap2f (
JNIEnv *env, jobject obj,
@@ -11434,13 +11434,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, points, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint ustride , GLint uorder , GLfloat v1 , GLfloat v2 , GLint vstride , GLint vorder , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapdv (
JNIEnv *env, jobject obj,
@@ -11468,13 +11468,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapdv ( GLenum target , GLenum query , GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapfv (
JNIEnv *env, jobject obj,
@@ -11502,13 +11502,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapfv ( GLenum target , GLenum query , GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapiv (
JNIEnv *env, jobject obj,
@@ -11536,13 +11536,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapiv ( GLenum target , GLenum query , GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1d (
JNIEnv *env, jobject obj,
@@ -11556,13 +11556,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1d ( GLdouble u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1f (
JNIEnv *env, jobject obj,
@@ -11576,13 +11576,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1f ( GLfloat u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1dv (
JNIEnv *env, jobject obj,
@@ -11605,13 +11605,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord1fv (
JNIEnv *env, jobject obj,
@@ -11634,13 +11634,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2d (
JNIEnv *env, jobject obj,
@@ -11656,13 +11656,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2d ( GLdouble u , GLdouble v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2f (
JNIEnv *env, jobject obj,
@@ -11678,13 +11678,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2f ( GLfloat u , GLfloat v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2dv (
JNIEnv *env, jobject obj,
@@ -11707,13 +11707,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalCoord2fv (
JNIEnv *env, jobject obj,
@@ -11736,13 +11736,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, u, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid1d (
JNIEnv *env, jobject obj,
@@ -11760,13 +11760,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1d ( GLint un , GLdouble u1 , GLdouble u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid1f (
JNIEnv *env, jobject obj,
@@ -11784,13 +11784,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1f ( GLint un , GLfloat u1 , GLfloat u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid2d (
JNIEnv *env, jobject obj,
@@ -11814,13 +11814,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2d ( GLint un , GLdouble u1 , GLdouble u2 , GLint vn , GLdouble v1 , GLdouble v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapGrid2f (
JNIEnv *env, jobject obj,
@@ -11844,13 +11844,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2f ( GLint un , GLfloat u1 , GLfloat u2 , GLint vn , GLfloat v1 , GLfloat v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalPoint1 (
JNIEnv *env, jobject obj,
@@ -11864,13 +11864,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint1 ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalPoint2 (
JNIEnv *env, jobject obj,
@@ -11886,13 +11886,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint2 ( GLint i , GLint j ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalMesh1 (
JNIEnv *env, jobject obj,
@@ -11910,13 +11910,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh1 ( GLenum mode , GLint i1 , GLint i2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalMesh2 (
JNIEnv *env, jobject obj,
@@ -11938,13 +11938,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh2 ( GLenum mode , GLint i1 , GLint i2 , GLint j1 , GLint j2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogf (
JNIEnv *env, jobject obj,
@@ -11960,13 +11960,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogi (
JNIEnv *env, jobject obj,
@@ -11982,13 +11982,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogfv (
JNIEnv *env, jobject obj,
@@ -12013,13 +12013,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogiv (
JNIEnv *env, jobject obj,
@@ -12044,13 +12044,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogiv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFeedbackBuffer (
JNIEnv *env, jobject obj,
@@ -12078,13 +12078,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, buffer, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFeedbackBuffer ( GLsizei size , GLenum type , GLfloat * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPassThrough (
JNIEnv *env, jobject obj,
@@ -12098,13 +12098,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPassThrough ( GLfloat token ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSelectBuffer (
JNIEnv *env, jobject obj,
@@ -12130,13 +12130,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, buffer, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSelectBuffer ( GLsizei size , GLuint * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInitNames (
JNIEnv *env, jobject obj)
@@ -12148,13 +12148,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInitNames ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadName (
JNIEnv *env, jobject obj,
@@ -12168,13 +12168,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPushName (
JNIEnv *env, jobject obj,
@@ -12188,13 +12188,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPushName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPopName (
JNIEnv *env, jobject obj)
@@ -12206,13 +12206,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPopName ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawRangeElements__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -12437,13 +12437,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, indices, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElements ( GLenum mode , GLuint start , GLuint end , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage3D__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -12724,13 +12724,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, pixels, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3D ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage3D__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -13025,13 +13025,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, pixels, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage3D (
JNIEnv *env, jobject obj,
@@ -13061,13 +13061,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTable__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -13292,13 +13292,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, table, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTable ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorSubTable__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -13523,13 +13523,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, data, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTable ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameteriv (
JNIEnv *env, jobject obj,
@@ -13556,13 +13556,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameterfv (
JNIEnv *env, jobject obj,
@@ -13589,13 +13589,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorSubTable (
JNIEnv *env, jobject obj,
@@ -13617,13 +13617,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTable ( GLenum target , GLsizei start , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorTable (
JNIEnv *env, jobject obj,
@@ -13645,13 +13645,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTable ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTable__III_3B (
JNIEnv *env, jobject obj,
@@ -13855,13 +13855,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, table, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTable ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterfv (
JNIEnv *env, jobject obj,
@@ -13889,13 +13889,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameteriv (
JNIEnv *env, jobject obj,
@@ -13923,13 +13923,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendEquation (
JNIEnv *env, jobject obj,
@@ -13943,13 +13943,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquation ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendColor (
JNIEnv *env, jobject obj,
@@ -13969,13 +13969,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHistogram (
JNIEnv *env, jobject obj,
@@ -13995,13 +13995,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogram ( GLenum target , GLsizei width , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetHistogram (
JNIEnv *env, jobject obj,
@@ -14015,13 +14015,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogram ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogram__IZII_3B (
JNIEnv *env, jobject obj,
@@ -14239,13 +14239,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, values, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogram ( GLenum target , GLboolean reset , GLenum format , GLenum type , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameterfv (
JNIEnv *env, jobject obj,
@@ -14273,13 +14273,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameteriv (
JNIEnv *env, jobject obj,
@@ -14307,13 +14307,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMinmax (
JNIEnv *env, jobject obj,
@@ -14331,13 +14331,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmax ( GLenum target , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetMinmax (
JNIEnv *env, jobject obj,
@@ -14351,13 +14351,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmax ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmax__IZII_3B (
JNIEnv *env, jobject obj,
@@ -14575,13 +14575,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, values, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmax ( GLenum target , GLboolean reset , GLenum format , GLenum types , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameterfv (
JNIEnv *env, jobject obj,
@@ -14609,13 +14609,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameteriv (
JNIEnv *env, jobject obj,
@@ -14643,13 +14643,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter1D__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -14874,13 +14874,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, image, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1D ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter2D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -15119,13 +15119,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, image, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterf (
JNIEnv *env, jobject obj,
@@ -15143,13 +15143,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterf ( GLenum target , GLenum pname , GLfloat params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterfv (
JNIEnv *env, jobject obj,
@@ -15176,13 +15176,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameteri (
JNIEnv *env, jobject obj,
@@ -15200,13 +15200,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteri ( GLenum target , GLenum pname , GLint params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameteriv (
JNIEnv *env, jobject obj,
@@ -15233,13 +15233,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter1D (
JNIEnv *env, jobject obj,
@@ -15261,13 +15261,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter2D (
JNIEnv *env, jobject obj,
@@ -15291,13 +15291,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionFilter__III_3B (
JNIEnv *env, jobject obj,
@@ -15501,13 +15501,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, image, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilter ( GLenum target , GLenum format , GLenum type , GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameterfv (
JNIEnv *env, jobject obj,
@@ -15535,13 +15535,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameteriv (
JNIEnv *env, jobject obj,
@@ -15569,13 +15569,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSeparableFilter2D__IIIIII_3B_3B (
JNIEnv *env, jobject obj,
@@ -15891,13 +15891,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, column, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * row , const GLvoid * column ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetSeparableFilter__III_3B_3B_3B (
JNIEnv *env, jobject obj,
@@ -16269,13 +16269,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, span, ptr5, (isCopiedArray5 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilter ( GLenum target , GLenum format , GLenum type , GLvoid * row , GLvoid * column , GLvoid * span ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glActiveTexture (
JNIEnv *env, jobject obj,
@@ -16289,13 +16289,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClientActiveTexture (
JNIEnv *env, jobject obj,
@@ -16309,13 +16309,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -16554,13 +16554,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, data, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage2D__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -16813,13 +16813,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, data, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage3D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17086,13 +17086,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, data, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage1D__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17331,13 +17331,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, data, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage2D__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17604,13 +17604,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, data, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage3D__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -17905,13 +17905,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, data, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCompressedTexImage__II_3B (
JNIEnv *env, jobject obj,
@@ -18101,13 +18101,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, img, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImage ( GLenum target , GLint lod , GLvoid * img ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1d (
JNIEnv *env, jobject obj,
@@ -18123,13 +18123,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1d ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1dv (
JNIEnv *env, jobject obj,
@@ -18154,13 +18154,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1f (
JNIEnv *env, jobject obj,
@@ -18176,13 +18176,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1f ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1fv (
JNIEnv *env, jobject obj,
@@ -18207,13 +18207,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1i (
JNIEnv *env, jobject obj,
@@ -18229,13 +18229,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1i ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1iv (
JNIEnv *env, jobject obj,
@@ -18260,13 +18260,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1s (
JNIEnv *env, jobject obj,
@@ -18282,13 +18282,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1s ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1sv (
JNIEnv *env, jobject obj,
@@ -18313,13 +18313,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2d (
JNIEnv *env, jobject obj,
@@ -18337,13 +18337,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2d ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2dv (
JNIEnv *env, jobject obj,
@@ -18368,13 +18368,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2f (
JNIEnv *env, jobject obj,
@@ -18392,13 +18392,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2f ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2fv (
JNIEnv *env, jobject obj,
@@ -18423,13 +18423,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2i (
JNIEnv *env, jobject obj,
@@ -18447,13 +18447,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2i ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2iv (
JNIEnv *env, jobject obj,
@@ -18478,13 +18478,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2s (
JNIEnv *env, jobject obj,
@@ -18502,13 +18502,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2s ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2sv (
JNIEnv *env, jobject obj,
@@ -18533,13 +18533,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3d (
JNIEnv *env, jobject obj,
@@ -18559,13 +18559,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3d ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3dv (
JNIEnv *env, jobject obj,
@@ -18590,13 +18590,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3f (
JNIEnv *env, jobject obj,
@@ -18616,13 +18616,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3f ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3fv (
JNIEnv *env, jobject obj,
@@ -18647,13 +18647,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3i (
JNIEnv *env, jobject obj,
@@ -18673,13 +18673,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3i ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3iv (
JNIEnv *env, jobject obj,
@@ -18704,13 +18704,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3s (
JNIEnv *env, jobject obj,
@@ -18730,13 +18730,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3s ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3sv (
JNIEnv *env, jobject obj,
@@ -18761,13 +18761,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4d (
JNIEnv *env, jobject obj,
@@ -18789,13 +18789,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4d ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4dv (
JNIEnv *env, jobject obj,
@@ -18820,13 +18820,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4f (
JNIEnv *env, jobject obj,
@@ -18848,13 +18848,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4f ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4fv (
JNIEnv *env, jobject obj,
@@ -18879,13 +18879,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4i (
JNIEnv *env, jobject obj,
@@ -18907,13 +18907,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4i ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4iv (
JNIEnv *env, jobject obj,
@@ -18938,13 +18938,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4s (
JNIEnv *env, jobject obj,
@@ -18966,13 +18966,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4s ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4sv (
JNIEnv *env, jobject obj,
@@ -18997,13 +18997,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixd (
JNIEnv *env, jobject obj,
@@ -19026,13 +19026,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixf (
JNIEnv *env, jobject obj,
@@ -19055,13 +19055,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixd (
JNIEnv *env, jobject obj,
@@ -19084,13 +19084,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixf (
JNIEnv *env, jobject obj,
@@ -19113,13 +19113,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, m, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleCoverage (
JNIEnv *env, jobject obj,
@@ -19135,13 +19135,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverage ( GLclampf value , GLboolean invert ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSamplePass (
JNIEnv *env, jobject obj,
@@ -19155,13 +19155,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePass ( GLenum pass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glActiveTextureARB (
JNIEnv *env, jobject obj,
@@ -19175,13 +19175,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClientActiveTextureARB (
JNIEnv *env, jobject obj,
@@ -19195,13 +19195,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1dARB (
JNIEnv *env, jobject obj,
@@ -19217,13 +19217,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dARB ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1dvARB (
JNIEnv *env, jobject obj,
@@ -19248,13 +19248,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1fARB (
JNIEnv *env, jobject obj,
@@ -19270,13 +19270,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fARB ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1fvARB (
JNIEnv *env, jobject obj,
@@ -19301,13 +19301,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1iARB (
JNIEnv *env, jobject obj,
@@ -19323,13 +19323,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iARB ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1ivARB (
JNIEnv *env, jobject obj,
@@ -19354,13 +19354,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1sARB (
JNIEnv *env, jobject obj,
@@ -19376,13 +19376,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sARB ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord1svARB (
JNIEnv *env, jobject obj,
@@ -19407,13 +19407,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2dARB (
JNIEnv *env, jobject obj,
@@ -19431,13 +19431,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dARB ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2dvARB (
JNIEnv *env, jobject obj,
@@ -19462,13 +19462,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2fARB (
JNIEnv *env, jobject obj,
@@ -19486,13 +19486,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fARB ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2fvARB (
JNIEnv *env, jobject obj,
@@ -19517,13 +19517,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2iARB (
JNIEnv *env, jobject obj,
@@ -19541,13 +19541,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iARB ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2ivARB (
JNIEnv *env, jobject obj,
@@ -19572,13 +19572,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2sARB (
JNIEnv *env, jobject obj,
@@ -19596,13 +19596,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sARB ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord2svARB (
JNIEnv *env, jobject obj,
@@ -19627,13 +19627,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3dARB (
JNIEnv *env, jobject obj,
@@ -19653,13 +19653,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3dvARB (
JNIEnv *env, jobject obj,
@@ -19684,13 +19684,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3fARB (
JNIEnv *env, jobject obj,
@@ -19710,13 +19710,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3fvARB (
JNIEnv *env, jobject obj,
@@ -19741,13 +19741,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3iARB (
JNIEnv *env, jobject obj,
@@ -19767,13 +19767,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iARB ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3ivARB (
JNIEnv *env, jobject obj,
@@ -19798,13 +19798,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3sARB (
JNIEnv *env, jobject obj,
@@ -19824,13 +19824,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sARB ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord3svARB (
JNIEnv *env, jobject obj,
@@ -19855,13 +19855,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4dARB (
JNIEnv *env, jobject obj,
@@ -19883,13 +19883,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4dvARB (
JNIEnv *env, jobject obj,
@@ -19914,13 +19914,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4fARB (
JNIEnv *env, jobject obj,
@@ -19942,13 +19942,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4fvARB (
JNIEnv *env, jobject obj,
@@ -19973,13 +19973,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4iARB (
JNIEnv *env, jobject obj,
@@ -20001,13 +20001,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iARB ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4ivARB (
JNIEnv *env, jobject obj,
@@ -20032,13 +20032,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4sARB (
JNIEnv *env, jobject obj,
@@ -20060,13 +20060,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sARB ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiTexCoord4svARB (
JNIEnv *env, jobject obj,
@@ -20091,13 +20091,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, v, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendColorEXT (
JNIEnv *env, jobject obj,
@@ -20117,13 +20117,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColorEXT ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPolygonOffsetEXT (
JNIEnv *env, jobject obj,
@@ -20139,13 +20139,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffsetEXT ( GLfloat factor , GLfloat bias ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage3DEXT__IIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -20426,13 +20426,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, pixels, ptr9, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3DEXT ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage3DEXT__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -20727,13 +20727,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, pixels, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage3DEXT (
JNIEnv *env, jobject obj,
@@ -20763,13 +20763,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3DEXT ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenTexturesEXT (
JNIEnv *env, jobject obj,
@@ -20795,13 +20795,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, textures, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTexturesEXT ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteTexturesEXT (
JNIEnv *env, jobject obj,
@@ -20826,13 +20826,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, textures, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTexturesEXT ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindTextureEXT (
JNIEnv *env, jobject obj,
@@ -20848,13 +20848,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTextureEXT ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPrioritizeTexturesEXT (
JNIEnv *env, jobject obj,
@@ -20890,13 +20890,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, priorities, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTexturesEXT ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glAreTexturesResidentEXT (
JNIEnv *env, jobject obj,
@@ -20936,13 +20936,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResidentEXT ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsTextureEXT (
JNIEnv *env, jobject obj,
@@ -20959,13 +20959,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTextureEXT ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -21176,13 +21176,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, ptr, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -21379,13 +21379,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -21596,13 +21596,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, ptr, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -21799,13 +21799,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, ptr, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointerEXT__IIII_3B (
JNIEnv *env, jobject obj,
@@ -22016,13 +22016,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, ptr, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagPointerEXT (
JNIEnv *env, jobject obj,
@@ -22049,13 +22049,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseBooleanArrayElements(env, ptr, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerEXT ( GLsizei stride , GLsizei count , const GLboolean * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPointervEXT__I_3_3B (
JNIEnv *env, jobject obj,
@@ -22231,13 +22231,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, params, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointervEXT ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glArrayElementEXT (
JNIEnv *env, jobject obj,
@@ -22251,13 +22251,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElementEXT ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawArraysEXT (
JNIEnv *env, jobject obj,
@@ -22275,13 +22275,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArraysEXT ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendEquationEXT (
JNIEnv *env, jobject obj,
@@ -22295,13 +22295,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquationEXT ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfEXT (
JNIEnv *env, jobject obj,
@@ -22317,13 +22317,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfEXT ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -22348,13 +22348,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvEXT ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfSGIS (
JNIEnv *env, jobject obj,
@@ -22370,13 +22370,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfSGIS ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -22401,13 +22401,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvSGIS ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -22632,13 +22632,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, table, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableEXT ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorSubTableEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -22863,13 +22863,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, data, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTableEXT ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -23073,13 +23073,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, table, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableEXT ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -23107,13 +23107,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvEXT ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterivEXT (
JNIEnv *env, jobject obj,
@@ -23141,13 +23141,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, params, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivEXT ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLockArraysEXT (
JNIEnv *env, jobject obj,
@@ -23163,13 +23163,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLockArraysEXT ( GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glUnlockArraysEXT (
JNIEnv *env, jobject obj)
@@ -23181,13 +23181,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glUnlockArraysEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixfARB (
JNIEnv *env, jobject obj,
@@ -23210,13 +23210,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadTransposeMatrixdARB (
JNIEnv *env, jobject obj,
@@ -23239,13 +23239,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixfARB (
JNIEnv *env, jobject obj,
@@ -23268,13 +23268,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultTransposeMatrixdARB (
JNIEnv *env, jobject obj,
@@ -23297,13 +23297,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleCoverageARB (
JNIEnv *env, jobject obj,
@@ -23319,13 +23319,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverageARB ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage3DARB__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -23592,13 +23592,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage2DARB__IIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -23851,13 +23851,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg7, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexImage1DARB__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -24096,13 +24096,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1DARB ( GLenum , GLint , GLenum , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage3DARB__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -24397,13 +24397,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg10, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage3DARB ( GLenum , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage2DARB__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -24670,13 +24670,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2DARB ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCompressedTexSubImage1DARB__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -24915,13 +24915,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1DARB ( GLenum , GLint , GLint , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCompressedTexImageARB__II_3B (
JNIEnv *env, jobject obj,
@@ -25111,13 +25111,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImageARB ( GLenum , GLint , void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightbvARB (
JNIEnv *env, jobject obj,
@@ -25142,13 +25142,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightbvARB ( GLint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightsvARB (
JNIEnv *env, jobject obj,
@@ -25173,13 +25173,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightsvARB ( GLint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightivARB (
JNIEnv *env, jobject obj,
@@ -25204,13 +25204,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightivARB ( GLint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightfvARB (
JNIEnv *env, jobject obj,
@@ -25235,13 +25235,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightfvARB ( GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightdvARB (
JNIEnv *env, jobject obj,
@@ -25266,13 +25266,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightdvARB ( GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightubvARB (
JNIEnv *env, jobject obj,
@@ -25297,13 +25297,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightusvARB (
JNIEnv *env, jobject obj,
@@ -25328,13 +25328,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightuivARB (
JNIEnv *env, jobject obj,
@@ -25359,13 +25359,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWeightPointerARB__III_3B (
JNIEnv *env, jobject obj,
@@ -25562,13 +25562,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexBlendARB (
JNIEnv *env, jobject obj,
@@ -25582,13 +25582,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCurrentPaletteMatrixARB (
JNIEnv *env, jobject obj,
@@ -25602,13 +25602,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCurrentPaletteMatrixARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexubvARB (
JNIEnv *env, jobject obj,
@@ -25633,13 +25633,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexusvARB (
JNIEnv *env, jobject obj,
@@ -25664,13 +25664,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexuivARB (
JNIEnv *env, jobject obj,
@@ -25695,13 +25695,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMatrixIndexPointerARB__III_3B (
JNIEnv *env, jobject obj,
@@ -25898,13 +25898,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexFilterFuncSGIS (
JNIEnv *env, jobject obj,
@@ -25932,13 +25932,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexFilterFuncSGIS ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexFilterFuncSGIS (
JNIEnv *env, jobject obj,
@@ -25967,13 +25967,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexFilterFuncSGIS ( GLenum , GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage1DEXT__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -26212,13 +26212,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1DEXT ( GLenum , GLint , GLint , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage2DEXT__IIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -26485,13 +26485,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage1DEXT (
JNIEnv *env, jobject obj,
@@ -26517,13 +26517,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexImage2DEXT (
JNIEnv *env, jobject obj,
@@ -26551,13 +26551,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage1DEXT (
JNIEnv *env, jobject obj,
@@ -26581,13 +26581,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1DEXT ( GLenum , GLint , GLint , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyTexSubImage2DEXT (
JNIEnv *env, jobject obj,
@@ -26615,13 +26615,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramEXT__IZII_3B (
JNIEnv *env, jobject obj,
@@ -26839,13 +26839,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -26873,13 +26873,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetHistogramParameterivEXT (
JNIEnv *env, jobject obj,
@@ -26907,13 +26907,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxEXT__IZII_3B (
JNIEnv *env, jobject obj,
@@ -27131,13 +27131,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -27165,13 +27165,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMinmaxParameterivEXT (
JNIEnv *env, jobject obj,
@@ -27199,13 +27199,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHistogramEXT (
JNIEnv *env, jobject obj,
@@ -27225,13 +27225,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogramEXT ( GLenum , GLsizei , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMinmaxEXT (
JNIEnv *env, jobject obj,
@@ -27249,13 +27249,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmaxEXT ( GLenum , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetHistogramEXT (
JNIEnv *env, jobject obj,
@@ -27269,13 +27269,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogramEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glResetMinmaxEXT (
JNIEnv *env, jobject obj,
@@ -27289,13 +27289,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmaxEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter1DEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -27520,13 +27520,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg5, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1DEXT ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionFilter2DEXT__IIIIII_3B (
JNIEnv *env, jobject obj,
@@ -27765,13 +27765,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg6, ptr6, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterfEXT (
JNIEnv *env, jobject obj,
@@ -27789,13 +27789,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -27822,13 +27822,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameteriEXT (
JNIEnv *env, jobject obj,
@@ -27846,13 +27846,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glConvolutionParameterivEXT (
JNIEnv *env, jobject obj,
@@ -27879,13 +27879,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter1DEXT (
JNIEnv *env, jobject obj,
@@ -27907,13 +27907,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1DEXT ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyConvolutionFilter2DEXT (
JNIEnv *env, jobject obj,
@@ -27937,13 +27937,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2DEXT ( GLenum , GLenum , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionFilterEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -28147,13 +28147,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilterEXT ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -28181,13 +28181,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetConvolutionParameterivEXT (
JNIEnv *env, jobject obj,
@@ -28215,13 +28215,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetSeparableFilterEXT__III_3B_3B_3B (
JNIEnv *env, jobject obj,
@@ -28593,13 +28593,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg5, ptr5, (isCopiedArray5 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilterEXT ( GLenum , GLenum , GLenum , GLvoid * , GLvoid * , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSeparableFilter2DEXT__IIIIII_3B_3B (
JNIEnv *env, jobject obj,
@@ -28915,13 +28915,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg7, ptr7, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableSGI__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -29146,13 +29146,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg5, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableSGI ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameterfvSGI (
JNIEnv *env, jobject obj,
@@ -29179,13 +29179,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfvSGI ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorTableParameterivSGI (
JNIEnv *env, jobject obj,
@@ -29212,13 +29212,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterivSGI ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorTableSGI (
JNIEnv *env, jobject obj,
@@ -29240,13 +29240,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTableSGI ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableSGI__III_3B (
JNIEnv *env, jobject obj,
@@ -29450,13 +29450,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableSGI ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterfvSGI (
JNIEnv *env, jobject obj,
@@ -29484,13 +29484,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvSGI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetColorTableParameterivSGI (
JNIEnv *env, jobject obj,
@@ -29518,13 +29518,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivSGI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenSGIX (
JNIEnv *env, jobject obj,
@@ -29538,13 +29538,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenSGIX ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameteriSGIS (
JNIEnv *env, jobject obj,
@@ -29560,13 +29560,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameteriSGIS ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameterivSGIS (
JNIEnv *env, jobject obj,
@@ -29591,13 +29591,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterivSGIS ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameterfSGIS (
JNIEnv *env, jobject obj,
@@ -29613,13 +29613,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfSGIS ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTexGenParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -29644,13 +29644,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfvSGIS ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelTexGenParameterivSGIS (
JNIEnv *env, jobject obj,
@@ -29676,13 +29676,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterivSGIS ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetPixelTexGenParameterfvSGIS (
JNIEnv *env, jobject obj,
@@ -29708,13 +29708,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterfvSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexImage4DSGIS__IIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -30009,13 +30009,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg10, ptr10, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage4DSGIS ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLsizei , GLint , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexSubImage4DSGIS__IIIIIIIIIIII_3B (
JNIEnv *env, jobject obj,
@@ -30338,13 +30338,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg12, ptr12, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage4DSGIS ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDetailTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -30371,13 +30371,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDetailTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetDetailTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -30403,13 +30403,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDetailTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSharpenTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -30436,13 +30436,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSharpenTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetSharpenTexFuncSGIS (
JNIEnv *env, jobject obj,
@@ -30468,13 +30468,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSharpenTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleMaskSGIS (
JNIEnv *env, jobject obj,
@@ -30490,13 +30490,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskSGIS ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSamplePatternSGIS (
JNIEnv *env, jobject obj,
@@ -30510,13 +30510,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternSGIS ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameterfSGIX (
JNIEnv *env, jobject obj,
@@ -30532,13 +30532,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -30563,13 +30563,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameteriSGIX (
JNIEnv *env, jobject obj,
@@ -30585,13 +30585,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameteriSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSpriteParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -30616,13 +30616,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfARB (
JNIEnv *env, jobject obj,
@@ -30638,13 +30638,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfARB ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPointParameterfvARB (
JNIEnv *env, jobject obj,
@@ -30669,13 +30669,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvARB ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGetInstrumentsSGIX (
JNIEnv *env, jobject obj)
@@ -30690,13 +30690,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glGetInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInstrumentsBufferSGIX (
JNIEnv *env, jobject obj,
@@ -30722,13 +30722,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInstrumentsBufferSGIX ( GLsizei , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glPollInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -30755,13 +30755,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollInstrumentsSGIX ( GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReadInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -30775,13 +30775,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReadInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStartInstrumentsSGIX (
JNIEnv *env, jobject obj)
@@ -30793,13 +30793,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStartInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glStopInstrumentsSGIX (
JNIEnv *env, jobject obj,
@@ -30813,13 +30813,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glStopInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFrameZoomSGIX (
JNIEnv *env, jobject obj,
@@ -30833,13 +30833,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFrameZoomSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTagSampleBufferSGIX (
JNIEnv *env, jobject obj)
@@ -30851,13 +30851,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTagSampleBufferSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeformationMap3dSGIX (
JNIEnv *env, jobject obj,
@@ -30906,13 +30906,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg13, ptr13, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3dSGIX ( GLenum , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeformationMap3fSGIX (
JNIEnv *env, jobject obj,
@@ -30961,13 +30961,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg13, ptr13, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3fSGIX ( GLenum , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeformSGIX (
JNIEnv *env, jobject obj,
@@ -30981,13 +30981,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadIdentityDeformationMapSGIX (
JNIEnv *env, jobject obj,
@@ -31001,13 +31001,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentityDeformationMapSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReferencePlaneSGIX (
JNIEnv *env, jobject obj,
@@ -31030,13 +31030,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReferencePlaneSGIX ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFlushRasterSGIX (
JNIEnv *env, jobject obj)
@@ -31048,13 +31048,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushRasterSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogFuncSGIS (
JNIEnv *env, jobject obj,
@@ -31079,13 +31079,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogFuncSGIS ( GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFogFuncSGIS (
JNIEnv *env, jobject obj,
@@ -31109,13 +31109,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg0, ptr0, (isCopiedArray0 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFogFuncSGIS ( GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameteriHP (
JNIEnv *env, jobject obj,
@@ -31133,13 +31133,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameteriHP ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameterfHP (
JNIEnv *env, jobject obj,
@@ -31157,13 +31157,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfHP ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameterivHP (
JNIEnv *env, jobject obj,
@@ -31190,13 +31190,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterivHP ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glImageTransformParameterfvHP (
JNIEnv *env, jobject obj,
@@ -31223,13 +31223,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfvHP ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetImageTransformParameterivHP (
JNIEnv *env, jobject obj,
@@ -31257,13 +31257,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterivHP ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetImageTransformParameterfvHP (
JNIEnv *env, jobject obj,
@@ -31291,13 +31291,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterfvHP ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCopyColorSubTableEXT (
JNIEnv *env, jobject obj,
@@ -31319,13 +31319,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTableEXT ( GLenum , GLsizei , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glHintPGI (
JNIEnv *env, jobject obj,
@@ -31341,13 +31341,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glHintPGI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetListParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -31375,13 +31375,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterfvSGIX ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetListParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -31409,13 +31409,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterivSGIX ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameterfSGIX (
JNIEnv *env, jobject obj,
@@ -31433,13 +31433,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfSGIX ( GLuint , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameterfvSGIX (
JNIEnv *env, jobject obj,
@@ -31466,13 +31466,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfvSGIX ( GLuint , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameteriSGIX (
JNIEnv *env, jobject obj,
@@ -31490,13 +31490,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameteriSGIX ( GLuint , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glListParameterivSGIX (
JNIEnv *env, jobject obj,
@@ -31523,13 +31523,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterivSGIX ( GLuint , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexMaterialEXT (
JNIEnv *env, jobject obj,
@@ -31545,13 +31545,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexFuncEXT (
JNIEnv *env, jobject obj,
@@ -31567,13 +31567,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexFuncEXT ( GLenum , GLclampf ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCullParameterdvEXT (
JNIEnv *env, jobject obj,
@@ -31599,13 +31599,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterdvEXT ( GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCullParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -31631,13 +31631,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterfvEXT ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentColorMaterialSGIX (
JNIEnv *env, jobject obj,
@@ -31653,13 +31653,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentColorMaterialSGIX ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightfSGIX (
JNIEnv *env, jobject obj,
@@ -31677,13 +31677,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightfvSGIX (
JNIEnv *env, jobject obj,
@@ -31710,13 +31710,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightiSGIX (
JNIEnv *env, jobject obj,
@@ -31734,13 +31734,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightivSGIX (
JNIEnv *env, jobject obj,
@@ -31767,13 +31767,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModelfSGIX (
JNIEnv *env, jobject obj,
@@ -31789,13 +31789,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModelfvSGIX (
JNIEnv *env, jobject obj,
@@ -31820,13 +31820,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModeliSGIX (
JNIEnv *env, jobject obj,
@@ -31842,13 +31842,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModeliSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentLightModelivSGIX (
JNIEnv *env, jobject obj,
@@ -31873,13 +31873,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialfSGIX (
JNIEnv *env, jobject obj,
@@ -31897,13 +31897,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialfvSGIX (
JNIEnv *env, jobject obj,
@@ -31930,13 +31930,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialiSGIX (
JNIEnv *env, jobject obj,
@@ -31954,13 +31954,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFragmentMaterialivSGIX (
JNIEnv *env, jobject obj,
@@ -31987,13 +31987,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentLightfvSGIX (
JNIEnv *env, jobject obj,
@@ -32021,13 +32021,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentLightivSGIX (
JNIEnv *env, jobject obj,
@@ -32055,13 +32055,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentMaterialfvSGIX (
JNIEnv *env, jobject obj,
@@ -32089,13 +32089,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFragmentMaterialivSGIX (
JNIEnv *env, jobject obj,
@@ -32123,13 +32123,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLightEnviSGIX (
JNIEnv *env, jobject obj,
@@ -32145,13 +32145,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLightEnviSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDrawRangeElementsEXT__IIIII_3B (
JNIEnv *env, jobject obj,
@@ -32376,13 +32376,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg5, ptr5, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElementsEXT ( GLenum , GLuint , GLuint , GLsizei , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glApplyTextureEXT (
JNIEnv *env, jobject obj,
@@ -32396,13 +32396,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glApplyTextureEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureLightEXT (
JNIEnv *env, jobject obj,
@@ -32416,13 +32416,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureLightEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureMaterialEXT (
JNIEnv *env, jobject obj,
@@ -32438,13 +32438,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAsyncMarkerSGIX (
JNIEnv *env, jobject obj,
@@ -32458,13 +32458,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glFinishAsyncSGIX (
JNIEnv *env, jobject obj,
@@ -32491,13 +32491,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glFinishAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glPollAsyncSGIX (
JNIEnv *env, jobject obj,
@@ -32524,13 +32524,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenAsyncMarkersSGIX (
JNIEnv *env, jobject obj,
@@ -32547,13 +32547,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenAsyncMarkersSGIX ( GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteAsyncMarkersSGIX (
JNIEnv *env, jobject obj,
@@ -32569,13 +32569,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteAsyncMarkersSGIX ( GLuint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsAsyncMarkerSGIX (
JNIEnv *env, jobject obj,
@@ -32592,13 +32592,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -32781,13 +32781,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointervINTEL__I_3_3B (
JNIEnv *env, jobject obj,
@@ -32956,13 +32956,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointervINTEL ( GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -33145,13 +33145,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointervINTEL__II_3_3B (
JNIEnv *env, jobject obj,
@@ -33334,13 +33334,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameteriEXT (
JNIEnv *env, jobject obj,
@@ -33358,13 +33358,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameterfEXT (
JNIEnv *env, jobject obj,
@@ -33382,13 +33382,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameterivEXT (
JNIEnv *env, jobject obj,
@@ -33415,13 +33415,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPixelTransformParameterfvEXT (
JNIEnv *env, jobject obj,
@@ -33448,13 +33448,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3bEXT (
JNIEnv *env, jobject obj,
@@ -33472,13 +33472,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3bvEXT (
JNIEnv *env, jobject obj,
@@ -33501,13 +33501,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3dEXT (
JNIEnv *env, jobject obj,
@@ -33525,13 +33525,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3dvEXT (
JNIEnv *env, jobject obj,
@@ -33554,13 +33554,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3fEXT (
JNIEnv *env, jobject obj,
@@ -33578,13 +33578,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3fvEXT (
JNIEnv *env, jobject obj,
@@ -33607,13 +33607,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3iEXT (
JNIEnv *env, jobject obj,
@@ -33631,13 +33631,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3ivEXT (
JNIEnv *env, jobject obj,
@@ -33660,13 +33660,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3sEXT (
JNIEnv *env, jobject obj,
@@ -33684,13 +33684,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3svEXT (
JNIEnv *env, jobject obj,
@@ -33713,13 +33713,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3ubEXT (
JNIEnv *env, jobject obj,
@@ -33737,13 +33737,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubEXT ( GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3ubvEXT (
JNIEnv *env, jobject obj,
@@ -33766,13 +33766,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubvEXT ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3uiEXT (
JNIEnv *env, jobject obj,
@@ -33790,13 +33790,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uiEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3uivEXT (
JNIEnv *env, jobject obj,
@@ -33819,13 +33819,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uivEXT ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3usEXT (
JNIEnv *env, jobject obj,
@@ -33843,13 +33843,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usEXT ( GLushort , GLushort , GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColor3usvEXT (
JNIEnv *env, jobject obj,
@@ -33872,13 +33872,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usvEXT ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColorPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -34075,13 +34075,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerEXT ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureNormalEXT (
JNIEnv *env, jobject obj,
@@ -34095,13 +34095,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureNormalEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiDrawArraysEXT (
JNIEnv *env, jobject obj,
@@ -34141,13 +34141,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawArraysEXT ( GLenum , GLint * , GLsizei * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiDrawElementsEXT__I_3II_3_3BI (
JNIEnv *env, jobject obj,
@@ -34421,13 +34421,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawElementsEXT ( GLenum , const GLsizei * , GLenum , const GLvoid * * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordfEXT (
JNIEnv *env, jobject obj,
@@ -34441,13 +34441,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordfvEXT (
JNIEnv *env, jobject obj,
@@ -34470,13 +34470,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoorddEXT (
JNIEnv *env, jobject obj,
@@ -34490,13 +34490,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddEXT ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoorddvEXT (
JNIEnv *env, jobject obj,
@@ -34519,13 +34519,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -34708,13 +34708,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3bEXT (
JNIEnv *env, jobject obj,
@@ -34732,13 +34732,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3bvEXT (
JNIEnv *env, jobject obj,
@@ -34761,13 +34761,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3dEXT (
JNIEnv *env, jobject obj,
@@ -34785,13 +34785,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3dvEXT (
JNIEnv *env, jobject obj,
@@ -34814,13 +34814,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3fEXT (
JNIEnv *env, jobject obj,
@@ -34838,13 +34838,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3fvEXT (
JNIEnv *env, jobject obj,
@@ -34867,13 +34867,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3iEXT (
JNIEnv *env, jobject obj,
@@ -34891,13 +34891,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3ivEXT (
JNIEnv *env, jobject obj,
@@ -34920,13 +34920,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3sEXT (
JNIEnv *env, jobject obj,
@@ -34944,13 +34944,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangent3svEXT (
JNIEnv *env, jobject obj,
@@ -34973,13 +34973,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3bEXT (
JNIEnv *env, jobject obj,
@@ -34997,13 +34997,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3bvEXT (
JNIEnv *env, jobject obj,
@@ -35026,13 +35026,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3dEXT (
JNIEnv *env, jobject obj,
@@ -35050,13 +35050,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3dvEXT (
JNIEnv *env, jobject obj,
@@ -35079,13 +35079,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3fEXT (
JNIEnv *env, jobject obj,
@@ -35103,13 +35103,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3fvEXT (
JNIEnv *env, jobject obj,
@@ -35132,13 +35132,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3iEXT (
JNIEnv *env, jobject obj,
@@ -35156,13 +35156,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3ivEXT (
JNIEnv *env, jobject obj,
@@ -35185,13 +35185,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3sEXT (
JNIEnv *env, jobject obj,
@@ -35209,13 +35209,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormal3svEXT (
JNIEnv *env, jobject obj,
@@ -35238,13 +35238,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTangentPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -35427,13 +35427,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTangentPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBinormalPointerEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -35616,13 +35616,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormalPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinishTextureSUNX (
JNIEnv *env, jobject obj)
@@ -35634,13 +35634,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishTextureSUNX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorbSUN (
JNIEnv *env, jobject obj,
@@ -35654,13 +35654,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorbSUN ( GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorsSUN (
JNIEnv *env, jobject obj,
@@ -35674,13 +35674,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorsSUN ( GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactoriSUN (
JNIEnv *env, jobject obj,
@@ -35694,13 +35694,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoriSUN ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorfSUN (
JNIEnv *env, jobject obj,
@@ -35714,13 +35714,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorfSUN ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactordSUN (
JNIEnv *env, jobject obj,
@@ -35734,13 +35734,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactordSUN ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorubSUN (
JNIEnv *env, jobject obj,
@@ -35754,13 +35754,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactorusSUN (
JNIEnv *env, jobject obj,
@@ -35774,13 +35774,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGlobalAlphaFactoruiSUN (
JNIEnv *env, jobject obj,
@@ -35794,13 +35794,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoruiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiSUN (
JNIEnv *env, jobject obj,
@@ -35814,13 +35814,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeusSUN (
JNIEnv *env, jobject obj,
@@ -35834,13 +35834,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeubSUN (
JNIEnv *env, jobject obj,
@@ -35854,13 +35854,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuivSUN (
JNIEnv *env, jobject obj,
@@ -35883,13 +35883,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuivSUN ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeusvSUN (
JNIEnv *env, jobject obj,
@@ -35912,13 +35912,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusvSUN ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeubvSUN (
JNIEnv *env, jobject obj,
@@ -35941,13 +35941,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubvSUN ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodePointerSUN__II_3_3B (
JNIEnv *env, jobject obj,
@@ -36130,13 +36130,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodePointerSUN ( GLenum , GLsizei , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex2fSUN (
JNIEnv *env, jobject obj,
@@ -36160,13 +36160,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex2fvSUN (
JNIEnv *env, jobject obj,
@@ -36200,13 +36200,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36232,13 +36232,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36272,13 +36272,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36302,13 +36302,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36342,13 +36342,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36372,13 +36372,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36412,13 +36412,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36450,13 +36450,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36501,13 +36501,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36529,13 +36529,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36569,13 +36569,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fVertex4fSUN (
JNIEnv *env, jobject obj,
@@ -36603,13 +36603,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fVertex4fvSUN (
JNIEnv *env, jobject obj,
@@ -36643,13 +36643,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36679,13 +36679,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fSUN ( GLfloat , GLfloat , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36730,13 +36730,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fvSUN ( const GLfloat * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36764,13 +36764,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36815,13 +36815,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36849,13 +36849,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -36900,13 +36900,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -36942,13 +36942,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord2fColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37004,13 +37004,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fColor4fNormal3fVertex4fSUN (
JNIEnv *env, jobject obj,
@@ -37052,13 +37052,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoord4fColor4fNormal3fVertex4fvSUN (
JNIEnv *env, jobject obj,
@@ -37114,13 +37114,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37140,13 +37140,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37180,13 +37180,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fvSUN ( const GLenum * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4ubVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37214,13 +37214,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fSUN ( GLenum , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4ubVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37265,13 +37265,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fvSUN ( const GLenum * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37297,13 +37297,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37348,13 +37348,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37380,13 +37380,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37431,13 +37431,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37471,13 +37471,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37533,13 +37533,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37563,13 +37563,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37614,13 +37614,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37650,13 +37650,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37712,13 +37712,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (
JNIEnv *env, jobject obj,
@@ -37756,13 +37756,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (
JNIEnv *env, jobject obj,
@@ -37829,13 +37829,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg4, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendFuncSeparateEXT (
JNIEnv *env, jobject obj,
@@ -37855,13 +37855,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateEXT ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBlendFuncSeparateINGR (
JNIEnv *env, jobject obj,
@@ -37881,13 +37881,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateINGR ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexWeightfEXT (
JNIEnv *env, jobject obj,
@@ -37901,13 +37901,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexWeightfvEXT (
JNIEnv *env, jobject obj,
@@ -37930,13 +37930,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg0, ptr0, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexWeightPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -38133,13 +38133,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightPointerEXT ( GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFlushVertexArrayRangeNV (
JNIEnv *env, jobject obj)
@@ -38151,13 +38151,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushVertexArrayRangeNV ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexArrayRangeNV__I_3B (
JNIEnv *env, jobject obj,
@@ -38326,13 +38326,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexArrayRangeNV ( GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameterfvNV (
JNIEnv *env, jobject obj,
@@ -38357,13 +38357,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfvNV ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameterfNV (
JNIEnv *env, jobject obj,
@@ -38379,13 +38379,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfNV ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameterivNV (
JNIEnv *env, jobject obj,
@@ -38410,13 +38410,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterivNV ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerParameteriNV (
JNIEnv *env, jobject obj,
@@ -38432,13 +38432,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameteriNV ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerInputNV (
JNIEnv *env, jobject obj,
@@ -38462,13 +38462,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerInputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerOutputNV (
JNIEnv *env, jobject obj,
@@ -38500,13 +38500,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerOutputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinalCombinerInputNV (
JNIEnv *env, jobject obj,
@@ -38526,13 +38526,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinalCombinerInputNV ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerInputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -38564,13 +38564,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterfvNV ( GLenum , GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerInputParameterivNV (
JNIEnv *env, jobject obj,
@@ -38602,13 +38602,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg4, ptr4, (isCopiedArray4 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterivNV ( GLenum , GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerOutputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -38638,13 +38638,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterfvNV ( GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerOutputParameterivNV (
JNIEnv *env, jobject obj,
@@ -38674,13 +38674,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterivNV ( GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFinalCombinerInputParameterfvNV (
JNIEnv *env, jobject obj,
@@ -38708,13 +38708,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFinalCombinerInputParameterivNV (
JNIEnv *env, jobject obj,
@@ -38742,13 +38742,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiModeDrawArraysIBM (
JNIEnv *env, jobject obj,
@@ -38788,13 +38788,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawArraysIBM ( GLenum , const GLint * , const GLsizei * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMultiModeDrawElementsIBM___3I_3II_3_3BII (
JNIEnv *env, jobject obj,
@@ -39145,13 +39145,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawElementsIBM ( const GLenum * , const GLsizei * , GLenum , const GLvoid * * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -39362,13 +39362,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSecondaryColorPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -39579,13 +39579,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEdgeFlagPointerListIBM (
JNIEnv *env, jobject obj,
@@ -39612,13 +39612,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseBooleanArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerListIBM ( GLint , const GLboolean * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFogCoordPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -39815,13 +39815,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIndexPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -40018,13 +40018,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalPointerListIBM__II_3_3BI (
JNIEnv *env, jobject obj,
@@ -40221,13 +40221,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexCoordPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -40438,13 +40438,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexPointerListIBM__III_3_3BI (
JNIEnv *env, jobject obj,
@@ -40655,13 +40655,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTbufferMask3DFX (
JNIEnv *env, jobject obj,
@@ -40675,13 +40675,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTbufferMask3DFX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleMaskEXT (
JNIEnv *env, jobject obj,
@@ -40697,13 +40697,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskEXT ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSamplePatternEXT (
JNIEnv *env, jobject obj,
@@ -40717,13 +40717,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTextureColorMaskSGIS (
JNIEnv *env, jobject obj,
@@ -40743,13 +40743,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureColorMaskSGIS ( GLboolean , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glIglooInterfaceSGIX__I_3B (
JNIEnv *env, jobject obj,
@@ -40918,13 +40918,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glIglooInterfaceSGIX ( GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenFencesNV (
JNIEnv *env, jobject obj,
@@ -40950,13 +40950,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenFencesNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteFencesNV (
JNIEnv *env, jobject obj,
@@ -40981,13 +40981,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFencesNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetFenceNV (
JNIEnv *env, jobject obj,
@@ -41003,13 +41003,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFenceNV ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glTestFenceNV (
JNIEnv *env, jobject obj,
@@ -41026,13 +41026,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glTestFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glFinishFenceNV (
JNIEnv *env, jobject obj,
@@ -41046,13 +41046,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsFenceNV (
JNIEnv *env, jobject obj,
@@ -41069,13 +41069,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetFenceivNV (
JNIEnv *env, jobject obj,
@@ -41103,13 +41103,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFenceivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapControlPointsNV__IIIIIIIZ_3B (
JNIEnv *env, jobject obj,
@@ -41376,13 +41376,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg8, ptr8, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLint , GLint , GLboolean , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapParameterivNV (
JNIEnv *env, jobject obj,
@@ -41409,13 +41409,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterivNV ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glMapParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41442,13 +41442,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapControlPointsNV__IIIIIZ_3B (
JNIEnv *env, jobject obj,
@@ -41694,13 +41694,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg6, ptr6, (isCopiedArray6 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLboolean , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapParameterivNV (
JNIEnv *env, jobject obj,
@@ -41728,13 +41728,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41762,13 +41762,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapAttribParameterivNV (
JNIEnv *env, jobject obj,
@@ -41798,13 +41798,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetMapAttribParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41834,13 +41834,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEvalMapsNV (
JNIEnv *env, jobject obj,
@@ -41856,13 +41856,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMapsNV ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glCombinerStageParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41889,13 +41889,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerStageParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetCombinerStageParameterfvNV (
JNIEnv *env, jobject obj,
@@ -41923,13 +41923,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerStageParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindProgramNV (
JNIEnv *env, jobject obj,
@@ -41945,13 +41945,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindProgramNV ( GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteProgramsNV (
JNIEnv *env, jobject obj,
@@ -41976,13 +41976,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glExecuteProgramNV (
JNIEnv *env, jobject obj,
@@ -42009,13 +42009,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glExecuteProgramNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGenProgramsNV (
JNIEnv *env, jobject obj,
@@ -42041,13 +42041,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGenProgramsNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glAreProgramsResidentNV (
JNIEnv *env, jobject obj,
@@ -42087,13 +42087,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreProgramsResidentNV ( GLsizei , const GLuint * , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glRequestResidentProgramsNV (
JNIEnv *env, jobject obj,
@@ -42118,13 +42118,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glRequestResidentProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramParameterfvNV (
JNIEnv *env, jobject obj,
@@ -42154,13 +42154,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramParameterdvNV (
JNIEnv *env, jobject obj,
@@ -42190,13 +42190,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterdvNV ( GLenum , GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramivNV (
JNIEnv *env, jobject obj,
@@ -42224,13 +42224,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetProgramStringNV (
JNIEnv *env, jobject obj,
@@ -42258,13 +42258,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramStringNV ( GLuint , GLenum , GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTrackMatrixivNV (
JNIEnv *env, jobject obj,
@@ -42294,13 +42294,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg3, ptr3, (isCopiedArray3 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTrackMatrixivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribdvNV (
JNIEnv *env, jobject obj,
@@ -42328,13 +42328,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribdvNV ( GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribfvNV (
JNIEnv *env, jobject obj,
@@ -42362,13 +42362,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribfvNV ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribivNV (
JNIEnv *env, jobject obj,
@@ -42396,13 +42396,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVertexAttribPointervNV__II_3_3B (
JNIEnv *env, jobject obj,
@@ -42592,13 +42592,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribPointervNV ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsProgramNV (
JNIEnv *env, jobject obj,
@@ -42615,13 +42615,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsProgramNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glLoadProgramNV (
JNIEnv *env, jobject obj,
@@ -42650,13 +42650,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadProgramNV ( GLenum , GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4fNV (
JNIEnv *env, jobject obj,
@@ -42680,13 +42680,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fNV ( GLenum , GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4dNV (
JNIEnv *env, jobject obj,
@@ -42710,13 +42710,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dNV ( GLenum , GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4dvNV (
JNIEnv *env, jobject obj,
@@ -42743,13 +42743,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dvNV ( GLenum , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameter4fvNV (
JNIEnv *env, jobject obj,
@@ -42776,13 +42776,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fvNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameters4dvNV (
JNIEnv *env, jobject obj,
@@ -42811,13 +42811,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4dvNV ( GLenum , GLuint , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glProgramParameters4fvNV (
JNIEnv *env, jobject obj,
@@ -42846,13 +42846,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4fvNV ( GLenum , GLuint , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTrackMatrixNV (
JNIEnv *env, jobject obj,
@@ -42872,13 +42872,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTrackMatrixNV ( GLenum , GLuint , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribPointerNV__IIII_3B (
JNIEnv *env, jobject obj,
@@ -43089,13 +43089,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg4, ptr4, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribPointerNV ( GLuint , GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1sNV (
JNIEnv *env, jobject obj,
@@ -43111,13 +43111,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1sNV ( GLuint , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1fNV (
JNIEnv *env, jobject obj,
@@ -43133,13 +43133,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fNV ( GLuint , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1dNV (
JNIEnv *env, jobject obj,
@@ -43155,13 +43155,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dNV ( GLuint , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2sNV (
JNIEnv *env, jobject obj,
@@ -43179,13 +43179,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2sNV ( GLuint , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2fNV (
JNIEnv *env, jobject obj,
@@ -43203,13 +43203,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fNV ( GLuint , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2dNV (
JNIEnv *env, jobject obj,
@@ -43227,13 +43227,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dNV ( GLuint , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3sNV (
JNIEnv *env, jobject obj,
@@ -43253,13 +43253,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3sNV ( GLuint , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3fNV (
JNIEnv *env, jobject obj,
@@ -43279,13 +43279,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fNV ( GLuint , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3dNV (
JNIEnv *env, jobject obj,
@@ -43305,13 +43305,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dNV ( GLuint , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4sNV (
JNIEnv *env, jobject obj,
@@ -43333,13 +43333,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4sNV ( GLuint , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4fNV (
JNIEnv *env, jobject obj,
@@ -43361,13 +43361,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fNV ( GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4dNV (
JNIEnv *env, jobject obj,
@@ -43389,13 +43389,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dNV ( GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4ubNV (
JNIEnv *env, jobject obj,
@@ -43417,13 +43417,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubNV ( GLuint , GLubyte , GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1svNV (
JNIEnv *env, jobject obj,
@@ -43448,13 +43448,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1fvNV (
JNIEnv *env, jobject obj,
@@ -43479,13 +43479,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib1dvNV (
JNIEnv *env, jobject obj,
@@ -43510,13 +43510,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2svNV (
JNIEnv *env, jobject obj,
@@ -43541,13 +43541,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2fvNV (
JNIEnv *env, jobject obj,
@@ -43572,13 +43572,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib2dvNV (
JNIEnv *env, jobject obj,
@@ -43603,13 +43603,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3svNV (
JNIEnv *env, jobject obj,
@@ -43634,13 +43634,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3fvNV (
JNIEnv *env, jobject obj,
@@ -43665,13 +43665,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib3dvNV (
JNIEnv *env, jobject obj,
@@ -43696,13 +43696,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4svNV (
JNIEnv *env, jobject obj,
@@ -43727,13 +43727,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4fvNV (
JNIEnv *env, jobject obj,
@@ -43758,13 +43758,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4dvNV (
JNIEnv *env, jobject obj,
@@ -43789,13 +43789,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttrib4ubvNV (
JNIEnv *env, jobject obj,
@@ -43820,13 +43820,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubvNV ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs1svNV (
JNIEnv *env, jobject obj,
@@ -43853,13 +43853,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs1fvNV (
JNIEnv *env, jobject obj,
@@ -43886,13 +43886,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs1dvNV (
JNIEnv *env, jobject obj,
@@ -43919,13 +43919,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs2svNV (
JNIEnv *env, jobject obj,
@@ -43952,13 +43952,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs2fvNV (
JNIEnv *env, jobject obj,
@@ -43985,13 +43985,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs2dvNV (
JNIEnv *env, jobject obj,
@@ -44018,13 +44018,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs3svNV (
JNIEnv *env, jobject obj,
@@ -44051,13 +44051,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs3fvNV (
JNIEnv *env, jobject obj,
@@ -44084,13 +44084,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs3dvNV (
JNIEnv *env, jobject obj,
@@ -44117,13 +44117,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4svNV (
JNIEnv *env, jobject obj,
@@ -44150,13 +44150,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4fvNV (
JNIEnv *env, jobject obj,
@@ -44183,13 +44183,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4dvNV (
JNIEnv *env, jobject obj,
@@ -44216,13 +44216,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexAttribs4ubvNV (
JNIEnv *env, jobject obj,
@@ -44249,13 +44249,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4ubvNV ( GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexBumpParameterivATI (
JNIEnv *env, jobject obj,
@@ -44280,13 +44280,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterivATI ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glTexBumpParameterfvATI (
JNIEnv *env, jobject obj,
@@ -44311,13 +44311,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterfvATI ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexBumpParameterivATI (
JNIEnv *env, jobject obj,
@@ -44343,13 +44343,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterivATI ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetTexBumpParameterfvATI (
JNIEnv *env, jobject obj,
@@ -44375,13 +44375,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, (isCopiedArray1 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterfvATI ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenFragmentShadersATI (
JNIEnv *env, jobject obj,
@@ -44398,13 +44398,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenFragmentShadersATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindFragmentShaderATI (
JNIEnv *env, jobject obj,
@@ -44418,13 +44418,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteFragmentShaderATI (
JNIEnv *env, jobject obj,
@@ -44438,13 +44438,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBeginFragmentShaderATI (
JNIEnv *env, jobject obj)
@@ -44456,13 +44456,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEndFragmentShaderATI (
JNIEnv *env, jobject obj)
@@ -44474,13 +44474,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPassTexCoordATI (
JNIEnv *env, jobject obj,
@@ -44498,13 +44498,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPassTexCoordATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSampleMapATI (
JNIEnv *env, jobject obj,
@@ -44522,13 +44522,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMapATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorFragmentOp1ATI (
JNIEnv *env, jobject obj,
@@ -44554,13 +44554,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorFragmentOp2ATI (
JNIEnv *env, jobject obj,
@@ -44592,13 +44592,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glColorFragmentOp3ATI (
JNIEnv *env, jobject obj,
@@ -44636,13 +44636,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFragmentOp1ATI (
JNIEnv *env, jobject obj,
@@ -44666,13 +44666,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFragmentOp2ATI (
JNIEnv *env, jobject obj,
@@ -44702,13 +44702,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glAlphaFragmentOp3ATI (
JNIEnv *env, jobject obj,
@@ -44744,13 +44744,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetFragmentShaderConstantATI (
JNIEnv *env, jobject obj,
@@ -44775,13 +44775,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFragmentShaderConstantATI ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPNTrianglesiATI (
JNIEnv *env, jobject obj,
@@ -44797,13 +44797,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesiATI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glPNTrianglesfATI (
JNIEnv *env, jobject obj,
@@ -44819,13 +44819,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesfATI ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glNewObjectBufferATI__I_3BI (
JNIEnv *env, jobject obj,
@@ -45029,13 +45029,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
}
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glNewObjectBufferATI ( GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsObjectBufferATI (
JNIEnv *env, jobject obj,
@@ -45052,13 +45052,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glUpdateObjectBufferATI__III_3BI (
JNIEnv *env, jobject obj,
@@ -45269,13 +45269,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glUpdateObjectBufferATI ( GLuint , GLuint , GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetObjectBufferfvATI (
JNIEnv *env, jobject obj,
@@ -45303,13 +45303,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetObjectBufferivATI (
JNIEnv *env, jobject obj,
@@ -45337,13 +45337,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteObjectBufferATI (
JNIEnv *env, jobject obj,
@@ -45357,13 +45357,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glArrayObjectATI (
JNIEnv *env, jobject obj,
@@ -45387,13 +45387,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayObjectATI ( GLenum , GLint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetArrayObjectfvATI (
JNIEnv *env, jobject obj,
@@ -45421,13 +45421,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectfvATI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetArrayObjectivATI (
JNIEnv *env, jobject obj,
@@ -45455,13 +45455,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectivATI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantArrayObjectATI (
JNIEnv *env, jobject obj,
@@ -45483,13 +45483,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantArrayObjectATI ( GLuint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantArrayObjectfvATI (
JNIEnv *env, jobject obj,
@@ -45517,13 +45517,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantArrayObjectivATI (
JNIEnv *env, jobject obj,
@@ -45551,13 +45551,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBeginVertexShaderEXT (
JNIEnv *env, jobject obj)
@@ -45569,13 +45569,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEndVertexShaderEXT (
JNIEnv *env, jobject obj)
@@ -45587,13 +45587,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEndVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glBindVertexShaderEXT (
JNIEnv *env, jobject obj,
@@ -45607,13 +45607,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glBindVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenVertexShadersEXT (
JNIEnv *env, jobject obj,
@@ -45630,13 +45630,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenVertexShadersEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDeleteVertexShaderEXT (
JNIEnv *env, jobject obj,
@@ -45650,13 +45650,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShaderOp1EXT (
JNIEnv *env, jobject obj,
@@ -45674,13 +45674,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp1EXT ( GLenum , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShaderOp2EXT (
JNIEnv *env, jobject obj,
@@ -45700,13 +45700,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp2EXT ( GLenum , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glShaderOp3EXT (
JNIEnv *env, jobject obj,
@@ -45728,13 +45728,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp3EXT ( GLenum , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSwizzleEXT (
JNIEnv *env, jobject obj,
@@ -45758,13 +45758,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSwizzleEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glWriteMaskEXT (
JNIEnv *env, jobject obj,
@@ -45788,13 +45788,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glWriteMaskEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glInsertComponentEXT (
JNIEnv *env, jobject obj,
@@ -45812,13 +45812,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glInsertComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glExtractComponentEXT (
JNIEnv *env, jobject obj,
@@ -45836,13 +45836,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glExtractComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glGenSymbolsEXT (
JNIEnv *env, jobject obj,
@@ -45865,13 +45865,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenSymbolsEXT ( GLenum , GLenum , GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetInvariantEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -46054,13 +46054,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetInvariantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glSetLocalConstantEXT__II_3B (
JNIEnv *env, jobject obj,
@@ -46243,13 +46243,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glSetLocalConstantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantbvEXT (
JNIEnv *env, jobject obj,
@@ -46274,13 +46274,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantbvEXT ( GLuint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantsvEXT (
JNIEnv *env, jobject obj,
@@ -46305,13 +46305,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantsvEXT ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantivEXT (
JNIEnv *env, jobject obj,
@@ -46336,13 +46336,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantivEXT ( GLuint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantfvEXT (
JNIEnv *env, jobject obj,
@@ -46367,13 +46367,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantfvEXT ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantdvEXT (
JNIEnv *env, jobject obj,
@@ -46398,13 +46398,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantdvEXT ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantubvEXT (
JNIEnv *env, jobject obj,
@@ -46429,13 +46429,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantubvEXT ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantusvEXT (
JNIEnv *env, jobject obj,
@@ -46460,13 +46460,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantusvEXT ( GLuint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantuivEXT (
JNIEnv *env, jobject obj,
@@ -46491,13 +46491,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantuivEXT ( GLuint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVariantPointerEXT__III_3B (
JNIEnv *env, jobject obj,
@@ -46694,13 +46694,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg3, ptr3, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantPointerEXT ( GLuint , GLenum , GLuint , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glEnableVariantClientStateEXT (
JNIEnv *env, jobject obj,
@@ -46714,13 +46714,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glDisableVariantClientStateEXT (
JNIEnv *env, jobject obj,
@@ -46734,13 +46734,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindLightParameterEXT (
JNIEnv *env, jobject obj,
@@ -46759,13 +46759,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindLightParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindMaterialParameterEXT (
JNIEnv *env, jobject obj,
@@ -46784,13 +46784,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindMaterialParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindTexGenParameterEXT (
JNIEnv *env, jobject obj,
@@ -46811,13 +46811,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTexGenParameterEXT ( GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindTextureUnitParameterEXT (
JNIEnv *env, jobject obj,
@@ -46836,13 +46836,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTextureUnitParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jint JNICALL
Java_gl4java_GLFuncJauJNI_glBindParameterEXT (
JNIEnv *env, jobject obj,
@@ -46859,13 +46859,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindParameterEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT jboolean JNICALL
Java_gl4java_GLFuncJauJNI_glIsVariantEnabledEXT (
JNIEnv *env, jobject obj,
@@ -46884,13 +46884,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
return ret;
}
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsVariantEnabledEXT ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -46918,13 +46918,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseBooleanArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -46952,13 +46952,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -46986,13 +46986,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetVariantPointervEXT__II_3_3B (
JNIEnv *env, jobject obj,
@@ -47182,13 +47182,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseLongArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantPointervEXT ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetInvariantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -47216,13 +47216,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseBooleanArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetInvariantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -47250,13 +47250,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetInvariantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -47284,13 +47284,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLocalConstantBooleanvEXT (
JNIEnv *env, jobject obj,
@@ -47318,13 +47318,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseBooleanArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLocalConstantIntegervEXT (
JNIEnv *env, jobject obj,
@@ -47352,13 +47352,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glGetLocalConstantFloatvEXT (
JNIEnv *env, jobject obj,
@@ -47386,13 +47386,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg2, ptr2, (isCopiedArray2 == JNI_TRUE)?0:JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1s (
JNIEnv *env, jobject obj,
@@ -47408,13 +47408,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1s ( GLenum , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1sv (
JNIEnv *env, jobject obj,
@@ -47439,13 +47439,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1i (
JNIEnv *env, jobject obj,
@@ -47461,13 +47461,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1i ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1iv (
JNIEnv *env, jobject obj,
@@ -47492,13 +47492,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1f (
JNIEnv *env, jobject obj,
@@ -47514,13 +47514,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1f ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1fv (
JNIEnv *env, jobject obj,
@@ -47545,13 +47545,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1d (
JNIEnv *env, jobject obj,
@@ -47567,13 +47567,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1d ( GLenum , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream1dv (
JNIEnv *env, jobject obj,
@@ -47598,13 +47598,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2s (
JNIEnv *env, jobject obj,
@@ -47622,13 +47622,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2s ( GLenum , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2sv (
JNIEnv *env, jobject obj,
@@ -47653,13 +47653,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2i (
JNIEnv *env, jobject obj,
@@ -47677,13 +47677,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2i ( GLenum , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2iv (
JNIEnv *env, jobject obj,
@@ -47708,13 +47708,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2f (
JNIEnv *env, jobject obj,
@@ -47732,13 +47732,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2f ( GLenum , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2fv (
JNIEnv *env, jobject obj,
@@ -47763,13 +47763,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2d (
JNIEnv *env, jobject obj,
@@ -47787,13 +47787,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2d ( GLenum , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream2dv (
JNIEnv *env, jobject obj,
@@ -47818,13 +47818,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3s (
JNIEnv *env, jobject obj,
@@ -47844,13 +47844,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3sv (
JNIEnv *env, jobject obj,
@@ -47875,13 +47875,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3i (
JNIEnv *env, jobject obj,
@@ -47901,13 +47901,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3iv (
JNIEnv *env, jobject obj,
@@ -47932,13 +47932,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3f (
JNIEnv *env, jobject obj,
@@ -47958,13 +47958,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3fv (
JNIEnv *env, jobject obj,
@@ -47989,13 +47989,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3d (
JNIEnv *env, jobject obj,
@@ -48015,13 +48015,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream3dv (
JNIEnv *env, jobject obj,
@@ -48046,13 +48046,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4s (
JNIEnv *env, jobject obj,
@@ -48074,13 +48074,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4s ( GLenum , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4sv (
JNIEnv *env, jobject obj,
@@ -48105,13 +48105,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4i (
JNIEnv *env, jobject obj,
@@ -48133,13 +48133,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4i ( GLenum , GLint , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4iv (
JNIEnv *env, jobject obj,
@@ -48164,13 +48164,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4f (
JNIEnv *env, jobject obj,
@@ -48192,13 +48192,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4f ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4fv (
JNIEnv *env, jobject obj,
@@ -48223,13 +48223,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4d (
JNIEnv *env, jobject obj,
@@ -48251,13 +48251,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4d ( GLenum , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexStream4dv (
JNIEnv *env, jobject obj,
@@ -48282,13 +48282,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3b (
JNIEnv *env, jobject obj,
@@ -48308,13 +48308,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3b ( GLenum , GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3bv (
JNIEnv *env, jobject obj,
@@ -48339,13 +48339,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseByteArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3bv ( GLenum , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3s (
JNIEnv *env, jobject obj,
@@ -48365,13 +48365,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3sv (
JNIEnv *env, jobject obj,
@@ -48396,13 +48396,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseShortArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3i (
JNIEnv *env, jobject obj,
@@ -48422,13 +48422,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3iv (
JNIEnv *env, jobject obj,
@@ -48453,13 +48453,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseIntArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3f (
JNIEnv *env, jobject obj,
@@ -48479,13 +48479,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3fv (
JNIEnv *env, jobject obj,
@@ -48510,13 +48510,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseFloatArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3d (
JNIEnv *env, jobject obj,
@@ -48536,13 +48536,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glNormalStream3dv (
JNIEnv *env, jobject obj,
@@ -48567,13 +48567,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
(*env)->ReleaseDoubleArrayElements(env, arg1, ptr1, JNI_ABORT);
}
}
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glClientActiveVertexStream (
JNIEnv *env, jobject obj,
@@ -48587,13 +48587,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveVertexStream ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexBlendEnvi (
JNIEnv *env, jobject obj,
@@ -48609,13 +48609,13 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvi ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
JNIEXPORT void JNICALL
Java_gl4java_GLFuncJauJNI_glVertexBlendEnvf (
JNIEnv *env, jobject obj,
@@ -48631,5 +48631,5 @@ Java_gl4java_GLFuncJauJNI_getNativeVersion ( JNIEnv *env, jobject obj )
);
}
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/CNativeCode/OpenGL_Win32_jawt.c b/CNativeCode/OpenGL_Win32_jawt.c
index 5c5359f..c3daae7 100755
--- a/CNativeCode/OpenGL_Win32_jawt.c
+++ b/CNativeCode/OpenGL_Win32_jawt.c
@@ -273,7 +273,6 @@ Java_gl4java_GLContext_openOpenGLNative( JNIEnv *env, jobject obj,
if(JNI_TRUE==verbose)
{
fprintf(stderr, "GL4Java: openOpen FindClass gl4java/GLCapabilities failed, cannot check glCaps object\n");
- (*env)->ExceptionDescribe(env);
fflush(stderr);
}
(*env)->ExceptionClear(env);
@@ -323,7 +322,7 @@ Java_gl4java_GLContext_openOpenGLNative( JNIEnv *env, jobject obj,
if(joffScreenRenderer==JNI_TRUE)
{
- glCaps.buffer=BUFFER_SINGLE;
+ glCaps.buffer=BUFFER_SINGLE;
}
if(JNI_TRUE==verbose && joffScreenRenderer==JNI_TRUE)
@@ -338,7 +337,6 @@ Java_gl4java_GLContext_openOpenGLNative( JNIEnv *env, jobject obj,
if(JNI_TRUE==verbose)
{
fprintf(stderr, "GL4Java: openOpen FindClass java/awt/Component failed, cannot check canvas object\n");
- (*env)->ExceptionDescribe(env);
fflush(stderr);
}
(*env)->ExceptionClear(env);
@@ -347,7 +345,7 @@ Java_gl4java_GLContext_openOpenGLNative( JNIEnv *env, jobject obj,
exc=0;
if(ret==JNI_TRUE) {
- if (canvas == 0)
+ if (canvas == 0 && joffScreenRenderer!=JNI_TRUE)
{
ret= JNI_FALSE;
fprintf(stderr,"\nGL4Java ERROR: canvas == NULL !\n");
diff --git a/CNativeCode/OpenGL_X11_jawt.c b/CNativeCode/OpenGL_X11_jawt.c
index 21231ef..946e6d6 100644
--- a/CNativeCode/OpenGL_X11_jawt.c
+++ b/CNativeCode/OpenGL_X11_jawt.c
@@ -226,7 +226,6 @@ Java_gl4java_GLContext_openOpenGLNative( JNIEnv *env, jobject obj,
if(JNI_TRUE==verbose)
{
fprintf(stderr, "GL4Java: openOpen FindClass gl4java/GLCapabilities failed, cannot check glCaps object\n");
- (*env)->ExceptionDescribe(env);
fflush(stderr);
}
(*env)->ExceptionClear(env);
@@ -315,7 +314,6 @@ Java_gl4java_GLContext_openOpenGLNative( JNIEnv *env, jobject obj,
if(JNI_TRUE==verbose)
{
fprintf(stderr, "GL4Java: openOpen FindClass java/awt/Component failed, cannot check canvas object\n");
- (*env)->ExceptionDescribe(env);
fflush(stderr);
}
(*env)->ExceptionClear(env);
@@ -324,7 +322,7 @@ Java_gl4java_GLContext_openOpenGLNative( JNIEnv *env, jobject obj,
exc=0;
if(ret==JNI_TRUE) {
- if (canvas == 0)
+ if (canvas == 0 && joffScreenRenderer!=JNI_TRUE)
{
ret= JNI_FALSE;
fprintf(stderr,"\nGL4Java ERROR: canvas == NULL !\n");
@@ -395,13 +393,14 @@ Java_gl4java_GLContext_openOpenGLNative( JNIEnv *env, jobject obj,
}
}
- /*
+ /**
+ *
if(ret==JNI_TRUE)
XSetErrorHandler(x11gl_myErrorHandler);
if(ret==JNI_TRUE)
XSetIOErrorHandler(x11gl_myIOErrorHandler);
- */
+ */
if(JNI_TRUE==ret && JNI_TRUE==verbose)
{
diff --git a/CNativeCode/OpenGL_misc.c b/CNativeCode/OpenGL_misc.c
index babb470..1ed0ef2 100644
--- a/CNativeCode/OpenGL_misc.c
+++ b/CNativeCode/OpenGL_misc.c
@@ -508,7 +508,6 @@ Java_gl4java_GLContext_gljGetNativeLibVendorNative(JNIEnv *env, jobject obj )
}
/**
- * Experimental Code, not done yet !
* This one is to upspeed the Offscreen rendering engine for e.g. Swing !
*/
JNIEXPORT void JNICALL
@@ -603,7 +602,6 @@ Java_gl4java_GLContext_gljReadPixelGL2AWT__IIIIIIIIII_3B (
}
/**
- * Experimental Code, not done yet !
* This one is to upspeed the Offscreen rendering engine for e.g. Swing !
*/
JNIEXPORT void JNICALL
@@ -788,43 +786,11 @@ Java_gl4java_GLContext_gljReadPixelGL2AWT__IIIIIIIIII_3I (
}
-JNIEXPORT jboolean JNICALL
-Java_gl4java_GLContext_gljFetchOSGLFunctions (
- JNIEnv *env, jclass jclass,
- jstring gllibname, jstring glulibname, jboolean force )
-{
- // FIXME: this routine is currently unused by the GL4Java
- // implementation and should be removed in a subsequent
- // release
- const char * gllib;
- const char * glulib;
-
- gllib = (*env)->GetStringUTFChars(env, gllibname, 0);
- glulib = (*env)->GetStringUTFChars(env, glulibname, 0);
-
- strncpy (libGLName, gllib, 798);
- strncpy (libGLUName, glulib, 798);
- libGLName[799] = 0;
- libGLUName[799] = 0;
-
- (*env)->ReleaseStringUTFChars(env, gllibname, gllib);
- (*env)->ReleaseStringUTFChars(env, glulibname, glulib);
-
-#ifdef _X11_
- fetch_GLX_FUNCS (libGLName, libGLUName, (force==JNI_TRUE)?1:0, 0);
-#endif
-
-#ifdef _WIN32_
- fetch_WGL_FUNCS (libGLName, libGLUName, (force==JNI_TRUE)?1:0, 0);
-#endif
-
- return JNI_TRUE;
-}
-
JNIEXPORT jboolean JNICALL
Java_gl4java_GLContext_gljFetchGLFunctions0 (
JNIEnv *env, jclass jclass,
- jstring gllibname, jstring glulibname, jboolean force, jboolean reload )
+ jstring gllibname, jstring glulibname, jboolean force,
+ jboolean reload, jboolean verbose )
{
const char * gllib;
const char * glulib;
@@ -842,7 +808,9 @@ Java_gl4java_GLContext_gljFetchGLFunctions0 (
(*env)->ReleaseStringUTFChars(env, glulibname, glulib);
}
- fetch_GL_FUNCS (libGLName, libGLUName, (force==JNI_TRUE)?1:0, (reload==JNI_TRUE)?1:0);
+ fetch_GL_FUNCS (libGLName, libGLUName,
+ (force==JNI_TRUE)?1:0, (reload==JNI_TRUE)?1:0,
+ (verbose==JNI_TRUE)?1:0);
return JNI_TRUE;
}
@@ -861,7 +829,7 @@ Java_gl4java_GLContext_gljTestGLProc0 (
#endif
res = ( getGLProcAddressHelper(libGLName, libGLUName,
- str, &method, 0, verbose)!=NULL )?
+ str, &method, verbose)!=NULL )?
JNI_TRUE:JNI_FALSE;
(*env)->ReleaseStringUTFChars(env, name, str);
diff --git a/CNativeCode/gl-disp-fetch.hc b/CNativeCode/gl-disp-fetch.hc
index d5c437e..3edc306 100755
--- a/CNativeCode/gl-disp-fetch.hc
+++ b/CNativeCode/gl-disp-fetch.hc
@@ -13,2948 +13,2948 @@
* Reading from file: gl-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFuncJauJNI !
*/
-
+
disp__glClearIndex = (void (CALLBACK *)(GLfloat))
GET_GL_PROCADDRESS ("glClearIndex");
-
+
disp__glClearColor = (void (CALLBACK *)(GLclampf, GLclampf, GLclampf, GLclampf))
GET_GL_PROCADDRESS ("glClearColor");
-
+
disp__glClear = (void (CALLBACK *)(GLbitfield))
GET_GL_PROCADDRESS ("glClear");
-
+
disp__glIndexMask = (void (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glIndexMask");
-
+
disp__glColorMask = (void (CALLBACK *)(GLboolean, GLboolean, GLboolean, GLboolean))
GET_GL_PROCADDRESS ("glColorMask");
-
+
disp__glAlphaFunc = (void (CALLBACK *)(GLenum, GLclampf))
GET_GL_PROCADDRESS ("glAlphaFunc");
-
+
disp__glBlendFunc = (void (CALLBACK *)(GLenum, GLenum))
GET_GL_PROCADDRESS ("glBlendFunc");
-
+
disp__glLogicOp = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glLogicOp");
-
+
disp__glCullFace = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glCullFace");
-
+
disp__glFrontFace = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glFrontFace");
-
+
disp__glPointSize = (void (CALLBACK *)(GLfloat))
GET_GL_PROCADDRESS ("glPointSize");
-
+
disp__glLineWidth = (void (CALLBACK *)(GLfloat))
GET_GL_PROCADDRESS ("glLineWidth");
-
+
disp__glLineStipple = (void (CALLBACK *)(GLint, GLushort))
GET_GL_PROCADDRESS ("glLineStipple");
-
+
disp__glPolygonMode = (void (CALLBACK *)(GLenum, GLenum))
GET_GL_PROCADDRESS ("glPolygonMode");
-
+
disp__glPolygonOffset = (void (CALLBACK *)(GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glPolygonOffset");
-
+
disp__glPolygonStipple = (void (CALLBACK *)(const GLubyte *))
GET_GL_PROCADDRESS ("glPolygonStipple");
-
+
disp__glGetPolygonStipple = (void (CALLBACK *)(GLubyte *))
GET_GL_PROCADDRESS ("glGetPolygonStipple");
-
+
disp__glEdgeFlag = (void (CALLBACK *)(GLboolean))
GET_GL_PROCADDRESS ("glEdgeFlag");
-
+
disp__glEdgeFlagv = (void (CALLBACK *)(const GLboolean *))
GET_GL_PROCADDRESS ("glEdgeFlagv");
-
+
disp__glScissor = (void (CALLBACK *)(GLint, GLint, GLsizei, GLsizei))
GET_GL_PROCADDRESS ("glScissor");
-
+
disp__glClipPlane = (void (CALLBACK *)(GLenum, const GLdouble *))
GET_GL_PROCADDRESS ("glClipPlane");
-
+
disp__glGetClipPlane = (void (CALLBACK *)(GLenum, GLdouble *))
GET_GL_PROCADDRESS ("glGetClipPlane");
-
+
disp__glDrawBuffer = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glDrawBuffer");
-
+
disp__glReadBuffer = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glReadBuffer");
-
+
disp__glEnable = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glEnable");
-
+
disp__glDisable = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glDisable");
-
+
disp__glIsEnabled = (GLboolean (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glIsEnabled");
-
+
disp__glEnableClientState = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glEnableClientState");
-
+
disp__glDisableClientState = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glDisableClientState");
-
+
disp__glGetBooleanv = (void (CALLBACK *)(GLenum, GLboolean *))
GET_GL_PROCADDRESS ("glGetBooleanv");
-
+
disp__glGetDoublev = (void (CALLBACK *)(GLenum, GLdouble *))
GET_GL_PROCADDRESS ("glGetDoublev");
-
+
disp__glGetFloatv = (void (CALLBACK *)(GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetFloatv");
-
+
disp__glGetIntegerv = (void (CALLBACK *)(GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetIntegerv");
-
+
disp__glPushAttrib = (void (CALLBACK *)(GLbitfield))
GET_GL_PROCADDRESS ("glPushAttrib");
-
+
disp__glPopAttrib = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glPopAttrib");
-
+
disp__glPushClientAttrib = (void (CALLBACK *)(GLbitfield))
GET_GL_PROCADDRESS ("glPushClientAttrib");
-
+
disp__glPopClientAttrib = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glPopClientAttrib");
-
+
disp__glRenderMode = (GLint (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glRenderMode");
-
+
disp__glGetError = (GLenum (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glGetError");
-
+
disp__glFinish = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glFinish");
-
+
disp__glFlush = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glFlush");
-
+
disp__glHint = (void (CALLBACK *)(GLenum, GLenum))
GET_GL_PROCADDRESS ("glHint");
-
+
disp__glClearDepth = (void (CALLBACK *)(GLclampd))
GET_GL_PROCADDRESS ("glClearDepth");
-
+
disp__glDepthFunc = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glDepthFunc");
-
+
disp__glDepthMask = (void (CALLBACK *)(GLboolean))
GET_GL_PROCADDRESS ("glDepthMask");
-
+
disp__glDepthRange = (void (CALLBACK *)(GLclampd, GLclampd))
GET_GL_PROCADDRESS ("glDepthRange");
-
+
disp__glClearAccum = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glClearAccum");
-
+
disp__glAccum = (void (CALLBACK *)(GLenum, GLfloat))
GET_GL_PROCADDRESS ("glAccum");
-
+
disp__glMatrixMode = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glMatrixMode");
-
+
disp__glOrtho = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glOrtho");
-
+
disp__glFrustum = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glFrustum");
-
+
disp__glViewport = (void (CALLBACK *)(GLint, GLint, GLsizei, GLsizei))
GET_GL_PROCADDRESS ("glViewport");
-
+
disp__glPushMatrix = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glPushMatrix");
-
+
disp__glPopMatrix = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glPopMatrix");
-
+
disp__glLoadIdentity = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glLoadIdentity");
-
+
disp__glLoadMatrixd = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glLoadMatrixd");
-
+
disp__glLoadMatrixf = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glLoadMatrixf");
-
+
disp__glMultMatrixd = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glMultMatrixd");
-
+
disp__glMultMatrixf = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glMultMatrixf");
-
+
disp__glRotated = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glRotated");
-
+
disp__glRotatef = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glRotatef");
-
+
disp__glScaled = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glScaled");
-
+
disp__glScalef = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glScalef");
-
+
disp__glTranslated = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glTranslated");
-
+
disp__glTranslatef = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glTranslatef");
-
+
disp__glIsList = (GLboolean (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glIsList");
-
+
disp__glDeleteLists = (void (CALLBACK *)(GLuint, GLsizei))
GET_GL_PROCADDRESS ("glDeleteLists");
-
+
disp__glGenLists = (GLuint (CALLBACK *)(GLsizei))
GET_GL_PROCADDRESS ("glGenLists");
-
+
disp__glNewList = (void (CALLBACK *)(GLuint, GLenum))
GET_GL_PROCADDRESS ("glNewList");
-
+
disp__glEndList = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glEndList");
-
+
disp__glCallList = (void (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glCallList");
-
+
disp__glCallLists = (void (CALLBACK *)(GLsizei, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glCallLists");
-
+
disp__glListBase = (void (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glListBase");
-
+
disp__glBegin = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glBegin");
-
+
disp__glEnd = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glEnd");
-
+
disp__glVertex2d = (void (CALLBACK *)(GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glVertex2d");
-
+
disp__glVertex2f = (void (CALLBACK *)(GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glVertex2f");
-
+
disp__glVertex2i = (void (CALLBACK *)(GLint, GLint))
GET_GL_PROCADDRESS ("glVertex2i");
-
+
disp__glVertex2s = (void (CALLBACK *)(GLshort, GLshort))
GET_GL_PROCADDRESS ("glVertex2s");
-
+
disp__glVertex3d = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glVertex3d");
-
+
disp__glVertex3f = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glVertex3f");
-
+
disp__glVertex3i = (void (CALLBACK *)(GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glVertex3i");
-
+
disp__glVertex3s = (void (CALLBACK *)(GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glVertex3s");
-
+
disp__glVertex4d = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glVertex4d");
-
+
disp__glVertex4f = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glVertex4f");
-
+
disp__glVertex4i = (void (CALLBACK *)(GLint, GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glVertex4i");
-
+
disp__glVertex4s = (void (CALLBACK *)(GLshort, GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glVertex4s");
-
+
disp__glVertex2dv = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glVertex2dv");
-
+
disp__glVertex2fv = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glVertex2fv");
-
+
disp__glVertex2iv = (void (CALLBACK *)(const GLint *))
GET_GL_PROCADDRESS ("glVertex2iv");
-
+
disp__glVertex2sv = (void (CALLBACK *)(const GLshort *))
GET_GL_PROCADDRESS ("glVertex2sv");
-
+
disp__glVertex3dv = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glVertex3dv");
-
+
disp__glVertex3fv = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glVertex3fv");
-
+
disp__glVertex3iv = (void (CALLBACK *)(const GLint *))
GET_GL_PROCADDRESS ("glVertex3iv");
-
+
disp__glVertex3sv = (void (CALLBACK *)(const GLshort *))
GET_GL_PROCADDRESS ("glVertex3sv");
-
+
disp__glVertex4dv = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glVertex4dv");
-
+
disp__glVertex4fv = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glVertex4fv");
-
+
disp__glVertex4iv = (void (CALLBACK *)(const GLint *))
GET_GL_PROCADDRESS ("glVertex4iv");
-
+
disp__glVertex4sv = (void (CALLBACK *)(const GLshort *))
GET_GL_PROCADDRESS ("glVertex4sv");
-
+
disp__glNormal3b = (void (CALLBACK *)(GLbyte, GLbyte, GLbyte))
GET_GL_PROCADDRESS ("glNormal3b");
-
+
disp__glNormal3d = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glNormal3d");
-
+
disp__glNormal3f = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glNormal3f");
-
+
disp__glNormal3i = (void (CALLBACK *)(GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glNormal3i");
-
+
disp__glNormal3s = (void (CALLBACK *)(GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glNormal3s");
-
+
disp__glNormal3bv = (void (CALLBACK *)(const GLbyte *))
GET_GL_PROCADDRESS ("glNormal3bv");
-
+
disp__glNormal3dv = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glNormal3dv");
-
+
disp__glNormal3fv = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glNormal3fv");
-
+
disp__glNormal3iv = (void (CALLBACK *)(const GLint *))
GET_GL_PROCADDRESS ("glNormal3iv");
-
+
disp__glNormal3sv = (void (CALLBACK *)(const GLshort *))
GET_GL_PROCADDRESS ("glNormal3sv");
-
+
disp__glIndexd = (void (CALLBACK *)(GLdouble))
GET_GL_PROCADDRESS ("glIndexd");
-
+
disp__glIndexf = (void (CALLBACK *)(GLfloat))
GET_GL_PROCADDRESS ("glIndexf");
-
+
disp__glIndexi = (void (CALLBACK *)(GLint))
GET_GL_PROCADDRESS ("glIndexi");
-
+
disp__glIndexs = (void (CALLBACK *)(GLshort))
GET_GL_PROCADDRESS ("glIndexs");
-
+
disp__glIndexub = (void (CALLBACK *)(GLubyte))
GET_GL_PROCADDRESS ("glIndexub");
-
+
disp__glIndexdv = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glIndexdv");
-
+
disp__glIndexfv = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glIndexfv");
-
+
disp__glIndexiv = (void (CALLBACK *)(const GLint *))
GET_GL_PROCADDRESS ("glIndexiv");
-
+
disp__glIndexsv = (void (CALLBACK *)(const GLshort *))
GET_GL_PROCADDRESS ("glIndexsv");
-
+
disp__glIndexubv = (void (CALLBACK *)(const GLubyte *))
GET_GL_PROCADDRESS ("glIndexubv");
-
+
disp__glColor3b = (void (CALLBACK *)(GLbyte, GLbyte, GLbyte))
GET_GL_PROCADDRESS ("glColor3b");
-
+
disp__glColor3d = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glColor3d");
-
+
disp__glColor3f = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glColor3f");
-
+
disp__glColor3i = (void (CALLBACK *)(GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glColor3i");
-
+
disp__glColor3s = (void (CALLBACK *)(GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glColor3s");
-
+
disp__glColor3ub = (void (CALLBACK *)(GLubyte, GLubyte, GLubyte))
GET_GL_PROCADDRESS ("glColor3ub");
-
+
disp__glColor3ui = (void (CALLBACK *)(GLuint, GLuint, GLuint))
GET_GL_PROCADDRESS ("glColor3ui");
-
+
disp__glColor3us = (void (CALLBACK *)(GLushort, GLushort, GLushort))
GET_GL_PROCADDRESS ("glColor3us");
-
+
disp__glColor4b = (void (CALLBACK *)(GLbyte, GLbyte, GLbyte, GLbyte))
GET_GL_PROCADDRESS ("glColor4b");
-
+
disp__glColor4d = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glColor4d");
-
+
disp__glColor4f = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glColor4f");
-
+
disp__glColor4i = (void (CALLBACK *)(GLint, GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glColor4i");
-
+
disp__glColor4s = (void (CALLBACK *)(GLshort, GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glColor4s");
-
+
disp__glColor4ub = (void (CALLBACK *)(GLubyte, GLubyte, GLubyte, GLubyte))
GET_GL_PROCADDRESS ("glColor4ub");
-
+
disp__glColor4ui = (void (CALLBACK *)(GLuint, GLuint, GLuint, GLuint))
GET_GL_PROCADDRESS ("glColor4ui");
-
+
disp__glColor4us = (void (CALLBACK *)(GLushort, GLushort, GLushort, GLushort))
GET_GL_PROCADDRESS ("glColor4us");
-
+
disp__glColor3bv = (void (CALLBACK *)(const GLbyte *))
GET_GL_PROCADDRESS ("glColor3bv");
-
+
disp__glColor3dv = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glColor3dv");
-
+
disp__glColor3fv = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glColor3fv");
-
+
disp__glColor3iv = (void (CALLBACK *)(const GLint *))
GET_GL_PROCADDRESS ("glColor3iv");
-
+
disp__glColor3sv = (void (CALLBACK *)(const GLshort *))
GET_GL_PROCADDRESS ("glColor3sv");
-
+
disp__glColor3ubv = (void (CALLBACK *)(const GLubyte *))
GET_GL_PROCADDRESS ("glColor3ubv");
-
+
disp__glColor3uiv = (void (CALLBACK *)(const GLuint *))
GET_GL_PROCADDRESS ("glColor3uiv");
-
+
disp__glColor3usv = (void (CALLBACK *)(const GLushort *))
GET_GL_PROCADDRESS ("glColor3usv");
-
+
disp__glColor4bv = (void (CALLBACK *)(const GLbyte *))
GET_GL_PROCADDRESS ("glColor4bv");
-
+
disp__glColor4dv = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glColor4dv");
-
+
disp__glColor4fv = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glColor4fv");
-
+
disp__glColor4iv = (void (CALLBACK *)(const GLint *))
GET_GL_PROCADDRESS ("glColor4iv");
-
+
disp__glColor4sv = (void (CALLBACK *)(const GLshort *))
GET_GL_PROCADDRESS ("glColor4sv");
-
+
disp__glColor4ubv = (void (CALLBACK *)(const GLubyte *))
GET_GL_PROCADDRESS ("glColor4ubv");
-
+
disp__glColor4uiv = (void (CALLBACK *)(const GLuint *))
GET_GL_PROCADDRESS ("glColor4uiv");
-
+
disp__glColor4usv = (void (CALLBACK *)(const GLushort *))
GET_GL_PROCADDRESS ("glColor4usv");
-
+
disp__glTexCoord1d = (void (CALLBACK *)(GLdouble))
GET_GL_PROCADDRESS ("glTexCoord1d");
-
+
disp__glTexCoord1f = (void (CALLBACK *)(GLfloat))
GET_GL_PROCADDRESS ("glTexCoord1f");
-
+
disp__glTexCoord1i = (void (CALLBACK *)(GLint))
GET_GL_PROCADDRESS ("glTexCoord1i");
-
+
disp__glTexCoord1s = (void (CALLBACK *)(GLshort))
GET_GL_PROCADDRESS ("glTexCoord1s");
-
+
disp__glTexCoord2d = (void (CALLBACK *)(GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glTexCoord2d");
-
+
disp__glTexCoord2f = (void (CALLBACK *)(GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glTexCoord2f");
-
+
disp__glTexCoord2i = (void (CALLBACK *)(GLint, GLint))
GET_GL_PROCADDRESS ("glTexCoord2i");
-
+
disp__glTexCoord2s = (void (CALLBACK *)(GLshort, GLshort))
GET_GL_PROCADDRESS ("glTexCoord2s");
-
+
disp__glTexCoord3d = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glTexCoord3d");
-
+
disp__glTexCoord3f = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glTexCoord3f");
-
+
disp__glTexCoord3i = (void (CALLBACK *)(GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glTexCoord3i");
-
+
disp__glTexCoord3s = (void (CALLBACK *)(GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glTexCoord3s");
-
+
disp__glTexCoord4d = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glTexCoord4d");
-
+
disp__glTexCoord4f = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glTexCoord4f");
-
+
disp__glTexCoord4i = (void (CALLBACK *)(GLint, GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glTexCoord4i");
-
+
disp__glTexCoord4s = (void (CALLBACK *)(GLshort, GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glTexCoord4s");
-
+
disp__glTexCoord1dv = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glTexCoord1dv");
-
+
disp__glTexCoord1fv = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glTexCoord1fv");
-
+
disp__glTexCoord1iv = (void (CALLBACK *)(const GLint *))
GET_GL_PROCADDRESS ("glTexCoord1iv");
-
+
disp__glTexCoord1sv = (void (CALLBACK *)(const GLshort *))
GET_GL_PROCADDRESS ("glTexCoord1sv");
-
+
disp__glTexCoord2dv = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glTexCoord2dv");
-
+
disp__glTexCoord2fv = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glTexCoord2fv");
-
+
disp__glTexCoord2iv = (void (CALLBACK *)(const GLint *))
GET_GL_PROCADDRESS ("glTexCoord2iv");
-
+
disp__glTexCoord2sv = (void (CALLBACK *)(const GLshort *))
GET_GL_PROCADDRESS ("glTexCoord2sv");
-
+
disp__glTexCoord3dv = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glTexCoord3dv");
-
+
disp__glTexCoord3fv = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glTexCoord3fv");
-
+
disp__glTexCoord3iv = (void (CALLBACK *)(const GLint *))
GET_GL_PROCADDRESS ("glTexCoord3iv");
-
+
disp__glTexCoord3sv = (void (CALLBACK *)(const GLshort *))
GET_GL_PROCADDRESS ("glTexCoord3sv");
-
+
disp__glTexCoord4dv = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glTexCoord4dv");
-
+
disp__glTexCoord4fv = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glTexCoord4fv");
-
+
disp__glTexCoord4iv = (void (CALLBACK *)(const GLint *))
GET_GL_PROCADDRESS ("glTexCoord4iv");
-
+
disp__glTexCoord4sv = (void (CALLBACK *)(const GLshort *))
GET_GL_PROCADDRESS ("glTexCoord4sv");
-
+
disp__glRasterPos2d = (void (CALLBACK *)(GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glRasterPos2d");
-
+
disp__glRasterPos2f = (void (CALLBACK *)(GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glRasterPos2f");
-
+
disp__glRasterPos2i = (void (CALLBACK *)(GLint, GLint))
GET_GL_PROCADDRESS ("glRasterPos2i");
-
+
disp__glRasterPos2s = (void (CALLBACK *)(GLshort, GLshort))
GET_GL_PROCADDRESS ("glRasterPos2s");
-
+
disp__glRasterPos3d = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glRasterPos3d");
-
+
disp__glRasterPos3f = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glRasterPos3f");
-
+
disp__glRasterPos3i = (void (CALLBACK *)(GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glRasterPos3i");
-
+
disp__glRasterPos3s = (void (CALLBACK *)(GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glRasterPos3s");
-
+
disp__glRasterPos4d = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glRasterPos4d");
-
+
disp__glRasterPos4f = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glRasterPos4f");
-
+
disp__glRasterPos4i = (void (CALLBACK *)(GLint, GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glRasterPos4i");
-
+
disp__glRasterPos4s = (void (CALLBACK *)(GLshort, GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glRasterPos4s");
-
+
disp__glRasterPos2dv = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glRasterPos2dv");
-
+
disp__glRasterPos2fv = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glRasterPos2fv");
-
+
disp__glRasterPos2iv = (void (CALLBACK *)(const GLint *))
GET_GL_PROCADDRESS ("glRasterPos2iv");
-
+
disp__glRasterPos2sv = (void (CALLBACK *)(const GLshort *))
GET_GL_PROCADDRESS ("glRasterPos2sv");
-
+
disp__glRasterPos3dv = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glRasterPos3dv");
-
+
disp__glRasterPos3fv = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glRasterPos3fv");
-
+
disp__glRasterPos3iv = (void (CALLBACK *)(const GLint *))
GET_GL_PROCADDRESS ("glRasterPos3iv");
-
+
disp__glRasterPos3sv = (void (CALLBACK *)(const GLshort *))
GET_GL_PROCADDRESS ("glRasterPos3sv");
-
+
disp__glRasterPos4dv = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glRasterPos4dv");
-
+
disp__glRasterPos4fv = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glRasterPos4fv");
-
+
disp__glRasterPos4iv = (void (CALLBACK *)(const GLint *))
GET_GL_PROCADDRESS ("glRasterPos4iv");
-
+
disp__glRasterPos4sv = (void (CALLBACK *)(const GLshort *))
GET_GL_PROCADDRESS ("glRasterPos4sv");
-
+
disp__glRectd = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glRectd");
-
+
disp__glRectf = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glRectf");
-
+
disp__glRecti = (void (CALLBACK *)(GLint, GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glRecti");
-
+
disp__glRects = (void (CALLBACK *)(GLshort, GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glRects");
-
+
disp__glRectdv = (void (CALLBACK *)(const GLdouble *, const GLdouble *))
GET_GL_PROCADDRESS ("glRectdv");
-
+
disp__glRectfv = (void (CALLBACK *)(const GLfloat *, const GLfloat *))
GET_GL_PROCADDRESS ("glRectfv");
-
+
disp__glRectiv = (void (CALLBACK *)(const GLint *, const GLint *))
GET_GL_PROCADDRESS ("glRectiv");
-
+
disp__glRectsv = (void (CALLBACK *)(const GLshort *, const GLshort *))
GET_GL_PROCADDRESS ("glRectsv");
-
+
disp__glVertexPointer = (void (CALLBACK *)(GLint, GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glVertexPointer");
-
+
disp__glNormalPointer = (void (CALLBACK *)(GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glNormalPointer");
-
+
disp__glColorPointer = (void (CALLBACK *)(GLint, GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glColorPointer");
-
+
disp__glIndexPointer = (void (CALLBACK *)(GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glIndexPointer");
-
+
disp__glTexCoordPointer = (void (CALLBACK *)(GLint, GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glTexCoordPointer");
-
+
disp__glEdgeFlagPointer = (void (CALLBACK *)(GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glEdgeFlagPointer");
-
+
disp__glGetPointerv = (void (CALLBACK *)(GLenum, GLvoid **))
GET_GL_PROCADDRESS ("glGetPointerv");
-
+
disp__glArrayElement = (void (CALLBACK *)(GLint))
GET_GL_PROCADDRESS ("glArrayElement");
-
+
disp__glDrawArrays = (void (CALLBACK *)(GLenum, GLint, GLsizei))
GET_GL_PROCADDRESS ("glDrawArrays");
-
+
disp__glDrawElements = (void (CALLBACK *)(GLenum, GLsizei, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glDrawElements");
-
+
disp__glInterleavedArrays = (void (CALLBACK *)(GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glInterleavedArrays");
-
+
disp__glShadeModel = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glShadeModel");
-
+
disp__glLightf = (void (CALLBACK *)(GLenum, GLenum, GLfloat))
GET_GL_PROCADDRESS ("glLightf");
-
+
disp__glLighti = (void (CALLBACK *)(GLenum, GLenum, GLint))
GET_GL_PROCADDRESS ("glLighti");
-
+
disp__glLightfv = (void (CALLBACK *)(GLenum, GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glLightfv");
-
+
disp__glLightiv = (void (CALLBACK *)(GLenum, GLenum, const GLint *))
GET_GL_PROCADDRESS ("glLightiv");
-
+
disp__glGetLightfv = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetLightfv");
-
+
disp__glGetLightiv = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetLightiv");
-
+
disp__glLightModelf = (void (CALLBACK *)(GLenum, GLfloat))
GET_GL_PROCADDRESS ("glLightModelf");
-
+
disp__glLightModeli = (void (CALLBACK *)(GLenum, GLint))
GET_GL_PROCADDRESS ("glLightModeli");
-
+
disp__glLightModelfv = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glLightModelfv");
-
+
disp__glLightModeliv = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glLightModeliv");
-
+
disp__glMaterialf = (void (CALLBACK *)(GLenum, GLenum, GLfloat))
GET_GL_PROCADDRESS ("glMaterialf");
-
+
disp__glMateriali = (void (CALLBACK *)(GLenum, GLenum, GLint))
GET_GL_PROCADDRESS ("glMateriali");
-
+
disp__glMaterialfv = (void (CALLBACK *)(GLenum, GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glMaterialfv");
-
+
disp__glMaterialiv = (void (CALLBACK *)(GLenum, GLenum, const GLint *))
GET_GL_PROCADDRESS ("glMaterialiv");
-
+
disp__glGetMaterialfv = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetMaterialfv");
-
+
disp__glGetMaterialiv = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetMaterialiv");
-
+
disp__glColorMaterial = (void (CALLBACK *)(GLenum, GLenum))
GET_GL_PROCADDRESS ("glColorMaterial");
-
+
disp__glPixelZoom = (void (CALLBACK *)(GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glPixelZoom");
-
+
disp__glPixelStoref = (void (CALLBACK *)(GLenum, GLfloat))
GET_GL_PROCADDRESS ("glPixelStoref");
-
+
disp__glPixelStorei = (void (CALLBACK *)(GLenum, GLint))
GET_GL_PROCADDRESS ("glPixelStorei");
-
+
disp__glPixelTransferf = (void (CALLBACK *)(GLenum, GLfloat))
GET_GL_PROCADDRESS ("glPixelTransferf");
-
+
disp__glPixelTransferi = (void (CALLBACK *)(GLenum, GLint))
GET_GL_PROCADDRESS ("glPixelTransferi");
-
+
disp__glPixelMapfv = (void (CALLBACK *)(GLenum, GLint, const GLfloat *))
GET_GL_PROCADDRESS ("glPixelMapfv");
-
+
disp__glPixelMapuiv = (void (CALLBACK *)(GLenum, GLint, const GLuint *))
GET_GL_PROCADDRESS ("glPixelMapuiv");
-
+
disp__glPixelMapusv = (void (CALLBACK *)(GLenum, GLint, const GLushort *))
GET_GL_PROCADDRESS ("glPixelMapusv");
-
+
disp__glGetPixelMapfv = (void (CALLBACK *)(GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetPixelMapfv");
-
+
disp__glGetPixelMapuiv = (void (CALLBACK *)(GLenum, GLuint *))
GET_GL_PROCADDRESS ("glGetPixelMapuiv");
-
+
disp__glGetPixelMapusv = (void (CALLBACK *)(GLenum, GLushort *))
GET_GL_PROCADDRESS ("glGetPixelMapusv");
-
+
disp__glBitmap = (void (CALLBACK *)(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *))
GET_GL_PROCADDRESS ("glBitmap");
-
+
disp__glReadPixels = (void (CALLBACK *)(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid *))
GET_GL_PROCADDRESS ("glReadPixels");
-
+
disp__glDrawPixels = (void (CALLBACK *)(GLsizei, GLsizei, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glDrawPixels");
-
+
disp__glCopyPixels = (void (CALLBACK *)(GLint, GLint, GLsizei, GLsizei, GLenum))
GET_GL_PROCADDRESS ("glCopyPixels");
-
+
disp__glStencilFunc = (void (CALLBACK *)(GLenum, GLint, GLuint))
GET_GL_PROCADDRESS ("glStencilFunc");
-
+
disp__glStencilMask = (void (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glStencilMask");
-
+
disp__glStencilOp = (void (CALLBACK *)(GLenum, GLenum, GLenum))
GET_GL_PROCADDRESS ("glStencilOp");
-
+
disp__glClearStencil = (void (CALLBACK *)(GLint))
GET_GL_PROCADDRESS ("glClearStencil");
-
+
disp__glTexGend = (void (CALLBACK *)(GLenum, GLenum, GLdouble))
GET_GL_PROCADDRESS ("glTexGend");
-
+
disp__glTexGenf = (void (CALLBACK *)(GLenum, GLenum, GLfloat))
GET_GL_PROCADDRESS ("glTexGenf");
-
+
disp__glTexGeni = (void (CALLBACK *)(GLenum, GLenum, GLint))
GET_GL_PROCADDRESS ("glTexGeni");
-
+
disp__glTexGendv = (void (CALLBACK *)(GLenum, GLenum, const GLdouble *))
GET_GL_PROCADDRESS ("glTexGendv");
-
+
disp__glTexGenfv = (void (CALLBACK *)(GLenum, GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glTexGenfv");
-
+
disp__glTexGeniv = (void (CALLBACK *)(GLenum, GLenum, const GLint *))
GET_GL_PROCADDRESS ("glTexGeniv");
-
+
disp__glGetTexGendv = (void (CALLBACK *)(GLenum, GLenum, GLdouble *))
GET_GL_PROCADDRESS ("glGetTexGendv");
-
+
disp__glGetTexGenfv = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetTexGenfv");
-
+
disp__glGetTexGeniv = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetTexGeniv");
-
+
disp__glTexEnvf = (void (CALLBACK *)(GLenum, GLenum, GLfloat))
GET_GL_PROCADDRESS ("glTexEnvf");
-
+
disp__glTexEnvi = (void (CALLBACK *)(GLenum, GLenum, GLint))
GET_GL_PROCADDRESS ("glTexEnvi");
-
+
disp__glTexEnvfv = (void (CALLBACK *)(GLenum, GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glTexEnvfv");
-
+
disp__glTexEnviv = (void (CALLBACK *)(GLenum, GLenum, const GLint *))
GET_GL_PROCADDRESS ("glTexEnviv");
-
+
disp__glGetTexEnvfv = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetTexEnvfv");
-
+
disp__glGetTexEnviv = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetTexEnviv");
-
+
disp__glTexParameterf = (void (CALLBACK *)(GLenum, GLenum, GLfloat))
GET_GL_PROCADDRESS ("glTexParameterf");
-
+
disp__glTexParameteri = (void (CALLBACK *)(GLenum, GLenum, GLint))
GET_GL_PROCADDRESS ("glTexParameteri");
-
+
disp__glTexParameterfv = (void (CALLBACK *)(GLenum, GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glTexParameterfv");
-
+
disp__glTexParameteriv = (void (CALLBACK *)(GLenum, GLenum, const GLint *))
GET_GL_PROCADDRESS ("glTexParameteriv");
-
+
disp__glGetTexParameterfv = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetTexParameterfv");
-
+
disp__glGetTexParameteriv = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetTexParameteriv");
-
+
disp__glGetTexLevelParameterfv = (void (CALLBACK *)(GLenum, GLint, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetTexLevelParameterfv");
-
+
disp__glGetTexLevelParameteriv = (void (CALLBACK *)(GLenum, GLint, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetTexLevelParameteriv");
-
+
disp__glTexImage1D = (void (CALLBACK *)(GLenum, GLint, GLint, GLsizei, GLint, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glTexImage1D");
-
+
disp__glTexImage2D = (void (CALLBACK *)(GLenum, GLint, GLint, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glTexImage2D");
-
+
disp__glGetTexImage = (void (CALLBACK *)(GLenum, GLint, GLenum, GLenum, GLvoid *))
GET_GL_PROCADDRESS ("glGetTexImage");
-
+
disp__glGenTextures = (void (CALLBACK *)(GLsizei, GLuint *))
GET_GL_PROCADDRESS ("glGenTextures");
-
+
disp__glDeleteTextures = (void (CALLBACK *)(GLsizei, const GLuint *))
GET_GL_PROCADDRESS ("glDeleteTextures");
-
+
disp__glBindTexture = (void (CALLBACK *)(GLenum, GLuint))
GET_GL_PROCADDRESS ("glBindTexture");
-
+
disp__glPrioritizeTextures = (void (CALLBACK *)(GLsizei, const GLuint *, const GLclampf *))
GET_GL_PROCADDRESS ("glPrioritizeTextures");
-
+
disp__glAreTexturesResident = (GLboolean (CALLBACK *)(GLsizei, const GLuint *, GLboolean *))
GET_GL_PROCADDRESS ("glAreTexturesResident");
-
+
disp__glIsTexture = (GLboolean (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glIsTexture");
-
+
disp__glTexSubImage1D = (void (CALLBACK *)(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glTexSubImage1D");
-
+
disp__glTexSubImage2D = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glTexSubImage2D");
-
+
disp__glCopyTexImage1D = (void (CALLBACK *)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint))
GET_GL_PROCADDRESS ("glCopyTexImage1D");
-
+
disp__glCopyTexImage2D = (void (CALLBACK *)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint))
GET_GL_PROCADDRESS ("glCopyTexImage2D");
-
+
disp__glCopyTexSubImage1D = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLint, GLsizei))
GET_GL_PROCADDRESS ("glCopyTexSubImage1D");
-
+
disp__glCopyTexSubImage2D = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei))
GET_GL_PROCADDRESS ("glCopyTexSubImage2D");
-
+
disp__glMap1d = (void (CALLBACK *)(GLenum, GLdouble, GLdouble, GLint, GLint, const GLdouble *))
GET_GL_PROCADDRESS ("glMap1d");
-
+
disp__glMap1f = (void (CALLBACK *)(GLenum, GLfloat, GLfloat, GLint, GLint, const GLfloat *))
GET_GL_PROCADDRESS ("glMap1f");
-
+
disp__glMap2d = (void (CALLBACK *)(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *))
GET_GL_PROCADDRESS ("glMap2d");
-
+
disp__glMap2f = (void (CALLBACK *)(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *))
GET_GL_PROCADDRESS ("glMap2f");
-
+
disp__glGetMapdv = (void (CALLBACK *)(GLenum, GLenum, GLdouble *))
GET_GL_PROCADDRESS ("glGetMapdv");
-
+
disp__glGetMapfv = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetMapfv");
-
+
disp__glGetMapiv = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetMapiv");
-
+
disp__glEvalCoord1d = (void (CALLBACK *)(GLdouble))
GET_GL_PROCADDRESS ("glEvalCoord1d");
-
+
disp__glEvalCoord1f = (void (CALLBACK *)(GLfloat))
GET_GL_PROCADDRESS ("glEvalCoord1f");
-
+
disp__glEvalCoord1dv = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glEvalCoord1dv");
-
+
disp__glEvalCoord1fv = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glEvalCoord1fv");
-
+
disp__glEvalCoord2d = (void (CALLBACK *)(GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glEvalCoord2d");
-
+
disp__glEvalCoord2f = (void (CALLBACK *)(GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glEvalCoord2f");
-
+
disp__glEvalCoord2dv = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glEvalCoord2dv");
-
+
disp__glEvalCoord2fv = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glEvalCoord2fv");
-
+
disp__glMapGrid1d = (void (CALLBACK *)(GLint, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glMapGrid1d");
-
+
disp__glMapGrid1f = (void (CALLBACK *)(GLint, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glMapGrid1f");
-
+
disp__glMapGrid2d = (void (CALLBACK *)(GLint, GLdouble, GLdouble, GLint, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glMapGrid2d");
-
+
disp__glMapGrid2f = (void (CALLBACK *)(GLint, GLfloat, GLfloat, GLint, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glMapGrid2f");
-
+
disp__glEvalPoint1 = (void (CALLBACK *)(GLint))
GET_GL_PROCADDRESS ("glEvalPoint1");
-
+
disp__glEvalPoint2 = (void (CALLBACK *)(GLint, GLint))
GET_GL_PROCADDRESS ("glEvalPoint2");
-
+
disp__glEvalMesh1 = (void (CALLBACK *)(GLenum, GLint, GLint))
GET_GL_PROCADDRESS ("glEvalMesh1");
-
+
disp__glEvalMesh2 = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glEvalMesh2");
-
+
disp__glFogf = (void (CALLBACK *)(GLenum, GLfloat))
GET_GL_PROCADDRESS ("glFogf");
-
+
disp__glFogi = (void (CALLBACK *)(GLenum, GLint))
GET_GL_PROCADDRESS ("glFogi");
-
+
disp__glFogfv = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glFogfv");
-
+
disp__glFogiv = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glFogiv");
-
+
disp__glFeedbackBuffer = (void (CALLBACK *)(GLsizei, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glFeedbackBuffer");
-
+
disp__glPassThrough = (void (CALLBACK *)(GLfloat))
GET_GL_PROCADDRESS ("glPassThrough");
-
+
disp__glSelectBuffer = (void (CALLBACK *)(GLsizei, GLuint *))
GET_GL_PROCADDRESS ("glSelectBuffer");
-
+
disp__glInitNames = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glInitNames");
-
+
disp__glLoadName = (void (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glLoadName");
-
+
disp__glPushName = (void (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glPushName");
-
+
disp__glPopName = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glPopName");
-
+
disp__glDrawRangeElements = (void (CALLBACK *)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glDrawRangeElements");
-
+
disp__glTexImage3D = (void (CALLBACK *)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glTexImage3D");
-
+
disp__glTexSubImage3D = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glTexSubImage3D");
-
+
disp__glCopyTexSubImage3D = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei))
GET_GL_PROCADDRESS ("glCopyTexSubImage3D");
-
+
disp__glColorTable = (void (CALLBACK *)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glColorTable");
-
+
disp__glColorSubTable = (void (CALLBACK *)(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glColorSubTable");
-
+
disp__glColorTableParameteriv = (void (CALLBACK *)(GLenum, GLenum, const GLint *))
GET_GL_PROCADDRESS ("glColorTableParameteriv");
-
+
disp__glColorTableParameterfv = (void (CALLBACK *)(GLenum, GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glColorTableParameterfv");
-
+
disp__glCopyColorSubTable = (void (CALLBACK *)(GLenum, GLsizei, GLint, GLint, GLsizei))
GET_GL_PROCADDRESS ("glCopyColorSubTable");
-
+
disp__glCopyColorTable = (void (CALLBACK *)(GLenum, GLenum, GLint, GLint, GLsizei))
GET_GL_PROCADDRESS ("glCopyColorTable");
-
+
disp__glGetColorTable = (void (CALLBACK *)(GLenum, GLenum, GLenum, GLvoid *))
GET_GL_PROCADDRESS ("glGetColorTable");
-
+
disp__glGetColorTableParameterfv = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetColorTableParameterfv");
-
+
disp__glGetColorTableParameteriv = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetColorTableParameteriv");
-
+
disp__glBlendEquation = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glBlendEquation");
-
+
disp__glBlendColor = (void (CALLBACK *)(GLclampf, GLclampf, GLclampf, GLclampf))
GET_GL_PROCADDRESS ("glBlendColor");
-
+
disp__glHistogram = (void (CALLBACK *)(GLenum, GLsizei, GLenum, GLboolean))
GET_GL_PROCADDRESS ("glHistogram");
-
+
disp__glResetHistogram = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glResetHistogram");
-
+
disp__glGetHistogram = (void (CALLBACK *)(GLenum, GLboolean, GLenum, GLenum, GLvoid *))
GET_GL_PROCADDRESS ("glGetHistogram");
-
+
disp__glGetHistogramParameterfv = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetHistogramParameterfv");
-
+
disp__glGetHistogramParameteriv = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetHistogramParameteriv");
-
+
disp__glMinmax = (void (CALLBACK *)(GLenum, GLenum, GLboolean))
GET_GL_PROCADDRESS ("glMinmax");
-
+
disp__glResetMinmax = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glResetMinmax");
-
+
disp__glGetMinmax = (void (CALLBACK *)(GLenum, GLboolean, GLenum, GLenum, GLvoid *))
GET_GL_PROCADDRESS ("glGetMinmax");
-
+
disp__glGetMinmaxParameterfv = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetMinmaxParameterfv");
-
+
disp__glGetMinmaxParameteriv = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetMinmaxParameteriv");
-
+
disp__glConvolutionFilter1D = (void (CALLBACK *)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glConvolutionFilter1D");
-
+
disp__glConvolutionFilter2D = (void (CALLBACK *)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glConvolutionFilter2D");
-
+
disp__glConvolutionParameterf = (void (CALLBACK *)(GLenum, GLenum, GLfloat))
GET_GL_PROCADDRESS ("glConvolutionParameterf");
-
+
disp__glConvolutionParameterfv = (void (CALLBACK *)(GLenum, GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glConvolutionParameterfv");
-
+
disp__glConvolutionParameteri = (void (CALLBACK *)(GLenum, GLenum, GLint))
GET_GL_PROCADDRESS ("glConvolutionParameteri");
-
+
disp__glConvolutionParameteriv = (void (CALLBACK *)(GLenum, GLenum, const GLint *))
GET_GL_PROCADDRESS ("glConvolutionParameteriv");
-
+
disp__glCopyConvolutionFilter1D = (void (CALLBACK *)(GLenum, GLenum, GLint, GLint, GLsizei))
GET_GL_PROCADDRESS ("glCopyConvolutionFilter1D");
-
+
disp__glCopyConvolutionFilter2D = (void (CALLBACK *)(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei))
GET_GL_PROCADDRESS ("glCopyConvolutionFilter2D");
-
+
disp__glGetConvolutionFilter = (void (CALLBACK *)(GLenum, GLenum, GLenum, GLvoid *))
GET_GL_PROCADDRESS ("glGetConvolutionFilter");
-
+
disp__glGetConvolutionParameterfv = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetConvolutionParameterfv");
-
+
disp__glGetConvolutionParameteriv = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetConvolutionParameteriv");
-
+
disp__glSeparableFilter2D = (void (CALLBACK *)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *))
GET_GL_PROCADDRESS ("glSeparableFilter2D");
-
+
disp__glGetSeparableFilter = (void (CALLBACK *)(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *))
GET_GL_PROCADDRESS ("glGetSeparableFilter");
-
+
disp__glActiveTexture = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glActiveTexture");
-
+
disp__glClientActiveTexture = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glClientActiveTexture");
-
+
disp__glCompressedTexImage1D = (void (CALLBACK *)(GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glCompressedTexImage1D");
-
+
disp__glCompressedTexImage2D = (void (CALLBACK *)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glCompressedTexImage2D");
-
+
disp__glCompressedTexImage3D = (void (CALLBACK *)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glCompressedTexImage3D");
-
+
disp__glCompressedTexSubImage1D = (void (CALLBACK *)(GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glCompressedTexSubImage1D");
-
+
disp__glCompressedTexSubImage2D = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glCompressedTexSubImage2D");
-
+
disp__glCompressedTexSubImage3D = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glCompressedTexSubImage3D");
-
+
disp__glGetCompressedTexImage = (void (CALLBACK *)(GLenum, GLint, GLvoid *))
GET_GL_PROCADDRESS ("glGetCompressedTexImage");
-
+
disp__glMultiTexCoord1d = (void (CALLBACK *)(GLenum, GLdouble))
GET_GL_PROCADDRESS ("glMultiTexCoord1d");
-
+
disp__glMultiTexCoord1dv = (void (CALLBACK *)(GLenum, const GLdouble *))
GET_GL_PROCADDRESS ("glMultiTexCoord1dv");
-
+
disp__glMultiTexCoord1f = (void (CALLBACK *)(GLenum, GLfloat))
GET_GL_PROCADDRESS ("glMultiTexCoord1f");
-
+
disp__glMultiTexCoord1fv = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glMultiTexCoord1fv");
-
+
disp__glMultiTexCoord1i = (void (CALLBACK *)(GLenum, GLint))
GET_GL_PROCADDRESS ("glMultiTexCoord1i");
-
+
disp__glMultiTexCoord1iv = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glMultiTexCoord1iv");
-
+
disp__glMultiTexCoord1s = (void (CALLBACK *)(GLenum, GLshort))
GET_GL_PROCADDRESS ("glMultiTexCoord1s");
-
+
disp__glMultiTexCoord1sv = (void (CALLBACK *)(GLenum, const GLshort *))
GET_GL_PROCADDRESS ("glMultiTexCoord1sv");
-
+
disp__glMultiTexCoord2d = (void (CALLBACK *)(GLenum, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glMultiTexCoord2d");
-
+
disp__glMultiTexCoord2dv = (void (CALLBACK *)(GLenum, const GLdouble *))
GET_GL_PROCADDRESS ("glMultiTexCoord2dv");
-
+
disp__glMultiTexCoord2f = (void (CALLBACK *)(GLenum, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glMultiTexCoord2f");
-
+
disp__glMultiTexCoord2fv = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glMultiTexCoord2fv");
-
+
disp__glMultiTexCoord2i = (void (CALLBACK *)(GLenum, GLint, GLint))
GET_GL_PROCADDRESS ("glMultiTexCoord2i");
-
+
disp__glMultiTexCoord2iv = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glMultiTexCoord2iv");
-
+
disp__glMultiTexCoord2s = (void (CALLBACK *)(GLenum, GLshort, GLshort))
GET_GL_PROCADDRESS ("glMultiTexCoord2s");
-
+
disp__glMultiTexCoord2sv = (void (CALLBACK *)(GLenum, const GLshort *))
GET_GL_PROCADDRESS ("glMultiTexCoord2sv");
-
+
disp__glMultiTexCoord3d = (void (CALLBACK *)(GLenum, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glMultiTexCoord3d");
-
+
disp__glMultiTexCoord3dv = (void (CALLBACK *)(GLenum, const GLdouble *))
GET_GL_PROCADDRESS ("glMultiTexCoord3dv");
-
+
disp__glMultiTexCoord3f = (void (CALLBACK *)(GLenum, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glMultiTexCoord3f");
-
+
disp__glMultiTexCoord3fv = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glMultiTexCoord3fv");
-
+
disp__glMultiTexCoord3i = (void (CALLBACK *)(GLenum, GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glMultiTexCoord3i");
-
+
disp__glMultiTexCoord3iv = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glMultiTexCoord3iv");
-
+
disp__glMultiTexCoord3s = (void (CALLBACK *)(GLenum, GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glMultiTexCoord3s");
-
+
disp__glMultiTexCoord3sv = (void (CALLBACK *)(GLenum, const GLshort *))
GET_GL_PROCADDRESS ("glMultiTexCoord3sv");
-
+
disp__glMultiTexCoord4d = (void (CALLBACK *)(GLenum, GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glMultiTexCoord4d");
-
+
disp__glMultiTexCoord4dv = (void (CALLBACK *)(GLenum, const GLdouble *))
GET_GL_PROCADDRESS ("glMultiTexCoord4dv");
-
+
disp__glMultiTexCoord4f = (void (CALLBACK *)(GLenum, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glMultiTexCoord4f");
-
+
disp__glMultiTexCoord4fv = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glMultiTexCoord4fv");
-
+
disp__glMultiTexCoord4i = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glMultiTexCoord4i");
-
+
disp__glMultiTexCoord4iv = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glMultiTexCoord4iv");
-
+
disp__glMultiTexCoord4s = (void (CALLBACK *)(GLenum, GLshort, GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glMultiTexCoord4s");
-
+
disp__glMultiTexCoord4sv = (void (CALLBACK *)(GLenum, const GLshort *))
GET_GL_PROCADDRESS ("glMultiTexCoord4sv");
-
+
disp__glLoadTransposeMatrixd = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glLoadTransposeMatrixd");
-
+
disp__glLoadTransposeMatrixf = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glLoadTransposeMatrixf");
-
+
disp__glMultTransposeMatrixd = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glMultTransposeMatrixd");
-
+
disp__glMultTransposeMatrixf = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glMultTransposeMatrixf");
-
+
disp__glSampleCoverage = (void (CALLBACK *)(GLclampf, GLboolean))
GET_GL_PROCADDRESS ("glSampleCoverage");
-
+
disp__glSamplePass = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glSamplePass");
-
+
disp__glActiveTextureARB = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glActiveTextureARB");
-
+
disp__glClientActiveTextureARB = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glClientActiveTextureARB");
-
+
disp__glMultiTexCoord1dARB = (void (CALLBACK *)(GLenum, GLdouble))
GET_GL_PROCADDRESS ("glMultiTexCoord1dARB");
-
+
disp__glMultiTexCoord1dvARB = (void (CALLBACK *)(GLenum, const GLdouble *))
GET_GL_PROCADDRESS ("glMultiTexCoord1dvARB");
-
+
disp__glMultiTexCoord1fARB = (void (CALLBACK *)(GLenum, GLfloat))
GET_GL_PROCADDRESS ("glMultiTexCoord1fARB");
-
+
disp__glMultiTexCoord1fvARB = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glMultiTexCoord1fvARB");
-
+
disp__glMultiTexCoord1iARB = (void (CALLBACK *)(GLenum, GLint))
GET_GL_PROCADDRESS ("glMultiTexCoord1iARB");
-
+
disp__glMultiTexCoord1ivARB = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glMultiTexCoord1ivARB");
-
+
disp__glMultiTexCoord1sARB = (void (CALLBACK *)(GLenum, GLshort))
GET_GL_PROCADDRESS ("glMultiTexCoord1sARB");
-
+
disp__glMultiTexCoord1svARB = (void (CALLBACK *)(GLenum, const GLshort *))
GET_GL_PROCADDRESS ("glMultiTexCoord1svARB");
-
+
disp__glMultiTexCoord2dARB = (void (CALLBACK *)(GLenum, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glMultiTexCoord2dARB");
-
+
disp__glMultiTexCoord2dvARB = (void (CALLBACK *)(GLenum, const GLdouble *))
GET_GL_PROCADDRESS ("glMultiTexCoord2dvARB");
-
+
disp__glMultiTexCoord2fARB = (void (CALLBACK *)(GLenum, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glMultiTexCoord2fARB");
-
+
disp__glMultiTexCoord2fvARB = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glMultiTexCoord2fvARB");
-
+
disp__glMultiTexCoord2iARB = (void (CALLBACK *)(GLenum, GLint, GLint))
GET_GL_PROCADDRESS ("glMultiTexCoord2iARB");
-
+
disp__glMultiTexCoord2ivARB = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glMultiTexCoord2ivARB");
-
+
disp__glMultiTexCoord2sARB = (void (CALLBACK *)(GLenum, GLshort, GLshort))
GET_GL_PROCADDRESS ("glMultiTexCoord2sARB");
-
+
disp__glMultiTexCoord2svARB = (void (CALLBACK *)(GLenum, const GLshort *))
GET_GL_PROCADDRESS ("glMultiTexCoord2svARB");
-
+
disp__glMultiTexCoord3dARB = (void (CALLBACK *)(GLenum, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glMultiTexCoord3dARB");
-
+
disp__glMultiTexCoord3dvARB = (void (CALLBACK *)(GLenum, const GLdouble *))
GET_GL_PROCADDRESS ("glMultiTexCoord3dvARB");
-
+
disp__glMultiTexCoord3fARB = (void (CALLBACK *)(GLenum, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glMultiTexCoord3fARB");
-
+
disp__glMultiTexCoord3fvARB = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glMultiTexCoord3fvARB");
-
+
disp__glMultiTexCoord3iARB = (void (CALLBACK *)(GLenum, GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glMultiTexCoord3iARB");
-
+
disp__glMultiTexCoord3ivARB = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glMultiTexCoord3ivARB");
-
+
disp__glMultiTexCoord3sARB = (void (CALLBACK *)(GLenum, GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glMultiTexCoord3sARB");
-
+
disp__glMultiTexCoord3svARB = (void (CALLBACK *)(GLenum, const GLshort *))
GET_GL_PROCADDRESS ("glMultiTexCoord3svARB");
-
+
disp__glMultiTexCoord4dARB = (void (CALLBACK *)(GLenum, GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glMultiTexCoord4dARB");
-
+
disp__glMultiTexCoord4dvARB = (void (CALLBACK *)(GLenum, const GLdouble *))
GET_GL_PROCADDRESS ("glMultiTexCoord4dvARB");
-
+
disp__glMultiTexCoord4fARB = (void (CALLBACK *)(GLenum, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glMultiTexCoord4fARB");
-
+
disp__glMultiTexCoord4fvARB = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glMultiTexCoord4fvARB");
-
+
disp__glMultiTexCoord4iARB = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glMultiTexCoord4iARB");
-
+
disp__glMultiTexCoord4ivARB = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glMultiTexCoord4ivARB");
-
+
disp__glMultiTexCoord4sARB = (void (CALLBACK *)(GLenum, GLshort, GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glMultiTexCoord4sARB");
-
+
disp__glMultiTexCoord4svARB = (void (CALLBACK *)(GLenum, const GLshort *))
GET_GL_PROCADDRESS ("glMultiTexCoord4svARB");
-
+
disp__glBlendColorEXT = (void (CALLBACK *)(GLclampf, GLclampf, GLclampf, GLclampf))
GET_GL_PROCADDRESS ("glBlendColorEXT");
-
+
disp__glPolygonOffsetEXT = (void (CALLBACK *)(GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glPolygonOffsetEXT");
-
+
disp__glTexImage3DEXT = (void (CALLBACK *)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glTexImage3DEXT");
-
+
disp__glTexSubImage3DEXT = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glTexSubImage3DEXT");
-
+
disp__glCopyTexSubImage3DEXT = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei))
GET_GL_PROCADDRESS ("glCopyTexSubImage3DEXT");
-
+
disp__glGenTexturesEXT = (void (CALLBACK *)(GLsizei, GLuint *))
GET_GL_PROCADDRESS ("glGenTexturesEXT");
-
+
disp__glDeleteTexturesEXT = (void (CALLBACK *)(GLsizei, const GLuint *))
GET_GL_PROCADDRESS ("glDeleteTexturesEXT");
-
+
disp__glBindTextureEXT = (void (CALLBACK *)(GLenum, GLuint))
GET_GL_PROCADDRESS ("glBindTextureEXT");
-
+
disp__glPrioritizeTexturesEXT = (void (CALLBACK *)(GLsizei, const GLuint *, const GLclampf *))
GET_GL_PROCADDRESS ("glPrioritizeTexturesEXT");
-
+
disp__glAreTexturesResidentEXT = (GLboolean (CALLBACK *)(GLsizei, const GLuint *, GLboolean *))
GET_GL_PROCADDRESS ("glAreTexturesResidentEXT");
-
+
disp__glIsTextureEXT = (GLboolean (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glIsTextureEXT");
-
+
disp__glVertexPointerEXT = (void (CALLBACK *)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glVertexPointerEXT");
-
+
disp__glNormalPointerEXT = (void (CALLBACK *)(GLenum, GLsizei, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glNormalPointerEXT");
-
+
disp__glColorPointerEXT = (void (CALLBACK *)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glColorPointerEXT");
-
+
disp__glIndexPointerEXT = (void (CALLBACK *)(GLenum, GLsizei, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glIndexPointerEXT");
-
+
disp__glTexCoordPointerEXT = (void (CALLBACK *)(GLint, GLenum, GLsizei, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glTexCoordPointerEXT");
-
+
disp__glEdgeFlagPointerEXT = (void (CALLBACK *)(GLsizei, GLsizei, const GLboolean *))
GET_GL_PROCADDRESS ("glEdgeFlagPointerEXT");
-
+
disp__glGetPointervEXT = (void (CALLBACK *)(GLenum, GLvoid **))
GET_GL_PROCADDRESS ("glGetPointervEXT");
-
+
disp__glArrayElementEXT = (void (CALLBACK *)(GLint))
GET_GL_PROCADDRESS ("glArrayElementEXT");
-
+
disp__glDrawArraysEXT = (void (CALLBACK *)(GLenum, GLint, GLsizei))
GET_GL_PROCADDRESS ("glDrawArraysEXT");
-
+
disp__glBlendEquationEXT = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glBlendEquationEXT");
-
+
disp__glPointParameterfEXT = (void (CALLBACK *)(GLenum, GLfloat))
GET_GL_PROCADDRESS ("glPointParameterfEXT");
-
+
disp__glPointParameterfvEXT = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glPointParameterfvEXT");
-
+
disp__glPointParameterfSGIS = (void (CALLBACK *)(GLenum, GLfloat))
GET_GL_PROCADDRESS ("glPointParameterfSGIS");
-
+
disp__glPointParameterfvSGIS = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glPointParameterfvSGIS");
-
+
disp__glColorTableEXT = (void (CALLBACK *)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glColorTableEXT");
-
+
disp__glColorSubTableEXT = (void (CALLBACK *)(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glColorSubTableEXT");
-
+
disp__glGetColorTableEXT = (void (CALLBACK *)(GLenum, GLenum, GLenum, GLvoid *))
GET_GL_PROCADDRESS ("glGetColorTableEXT");
-
+
disp__glGetColorTableParameterfvEXT = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetColorTableParameterfvEXT");
-
+
disp__glGetColorTableParameterivEXT = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetColorTableParameterivEXT");
-
+
disp__glLockArraysEXT = (void (CALLBACK *)(GLint, GLsizei))
GET_GL_PROCADDRESS ("glLockArraysEXT");
-
+
disp__glUnlockArraysEXT = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glUnlockArraysEXT");
-
+
disp__glLoadTransposeMatrixfARB = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glLoadTransposeMatrixfARB");
-
+
disp__glLoadTransposeMatrixdARB = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glLoadTransposeMatrixdARB");
-
+
disp__glMultTransposeMatrixfARB = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glMultTransposeMatrixfARB");
-
+
disp__glMultTransposeMatrixdARB = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glMultTransposeMatrixdARB");
-
+
disp__glSampleCoverageARB = (void (CALLBACK *)(GLclampf, GLboolean))
GET_GL_PROCADDRESS ("glSampleCoverageARB");
-
+
disp__glCompressedTexImage3DARB = (void (CALLBACK *)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glCompressedTexImage3DARB");
-
+
disp__glCompressedTexImage2DARB = (void (CALLBACK *)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glCompressedTexImage2DARB");
-
+
disp__glCompressedTexImage1DARB = (void (CALLBACK *)(GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glCompressedTexImage1DARB");
-
+
disp__glCompressedTexSubImage3DARB = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glCompressedTexSubImage3DARB");
-
+
disp__glCompressedTexSubImage2DARB = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glCompressedTexSubImage2DARB");
-
+
disp__glCompressedTexSubImage1DARB = (void (CALLBACK *)(GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glCompressedTexSubImage1DARB");
-
+
disp__glGetCompressedTexImageARB = (void (CALLBACK *)(GLenum, GLint, void *))
GET_GL_PROCADDRESS ("glGetCompressedTexImageARB");
-
+
disp__glWeightbvARB = (void (CALLBACK *)(GLint, const GLbyte *))
GET_GL_PROCADDRESS ("glWeightbvARB");
-
+
disp__glWeightsvARB = (void (CALLBACK *)(GLint, const GLshort *))
GET_GL_PROCADDRESS ("glWeightsvARB");
-
+
disp__glWeightivARB = (void (CALLBACK *)(GLint, const GLint *))
GET_GL_PROCADDRESS ("glWeightivARB");
-
+
disp__glWeightfvARB = (void (CALLBACK *)(GLint, const GLfloat *))
GET_GL_PROCADDRESS ("glWeightfvARB");
-
+
disp__glWeightdvARB = (void (CALLBACK *)(GLint, const GLdouble *))
GET_GL_PROCADDRESS ("glWeightdvARB");
-
+
disp__glWeightubvARB = (void (CALLBACK *)(GLint, const GLubyte *))
GET_GL_PROCADDRESS ("glWeightubvARB");
-
+
disp__glWeightusvARB = (void (CALLBACK *)(GLint, const GLushort *))
GET_GL_PROCADDRESS ("glWeightusvARB");
-
+
disp__glWeightuivARB = (void (CALLBACK *)(GLint, const GLuint *))
GET_GL_PROCADDRESS ("glWeightuivARB");
-
+
disp__glWeightPointerARB = (void (CALLBACK *)(GLint, GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glWeightPointerARB");
-
+
disp__glVertexBlendARB = (void (CALLBACK *)(GLint))
GET_GL_PROCADDRESS ("glVertexBlendARB");
-
+
disp__glCurrentPaletteMatrixARB = (void (CALLBACK *)(GLint))
GET_GL_PROCADDRESS ("glCurrentPaletteMatrixARB");
-
+
disp__glMatrixIndexubvARB = (void (CALLBACK *)(GLint, const GLubyte *))
GET_GL_PROCADDRESS ("glMatrixIndexubvARB");
-
+
disp__glMatrixIndexusvARB = (void (CALLBACK *)(GLint, const GLushort *))
GET_GL_PROCADDRESS ("glMatrixIndexusvARB");
-
+
disp__glMatrixIndexuivARB = (void (CALLBACK *)(GLint, const GLuint *))
GET_GL_PROCADDRESS ("glMatrixIndexuivARB");
-
+
disp__glMatrixIndexPointerARB = (void (CALLBACK *)(GLint, GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glMatrixIndexPointerARB");
-
+
disp__glGetTexFilterFuncSGIS = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetTexFilterFuncSGIS");
-
+
disp__glTexFilterFuncSGIS = (void (CALLBACK *)(GLenum, GLenum, GLsizei, const GLfloat *))
GET_GL_PROCADDRESS ("glTexFilterFuncSGIS");
-
+
disp__glTexSubImage1DEXT = (void (CALLBACK *)(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glTexSubImage1DEXT");
-
+
disp__glTexSubImage2DEXT = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glTexSubImage2DEXT");
-
+
disp__glCopyTexImage1DEXT = (void (CALLBACK *)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint))
GET_GL_PROCADDRESS ("glCopyTexImage1DEXT");
-
+
disp__glCopyTexImage2DEXT = (void (CALLBACK *)(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint))
GET_GL_PROCADDRESS ("glCopyTexImage2DEXT");
-
+
disp__glCopyTexSubImage1DEXT = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLint, GLsizei))
GET_GL_PROCADDRESS ("glCopyTexSubImage1DEXT");
-
+
disp__glCopyTexSubImage2DEXT = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei))
GET_GL_PROCADDRESS ("glCopyTexSubImage2DEXT");
-
+
disp__glGetHistogramEXT = (void (CALLBACK *)(GLenum, GLboolean, GLenum, GLenum, GLvoid *))
GET_GL_PROCADDRESS ("glGetHistogramEXT");
-
+
disp__glGetHistogramParameterfvEXT = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetHistogramParameterfvEXT");
-
+
disp__glGetHistogramParameterivEXT = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetHistogramParameterivEXT");
-
+
disp__glGetMinmaxEXT = (void (CALLBACK *)(GLenum, GLboolean, GLenum, GLenum, GLvoid *))
GET_GL_PROCADDRESS ("glGetMinmaxEXT");
-
+
disp__glGetMinmaxParameterfvEXT = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetMinmaxParameterfvEXT");
-
+
disp__glGetMinmaxParameterivEXT = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetMinmaxParameterivEXT");
-
+
disp__glHistogramEXT = (void (CALLBACK *)(GLenum, GLsizei, GLenum, GLboolean))
GET_GL_PROCADDRESS ("glHistogramEXT");
-
+
disp__glMinmaxEXT = (void (CALLBACK *)(GLenum, GLenum, GLboolean))
GET_GL_PROCADDRESS ("glMinmaxEXT");
-
+
disp__glResetHistogramEXT = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glResetHistogramEXT");
-
+
disp__glResetMinmaxEXT = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glResetMinmaxEXT");
-
+
disp__glConvolutionFilter1DEXT = (void (CALLBACK *)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glConvolutionFilter1DEXT");
-
+
disp__glConvolutionFilter2DEXT = (void (CALLBACK *)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glConvolutionFilter2DEXT");
-
+
disp__glConvolutionParameterfEXT = (void (CALLBACK *)(GLenum, GLenum, GLfloat))
GET_GL_PROCADDRESS ("glConvolutionParameterfEXT");
-
+
disp__glConvolutionParameterfvEXT = (void (CALLBACK *)(GLenum, GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glConvolutionParameterfvEXT");
-
+
disp__glConvolutionParameteriEXT = (void (CALLBACK *)(GLenum, GLenum, GLint))
GET_GL_PROCADDRESS ("glConvolutionParameteriEXT");
-
+
disp__glConvolutionParameterivEXT = (void (CALLBACK *)(GLenum, GLenum, const GLint *))
GET_GL_PROCADDRESS ("glConvolutionParameterivEXT");
-
+
disp__glCopyConvolutionFilter1DEXT = (void (CALLBACK *)(GLenum, GLenum, GLint, GLint, GLsizei))
GET_GL_PROCADDRESS ("glCopyConvolutionFilter1DEXT");
-
+
disp__glCopyConvolutionFilter2DEXT = (void (CALLBACK *)(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei))
GET_GL_PROCADDRESS ("glCopyConvolutionFilter2DEXT");
-
+
disp__glGetConvolutionFilterEXT = (void (CALLBACK *)(GLenum, GLenum, GLenum, GLvoid *))
GET_GL_PROCADDRESS ("glGetConvolutionFilterEXT");
-
+
disp__glGetConvolutionParameterfvEXT = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetConvolutionParameterfvEXT");
-
+
disp__glGetConvolutionParameterivEXT = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetConvolutionParameterivEXT");
-
+
disp__glGetSeparableFilterEXT = (void (CALLBACK *)(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *))
GET_GL_PROCADDRESS ("glGetSeparableFilterEXT");
-
+
disp__glSeparableFilter2DEXT = (void (CALLBACK *)(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *))
GET_GL_PROCADDRESS ("glSeparableFilter2DEXT");
-
+
disp__glColorTableSGI = (void (CALLBACK *)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glColorTableSGI");
-
+
disp__glColorTableParameterfvSGI = (void (CALLBACK *)(GLenum, GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glColorTableParameterfvSGI");
-
+
disp__glColorTableParameterivSGI = (void (CALLBACK *)(GLenum, GLenum, const GLint *))
GET_GL_PROCADDRESS ("glColorTableParameterivSGI");
-
+
disp__glCopyColorTableSGI = (void (CALLBACK *)(GLenum, GLenum, GLint, GLint, GLsizei))
GET_GL_PROCADDRESS ("glCopyColorTableSGI");
-
+
disp__glGetColorTableSGI = (void (CALLBACK *)(GLenum, GLenum, GLenum, GLvoid *))
GET_GL_PROCADDRESS ("glGetColorTableSGI");
-
+
disp__glGetColorTableParameterfvSGI = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetColorTableParameterfvSGI");
-
+
disp__glGetColorTableParameterivSGI = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetColorTableParameterivSGI");
-
+
disp__glPixelTexGenSGIX = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glPixelTexGenSGIX");
-
+
disp__glPixelTexGenParameteriSGIS = (void (CALLBACK *)(GLenum, GLint))
GET_GL_PROCADDRESS ("glPixelTexGenParameteriSGIS");
-
+
disp__glPixelTexGenParameterivSGIS = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glPixelTexGenParameterivSGIS");
-
+
disp__glPixelTexGenParameterfSGIS = (void (CALLBACK *)(GLenum, GLfloat))
GET_GL_PROCADDRESS ("glPixelTexGenParameterfSGIS");
-
+
disp__glPixelTexGenParameterfvSGIS = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glPixelTexGenParameterfvSGIS");
-
+
disp__glGetPixelTexGenParameterivSGIS = (void (CALLBACK *)(GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetPixelTexGenParameterivSGIS");
-
+
disp__glGetPixelTexGenParameterfvSGIS = (void (CALLBACK *)(GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetPixelTexGenParameterfvSGIS");
-
+
disp__glTexImage4DSGIS = (void (CALLBACK *)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glTexImage4DSGIS");
-
+
disp__glTexSubImage4DSGIS = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glTexSubImage4DSGIS");
-
+
disp__glDetailTexFuncSGIS = (void (CALLBACK *)(GLenum, GLsizei, const GLfloat *))
GET_GL_PROCADDRESS ("glDetailTexFuncSGIS");
-
+
disp__glGetDetailTexFuncSGIS = (void (CALLBACK *)(GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetDetailTexFuncSGIS");
-
+
disp__glSharpenTexFuncSGIS = (void (CALLBACK *)(GLenum, GLsizei, const GLfloat *))
GET_GL_PROCADDRESS ("glSharpenTexFuncSGIS");
-
+
disp__glGetSharpenTexFuncSGIS = (void (CALLBACK *)(GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetSharpenTexFuncSGIS");
-
+
disp__glSampleMaskSGIS = (void (CALLBACK *)(GLclampf, GLboolean))
GET_GL_PROCADDRESS ("glSampleMaskSGIS");
-
+
disp__glSamplePatternSGIS = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glSamplePatternSGIS");
-
+
disp__glSpriteParameterfSGIX = (void (CALLBACK *)(GLenum, GLfloat))
GET_GL_PROCADDRESS ("glSpriteParameterfSGIX");
-
+
disp__glSpriteParameterfvSGIX = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glSpriteParameterfvSGIX");
-
+
disp__glSpriteParameteriSGIX = (void (CALLBACK *)(GLenum, GLint))
GET_GL_PROCADDRESS ("glSpriteParameteriSGIX");
-
+
disp__glSpriteParameterivSGIX = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glSpriteParameterivSGIX");
-
+
disp__glPointParameterfARB = (void (CALLBACK *)(GLenum, GLfloat))
GET_GL_PROCADDRESS ("glPointParameterfARB");
-
+
disp__glPointParameterfvARB = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glPointParameterfvARB");
-
+
disp__glGetInstrumentsSGIX = (GLint (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glGetInstrumentsSGIX");
-
+
disp__glInstrumentsBufferSGIX = (void (CALLBACK *)(GLsizei, GLint *))
GET_GL_PROCADDRESS ("glInstrumentsBufferSGIX");
-
+
disp__glPollInstrumentsSGIX = (GLint (CALLBACK *)(GLint *))
GET_GL_PROCADDRESS ("glPollInstrumentsSGIX");
-
+
disp__glReadInstrumentsSGIX = (void (CALLBACK *)(GLint))
GET_GL_PROCADDRESS ("glReadInstrumentsSGIX");
-
+
disp__glStartInstrumentsSGIX = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glStartInstrumentsSGIX");
-
+
disp__glStopInstrumentsSGIX = (void (CALLBACK *)(GLint))
GET_GL_PROCADDRESS ("glStopInstrumentsSGIX");
-
+
disp__glFrameZoomSGIX = (void (CALLBACK *)(GLint))
GET_GL_PROCADDRESS ("glFrameZoomSGIX");
-
+
disp__glTagSampleBufferSGIX = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glTagSampleBufferSGIX");
-
+
disp__glDeformationMap3dSGIX = (void (CALLBACK *)(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *))
GET_GL_PROCADDRESS ("glDeformationMap3dSGIX");
-
+
disp__glDeformationMap3fSGIX = (void (CALLBACK *)(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *))
GET_GL_PROCADDRESS ("glDeformationMap3fSGIX");
-
+
disp__glDeformSGIX = (void (CALLBACK *)(GLbitfield))
GET_GL_PROCADDRESS ("glDeformSGIX");
-
+
disp__glLoadIdentityDeformationMapSGIX = (void (CALLBACK *)(GLbitfield))
GET_GL_PROCADDRESS ("glLoadIdentityDeformationMapSGIX");
-
+
disp__glReferencePlaneSGIX = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glReferencePlaneSGIX");
-
+
disp__glFlushRasterSGIX = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glFlushRasterSGIX");
-
+
disp__glFogFuncSGIS = (void (CALLBACK *)(GLsizei, const GLfloat *))
GET_GL_PROCADDRESS ("glFogFuncSGIS");
-
+
disp__glGetFogFuncSGIS = (void (CALLBACK *)(GLfloat *))
GET_GL_PROCADDRESS ("glGetFogFuncSGIS");
-
+
disp__glImageTransformParameteriHP = (void (CALLBACK *)(GLenum, GLenum, GLint))
GET_GL_PROCADDRESS ("glImageTransformParameteriHP");
-
+
disp__glImageTransformParameterfHP = (void (CALLBACK *)(GLenum, GLenum, GLfloat))
GET_GL_PROCADDRESS ("glImageTransformParameterfHP");
-
+
disp__glImageTransformParameterivHP = (void (CALLBACK *)(GLenum, GLenum, const GLint *))
GET_GL_PROCADDRESS ("glImageTransformParameterivHP");
-
+
disp__glImageTransformParameterfvHP = (void (CALLBACK *)(GLenum, GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glImageTransformParameterfvHP");
-
+
disp__glGetImageTransformParameterivHP = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetImageTransformParameterivHP");
-
+
disp__glGetImageTransformParameterfvHP = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetImageTransformParameterfvHP");
-
+
disp__glCopyColorSubTableEXT = (void (CALLBACK *)(GLenum, GLsizei, GLint, GLint, GLsizei))
GET_GL_PROCADDRESS ("glCopyColorSubTableEXT");
-
+
disp__glHintPGI = (void (CALLBACK *)(GLenum, GLint))
GET_GL_PROCADDRESS ("glHintPGI");
-
+
disp__glGetListParameterfvSGIX = (void (CALLBACK *)(GLuint, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetListParameterfvSGIX");
-
+
disp__glGetListParameterivSGIX = (void (CALLBACK *)(GLuint, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetListParameterivSGIX");
-
+
disp__glListParameterfSGIX = (void (CALLBACK *)(GLuint, GLenum, GLfloat))
GET_GL_PROCADDRESS ("glListParameterfSGIX");
-
+
disp__glListParameterfvSGIX = (void (CALLBACK *)(GLuint, GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glListParameterfvSGIX");
-
+
disp__glListParameteriSGIX = (void (CALLBACK *)(GLuint, GLenum, GLint))
GET_GL_PROCADDRESS ("glListParameteriSGIX");
-
+
disp__glListParameterivSGIX = (void (CALLBACK *)(GLuint, GLenum, const GLint *))
GET_GL_PROCADDRESS ("glListParameterivSGIX");
-
+
disp__glIndexMaterialEXT = (void (CALLBACK *)(GLenum, GLenum))
GET_GL_PROCADDRESS ("glIndexMaterialEXT");
-
+
disp__glIndexFuncEXT = (void (CALLBACK *)(GLenum, GLclampf))
GET_GL_PROCADDRESS ("glIndexFuncEXT");
-
+
disp__glCullParameterdvEXT = (void (CALLBACK *)(GLenum, GLdouble *))
GET_GL_PROCADDRESS ("glCullParameterdvEXT");
-
+
disp__glCullParameterfvEXT = (void (CALLBACK *)(GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glCullParameterfvEXT");
-
+
disp__glFragmentColorMaterialSGIX = (void (CALLBACK *)(GLenum, GLenum))
GET_GL_PROCADDRESS ("glFragmentColorMaterialSGIX");
-
+
disp__glFragmentLightfSGIX = (void (CALLBACK *)(GLenum, GLenum, GLfloat))
GET_GL_PROCADDRESS ("glFragmentLightfSGIX");
-
+
disp__glFragmentLightfvSGIX = (void (CALLBACK *)(GLenum, GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glFragmentLightfvSGIX");
-
+
disp__glFragmentLightiSGIX = (void (CALLBACK *)(GLenum, GLenum, GLint))
GET_GL_PROCADDRESS ("glFragmentLightiSGIX");
-
+
disp__glFragmentLightivSGIX = (void (CALLBACK *)(GLenum, GLenum, const GLint *))
GET_GL_PROCADDRESS ("glFragmentLightivSGIX");
-
+
disp__glFragmentLightModelfSGIX = (void (CALLBACK *)(GLenum, GLfloat))
GET_GL_PROCADDRESS ("glFragmentLightModelfSGIX");
-
+
disp__glFragmentLightModelfvSGIX = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glFragmentLightModelfvSGIX");
-
+
disp__glFragmentLightModeliSGIX = (void (CALLBACK *)(GLenum, GLint))
GET_GL_PROCADDRESS ("glFragmentLightModeliSGIX");
-
+
disp__glFragmentLightModelivSGIX = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glFragmentLightModelivSGIX");
-
+
disp__glFragmentMaterialfSGIX = (void (CALLBACK *)(GLenum, GLenum, GLfloat))
GET_GL_PROCADDRESS ("glFragmentMaterialfSGIX");
-
+
disp__glFragmentMaterialfvSGIX = (void (CALLBACK *)(GLenum, GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glFragmentMaterialfvSGIX");
-
+
disp__glFragmentMaterialiSGIX = (void (CALLBACK *)(GLenum, GLenum, GLint))
GET_GL_PROCADDRESS ("glFragmentMaterialiSGIX");
-
+
disp__glFragmentMaterialivSGIX = (void (CALLBACK *)(GLenum, GLenum, const GLint *))
GET_GL_PROCADDRESS ("glFragmentMaterialivSGIX");
-
+
disp__glGetFragmentLightfvSGIX = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetFragmentLightfvSGIX");
-
+
disp__glGetFragmentLightivSGIX = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetFragmentLightivSGIX");
-
+
disp__glGetFragmentMaterialfvSGIX = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetFragmentMaterialfvSGIX");
-
+
disp__glGetFragmentMaterialivSGIX = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetFragmentMaterialivSGIX");
-
+
disp__glLightEnviSGIX = (void (CALLBACK *)(GLenum, GLint))
GET_GL_PROCADDRESS ("glLightEnviSGIX");
-
+
disp__glDrawRangeElementsEXT = (void (CALLBACK *)(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glDrawRangeElementsEXT");
-
+
disp__glApplyTextureEXT = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glApplyTextureEXT");
-
+
disp__glTextureLightEXT = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glTextureLightEXT");
-
+
disp__glTextureMaterialEXT = (void (CALLBACK *)(GLenum, GLenum))
GET_GL_PROCADDRESS ("glTextureMaterialEXT");
-
+
disp__glAsyncMarkerSGIX = (void (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glAsyncMarkerSGIX");
-
+
disp__glFinishAsyncSGIX = (GLint (CALLBACK *)(GLuint *))
GET_GL_PROCADDRESS ("glFinishAsyncSGIX");
-
+
disp__glPollAsyncSGIX = (GLint (CALLBACK *)(GLuint *))
GET_GL_PROCADDRESS ("glPollAsyncSGIX");
-
+
disp__glGenAsyncMarkersSGIX = (GLuint (CALLBACK *)(GLsizei))
GET_GL_PROCADDRESS ("glGenAsyncMarkersSGIX");
-
+
disp__glDeleteAsyncMarkersSGIX = (void (CALLBACK *)(GLuint, GLsizei))
GET_GL_PROCADDRESS ("glDeleteAsyncMarkersSGIX");
-
+
disp__glIsAsyncMarkerSGIX = (GLboolean (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glIsAsyncMarkerSGIX");
-
+
disp__glVertexPointervINTEL = (void (CALLBACK *)(GLint, GLenum, const GLvoid **))
GET_GL_PROCADDRESS ("glVertexPointervINTEL");
-
+
disp__glNormalPointervINTEL = (void (CALLBACK *)(GLenum, const GLvoid **))
GET_GL_PROCADDRESS ("glNormalPointervINTEL");
-
+
disp__glColorPointervINTEL = (void (CALLBACK *)(GLint, GLenum, const GLvoid **))
GET_GL_PROCADDRESS ("glColorPointervINTEL");
-
+
disp__glTexCoordPointervINTEL = (void (CALLBACK *)(GLint, GLenum, const GLvoid **))
GET_GL_PROCADDRESS ("glTexCoordPointervINTEL");
-
+
disp__glPixelTransformParameteriEXT = (void (CALLBACK *)(GLenum, GLenum, GLint))
GET_GL_PROCADDRESS ("glPixelTransformParameteriEXT");
-
+
disp__glPixelTransformParameterfEXT = (void (CALLBACK *)(GLenum, GLenum, GLfloat))
GET_GL_PROCADDRESS ("glPixelTransformParameterfEXT");
-
+
disp__glPixelTransformParameterivEXT = (void (CALLBACK *)(GLenum, GLenum, const GLint *))
GET_GL_PROCADDRESS ("glPixelTransformParameterivEXT");
-
+
disp__glPixelTransformParameterfvEXT = (void (CALLBACK *)(GLenum, GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glPixelTransformParameterfvEXT");
-
+
disp__glSecondaryColor3bEXT = (void (CALLBACK *)(GLbyte, GLbyte, GLbyte))
GET_GL_PROCADDRESS ("glSecondaryColor3bEXT");
-
+
disp__glSecondaryColor3bvEXT = (void (CALLBACK *)(const GLbyte *))
GET_GL_PROCADDRESS ("glSecondaryColor3bvEXT");
-
+
disp__glSecondaryColor3dEXT = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glSecondaryColor3dEXT");
-
+
disp__glSecondaryColor3dvEXT = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glSecondaryColor3dvEXT");
-
+
disp__glSecondaryColor3fEXT = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glSecondaryColor3fEXT");
-
+
disp__glSecondaryColor3fvEXT = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glSecondaryColor3fvEXT");
-
+
disp__glSecondaryColor3iEXT = (void (CALLBACK *)(GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glSecondaryColor3iEXT");
-
+
disp__glSecondaryColor3ivEXT = (void (CALLBACK *)(const GLint *))
GET_GL_PROCADDRESS ("glSecondaryColor3ivEXT");
-
+
disp__glSecondaryColor3sEXT = (void (CALLBACK *)(GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glSecondaryColor3sEXT");
-
+
disp__glSecondaryColor3svEXT = (void (CALLBACK *)(const GLshort *))
GET_GL_PROCADDRESS ("glSecondaryColor3svEXT");
-
+
disp__glSecondaryColor3ubEXT = (void (CALLBACK *)(GLubyte, GLubyte, GLubyte))
GET_GL_PROCADDRESS ("glSecondaryColor3ubEXT");
-
+
disp__glSecondaryColor3ubvEXT = (void (CALLBACK *)(const GLubyte *))
GET_GL_PROCADDRESS ("glSecondaryColor3ubvEXT");
-
+
disp__glSecondaryColor3uiEXT = (void (CALLBACK *)(GLuint, GLuint, GLuint))
GET_GL_PROCADDRESS ("glSecondaryColor3uiEXT");
-
+
disp__glSecondaryColor3uivEXT = (void (CALLBACK *)(const GLuint *))
GET_GL_PROCADDRESS ("glSecondaryColor3uivEXT");
-
+
disp__glSecondaryColor3usEXT = (void (CALLBACK *)(GLushort, GLushort, GLushort))
GET_GL_PROCADDRESS ("glSecondaryColor3usEXT");
-
+
disp__glSecondaryColor3usvEXT = (void (CALLBACK *)(const GLushort *))
GET_GL_PROCADDRESS ("glSecondaryColor3usvEXT");
-
+
disp__glSecondaryColorPointerEXT = (void (CALLBACK *)(GLint, GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glSecondaryColorPointerEXT");
-
+
disp__glTextureNormalEXT = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glTextureNormalEXT");
-
+
disp__glMultiDrawArraysEXT = (void (CALLBACK *)(GLenum, GLint *, GLsizei *, GLsizei))
GET_GL_PROCADDRESS ("glMultiDrawArraysEXT");
-
+
disp__glMultiDrawElementsEXT = (void (CALLBACK *)(GLenum, const GLsizei *, GLenum, const GLvoid **, GLsizei))
GET_GL_PROCADDRESS ("glMultiDrawElementsEXT");
-
+
disp__glFogCoordfEXT = (void (CALLBACK *)(GLfloat))
GET_GL_PROCADDRESS ("glFogCoordfEXT");
-
+
disp__glFogCoordfvEXT = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glFogCoordfvEXT");
-
+
disp__glFogCoorddEXT = (void (CALLBACK *)(GLdouble))
GET_GL_PROCADDRESS ("glFogCoorddEXT");
-
+
disp__glFogCoorddvEXT = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glFogCoorddvEXT");
-
+
disp__glFogCoordPointerEXT = (void (CALLBACK *)(GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glFogCoordPointerEXT");
-
+
disp__glTangent3bEXT = (void (CALLBACK *)(GLbyte, GLbyte, GLbyte))
GET_GL_PROCADDRESS ("glTangent3bEXT");
-
+
disp__glTangent3bvEXT = (void (CALLBACK *)(const GLbyte *))
GET_GL_PROCADDRESS ("glTangent3bvEXT");
-
+
disp__glTangent3dEXT = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glTangent3dEXT");
-
+
disp__glTangent3dvEXT = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glTangent3dvEXT");
-
+
disp__glTangent3fEXT = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glTangent3fEXT");
-
+
disp__glTangent3fvEXT = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glTangent3fvEXT");
-
+
disp__glTangent3iEXT = (void (CALLBACK *)(GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glTangent3iEXT");
-
+
disp__glTangent3ivEXT = (void (CALLBACK *)(const GLint *))
GET_GL_PROCADDRESS ("glTangent3ivEXT");
-
+
disp__glTangent3sEXT = (void (CALLBACK *)(GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glTangent3sEXT");
-
+
disp__glTangent3svEXT = (void (CALLBACK *)(const GLshort *))
GET_GL_PROCADDRESS ("glTangent3svEXT");
-
+
disp__glBinormal3bEXT = (void (CALLBACK *)(GLbyte, GLbyte, GLbyte))
GET_GL_PROCADDRESS ("glBinormal3bEXT");
-
+
disp__glBinormal3bvEXT = (void (CALLBACK *)(const GLbyte *))
GET_GL_PROCADDRESS ("glBinormal3bvEXT");
-
+
disp__glBinormal3dEXT = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glBinormal3dEXT");
-
+
disp__glBinormal3dvEXT = (void (CALLBACK *)(const GLdouble *))
GET_GL_PROCADDRESS ("glBinormal3dvEXT");
-
+
disp__glBinormal3fEXT = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glBinormal3fEXT");
-
+
disp__glBinormal3fvEXT = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glBinormal3fvEXT");
-
+
disp__glBinormal3iEXT = (void (CALLBACK *)(GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glBinormal3iEXT");
-
+
disp__glBinormal3ivEXT = (void (CALLBACK *)(const GLint *))
GET_GL_PROCADDRESS ("glBinormal3ivEXT");
-
+
disp__glBinormal3sEXT = (void (CALLBACK *)(GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glBinormal3sEXT");
-
+
disp__glBinormal3svEXT = (void (CALLBACK *)(const GLshort *))
GET_GL_PROCADDRESS ("glBinormal3svEXT");
-
+
disp__glTangentPointerEXT = (void (CALLBACK *)(GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glTangentPointerEXT");
-
+
disp__glBinormalPointerEXT = (void (CALLBACK *)(GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glBinormalPointerEXT");
-
+
disp__glFinishTextureSUNX = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glFinishTextureSUNX");
-
+
disp__glGlobalAlphaFactorbSUN = (void (CALLBACK *)(GLbyte))
GET_GL_PROCADDRESS ("glGlobalAlphaFactorbSUN");
-
+
disp__glGlobalAlphaFactorsSUN = (void (CALLBACK *)(GLshort))
GET_GL_PROCADDRESS ("glGlobalAlphaFactorsSUN");
-
+
disp__glGlobalAlphaFactoriSUN = (void (CALLBACK *)(GLint))
GET_GL_PROCADDRESS ("glGlobalAlphaFactoriSUN");
-
+
disp__glGlobalAlphaFactorfSUN = (void (CALLBACK *)(GLfloat))
GET_GL_PROCADDRESS ("glGlobalAlphaFactorfSUN");
-
+
disp__glGlobalAlphaFactordSUN = (void (CALLBACK *)(GLdouble))
GET_GL_PROCADDRESS ("glGlobalAlphaFactordSUN");
-
+
disp__glGlobalAlphaFactorubSUN = (void (CALLBACK *)(GLubyte))
GET_GL_PROCADDRESS ("glGlobalAlphaFactorubSUN");
-
+
disp__glGlobalAlphaFactorusSUN = (void (CALLBACK *)(GLushort))
GET_GL_PROCADDRESS ("glGlobalAlphaFactorusSUN");
-
+
disp__glGlobalAlphaFactoruiSUN = (void (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glGlobalAlphaFactoruiSUN");
-
+
disp__glReplacementCodeuiSUN = (void (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glReplacementCodeuiSUN");
-
+
disp__glReplacementCodeusSUN = (void (CALLBACK *)(GLushort))
GET_GL_PROCADDRESS ("glReplacementCodeusSUN");
-
+
disp__glReplacementCodeubSUN = (void (CALLBACK *)(GLubyte))
GET_GL_PROCADDRESS ("glReplacementCodeubSUN");
-
+
disp__glReplacementCodeuivSUN = (void (CALLBACK *)(const GLuint *))
GET_GL_PROCADDRESS ("glReplacementCodeuivSUN");
-
+
disp__glReplacementCodeusvSUN = (void (CALLBACK *)(const GLushort *))
GET_GL_PROCADDRESS ("glReplacementCodeusvSUN");
-
+
disp__glReplacementCodeubvSUN = (void (CALLBACK *)(const GLubyte *))
GET_GL_PROCADDRESS ("glReplacementCodeubvSUN");
-
+
disp__glReplacementCodePointerSUN = (void (CALLBACK *)(GLenum, GLsizei, const GLvoid **))
GET_GL_PROCADDRESS ("glReplacementCodePointerSUN");
-
+
disp__glColor4ubVertex2fSUN = (void (CALLBACK *)(GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glColor4ubVertex2fSUN");
-
+
disp__glColor4ubVertex2fvSUN = (void (CALLBACK *)(const GLubyte *, const GLfloat *))
GET_GL_PROCADDRESS ("glColor4ubVertex2fvSUN");
-
+
disp__glColor4ubVertex3fSUN = (void (CALLBACK *)(GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glColor4ubVertex3fSUN");
-
+
disp__glColor4ubVertex3fvSUN = (void (CALLBACK *)(const GLubyte *, const GLfloat *))
GET_GL_PROCADDRESS ("glColor4ubVertex3fvSUN");
-
+
disp__glColor3fVertex3fSUN = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glColor3fVertex3fSUN");
-
+
disp__glColor3fVertex3fvSUN = (void (CALLBACK *)(const GLfloat *, const GLfloat *))
GET_GL_PROCADDRESS ("glColor3fVertex3fvSUN");
-
+
disp__glNormal3fVertex3fSUN = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glNormal3fVertex3fSUN");
-
+
disp__glNormal3fVertex3fvSUN = (void (CALLBACK *)(const GLfloat *, const GLfloat *))
GET_GL_PROCADDRESS ("glNormal3fVertex3fvSUN");
-
+
disp__glColor4fNormal3fVertex3fSUN = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glColor4fNormal3fVertex3fSUN");
-
+
disp__glColor4fNormal3fVertex3fvSUN = (void (CALLBACK *)(const GLfloat *, const GLfloat *, const GLfloat *))
GET_GL_PROCADDRESS ("glColor4fNormal3fVertex3fvSUN");
-
+
disp__glTexCoord2fVertex3fSUN = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glTexCoord2fVertex3fSUN");
-
+
disp__glTexCoord2fVertex3fvSUN = (void (CALLBACK *)(const GLfloat *, const GLfloat *))
GET_GL_PROCADDRESS ("glTexCoord2fVertex3fvSUN");
-
+
disp__glTexCoord4fVertex4fSUN = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glTexCoord4fVertex4fSUN");
-
+
disp__glTexCoord4fVertex4fvSUN = (void (CALLBACK *)(const GLfloat *, const GLfloat *))
GET_GL_PROCADDRESS ("glTexCoord4fVertex4fvSUN");
-
+
disp__glTexCoord2fColor4ubVertex3fSUN = (void (CALLBACK *)(GLfloat, GLfloat, GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glTexCoord2fColor4ubVertex3fSUN");
-
+
disp__glTexCoord2fColor4ubVertex3fvSUN = (void (CALLBACK *)(const GLfloat *, const GLubyte *, const GLfloat *))
GET_GL_PROCADDRESS ("glTexCoord2fColor4ubVertex3fvSUN");
-
+
disp__glTexCoord2fColor3fVertex3fSUN = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glTexCoord2fColor3fVertex3fSUN");
-
+
disp__glTexCoord2fColor3fVertex3fvSUN = (void (CALLBACK *)(const GLfloat *, const GLfloat *, const GLfloat *))
GET_GL_PROCADDRESS ("glTexCoord2fColor3fVertex3fvSUN");
-
+
disp__glTexCoord2fNormal3fVertex3fSUN = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glTexCoord2fNormal3fVertex3fSUN");
-
+
disp__glTexCoord2fNormal3fVertex3fvSUN = (void (CALLBACK *)(const GLfloat *, const GLfloat *, const GLfloat *))
GET_GL_PROCADDRESS ("glTexCoord2fNormal3fVertex3fvSUN");
-
+
disp__glTexCoord2fColor4fNormal3fVertex3fSUN = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glTexCoord2fColor4fNormal3fVertex3fSUN");
-
+
disp__glTexCoord2fColor4fNormal3fVertex3fvSUN = (void (CALLBACK *)(const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *))
GET_GL_PROCADDRESS ("glTexCoord2fColor4fNormal3fVertex3fvSUN");
-
+
disp__glTexCoord4fColor4fNormal3fVertex4fSUN = (void (CALLBACK *)(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glTexCoord4fColor4fNormal3fVertex4fSUN");
-
+
disp__glTexCoord4fColor4fNormal3fVertex4fvSUN = (void (CALLBACK *)(const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *))
GET_GL_PROCADDRESS ("glTexCoord4fColor4fNormal3fVertex4fvSUN");
-
+
disp__glReplacementCodeuiVertex3fSUN = (void (CALLBACK *)(GLenum, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glReplacementCodeuiVertex3fSUN");
-
+
disp__glReplacementCodeuiVertex3fvSUN = (void (CALLBACK *)(const GLenum *, const GLfloat *))
GET_GL_PROCADDRESS ("glReplacementCodeuiVertex3fvSUN");
-
+
disp__glReplacementCodeuiColor4ubVertex3fSUN = (void (CALLBACK *)(GLenum, GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glReplacementCodeuiColor4ubVertex3fSUN");
-
+
disp__glReplacementCodeuiColor4ubVertex3fvSUN = (void (CALLBACK *)(const GLenum *, const GLubyte *, const GLfloat *))
GET_GL_PROCADDRESS ("glReplacementCodeuiColor4ubVertex3fvSUN");
-
+
disp__glReplacementCodeuiColor3fVertex3fSUN = (void (CALLBACK *)(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glReplacementCodeuiColor3fVertex3fSUN");
-
+
disp__glReplacementCodeuiColor3fVertex3fvSUN = (void (CALLBACK *)(const GLenum *, const GLfloat *, const GLfloat *))
GET_GL_PROCADDRESS ("glReplacementCodeuiColor3fVertex3fvSUN");
-
+
disp__glReplacementCodeuiNormal3fVertex3fSUN = (void (CALLBACK *)(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glReplacementCodeuiNormal3fVertex3fSUN");
-
+
disp__glReplacementCodeuiNormal3fVertex3fvSUN = (void (CALLBACK *)(const GLenum *, const GLfloat *, const GLfloat *))
GET_GL_PROCADDRESS ("glReplacementCodeuiNormal3fVertex3fvSUN");
-
+
disp__glReplacementCodeuiColor4fNormal3fVertex3fSUN = (void (CALLBACK *)(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glReplacementCodeuiColor4fNormal3fVertex3fSUN");
-
+
disp__glReplacementCodeuiColor4fNormal3fVertex3fvSUN = (void (CALLBACK *)(const GLenum *, const GLfloat *, const GLfloat *, const GLfloat *))
GET_GL_PROCADDRESS ("glReplacementCodeuiColor4fNormal3fVertex3fvSUN");
-
+
disp__glReplacementCodeuiTexCoord2fVertex3fSUN = (void (CALLBACK *)(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glReplacementCodeuiTexCoord2fVertex3fSUN");
-
+
disp__glReplacementCodeuiTexCoord2fVertex3fvSUN = (void (CALLBACK *)(const GLenum *, const GLfloat *, const GLfloat *))
GET_GL_PROCADDRESS ("glReplacementCodeuiTexCoord2fVertex3fvSUN");
-
+
disp__glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN = (void (CALLBACK *)(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN");
-
+
disp__glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN = (void (CALLBACK *)(const GLenum *, const GLfloat *, const GLfloat *, const GLfloat *))
GET_GL_PROCADDRESS ("glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN");
-
+
disp__glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN = (void (CALLBACK *)(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN");
-
+
disp__glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN = (void (CALLBACK *)(const GLenum *, const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *))
GET_GL_PROCADDRESS ("glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN");
-
+
disp__glBlendFuncSeparateEXT = (void (CALLBACK *)(GLenum, GLenum, GLenum, GLenum))
GET_GL_PROCADDRESS ("glBlendFuncSeparateEXT");
-
+
disp__glBlendFuncSeparateINGR = (void (CALLBACK *)(GLenum, GLenum, GLenum, GLenum))
GET_GL_PROCADDRESS ("glBlendFuncSeparateINGR");
-
+
disp__glVertexWeightfEXT = (void (CALLBACK *)(GLfloat))
GET_GL_PROCADDRESS ("glVertexWeightfEXT");
-
+
disp__glVertexWeightfvEXT = (void (CALLBACK *)(const GLfloat *))
GET_GL_PROCADDRESS ("glVertexWeightfvEXT");
-
+
disp__glVertexWeightPointerEXT = (void (CALLBACK *)(GLsizei, GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glVertexWeightPointerEXT");
-
+
disp__glFlushVertexArrayRangeNV = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glFlushVertexArrayRangeNV");
-
+
disp__glVertexArrayRangeNV = (void (CALLBACK *)(GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glVertexArrayRangeNV");
-
+
disp__glCombinerParameterfvNV = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glCombinerParameterfvNV");
-
+
disp__glCombinerParameterfNV = (void (CALLBACK *)(GLenum, GLfloat))
GET_GL_PROCADDRESS ("glCombinerParameterfNV");
-
+
disp__glCombinerParameterivNV = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glCombinerParameterivNV");
-
+
disp__glCombinerParameteriNV = (void (CALLBACK *)(GLenum, GLint))
GET_GL_PROCADDRESS ("glCombinerParameteriNV");
-
+
disp__glCombinerInputNV = (void (CALLBACK *)(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum))
GET_GL_PROCADDRESS ("glCombinerInputNV");
-
+
disp__glCombinerOutputNV = (void (CALLBACK *)(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLboolean, GLboolean, GLboolean))
GET_GL_PROCADDRESS ("glCombinerOutputNV");
-
+
disp__glFinalCombinerInputNV = (void (CALLBACK *)(GLenum, GLenum, GLenum, GLenum))
GET_GL_PROCADDRESS ("glFinalCombinerInputNV");
-
+
disp__glGetCombinerInputParameterfvNV = (void (CALLBACK *)(GLenum, GLenum, GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetCombinerInputParameterfvNV");
-
+
disp__glGetCombinerInputParameterivNV = (void (CALLBACK *)(GLenum, GLenum, GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetCombinerInputParameterivNV");
-
+
disp__glGetCombinerOutputParameterfvNV = (void (CALLBACK *)(GLenum, GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetCombinerOutputParameterfvNV");
-
+
disp__glGetCombinerOutputParameterivNV = (void (CALLBACK *)(GLenum, GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetCombinerOutputParameterivNV");
-
+
disp__glGetFinalCombinerInputParameterfvNV = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetFinalCombinerInputParameterfvNV");
-
+
disp__glGetFinalCombinerInputParameterivNV = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetFinalCombinerInputParameterivNV");
-
+
disp__glMultiModeDrawArraysIBM = (void (CALLBACK *)(GLenum, const GLint *, const GLsizei *, GLsizei, GLint))
GET_GL_PROCADDRESS ("glMultiModeDrawArraysIBM");
-
+
disp__glMultiModeDrawElementsIBM = (void (CALLBACK *)(const GLenum *, const GLsizei *, GLenum, const GLvoid **, GLsizei, GLint))
GET_GL_PROCADDRESS ("glMultiModeDrawElementsIBM");
-
+
disp__glColorPointerListIBM = (void (CALLBACK *)(GLint, GLenum, GLint, const GLvoid **, GLint))
GET_GL_PROCADDRESS ("glColorPointerListIBM");
-
+
disp__glSecondaryColorPointerListIBM = (void (CALLBACK *)(GLint, GLenum, GLint, const GLvoid **, GLint))
GET_GL_PROCADDRESS ("glSecondaryColorPointerListIBM");
-
+
disp__glEdgeFlagPointerListIBM = (void (CALLBACK *)(GLint, const GLboolean **, GLint))
GET_GL_PROCADDRESS ("glEdgeFlagPointerListIBM");
-
+
disp__glFogCoordPointerListIBM = (void (CALLBACK *)(GLenum, GLint, const GLvoid **, GLint))
GET_GL_PROCADDRESS ("glFogCoordPointerListIBM");
-
+
disp__glIndexPointerListIBM = (void (CALLBACK *)(GLenum, GLint, const GLvoid **, GLint))
GET_GL_PROCADDRESS ("glIndexPointerListIBM");
-
+
disp__glNormalPointerListIBM = (void (CALLBACK *)(GLenum, GLint, const GLvoid **, GLint))
GET_GL_PROCADDRESS ("glNormalPointerListIBM");
-
+
disp__glTexCoordPointerListIBM = (void (CALLBACK *)(GLint, GLenum, GLint, const GLvoid **, GLint))
GET_GL_PROCADDRESS ("glTexCoordPointerListIBM");
-
+
disp__glVertexPointerListIBM = (void (CALLBACK *)(GLint, GLenum, GLint, const GLvoid **, GLint))
GET_GL_PROCADDRESS ("glVertexPointerListIBM");
-
+
disp__glTbufferMask3DFX = (void (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glTbufferMask3DFX");
-
+
disp__glSampleMaskEXT = (void (CALLBACK *)(GLclampf, GLboolean))
GET_GL_PROCADDRESS ("glSampleMaskEXT");
-
+
disp__glSamplePatternEXT = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glSamplePatternEXT");
-
+
disp__glTextureColorMaskSGIS = (void (CALLBACK *)(GLboolean, GLboolean, GLboolean, GLboolean))
GET_GL_PROCADDRESS ("glTextureColorMaskSGIS");
-
+
disp__glIglooInterfaceSGIX = (void (CALLBACK *)(GLenum, const GLvoid *))
GET_GL_PROCADDRESS ("glIglooInterfaceSGIX");
-
+
disp__glGenFencesNV = (void (CALLBACK *)(GLsizei, GLuint *))
GET_GL_PROCADDRESS ("glGenFencesNV");
-
+
disp__glDeleteFencesNV = (void (CALLBACK *)(GLsizei, const GLuint *))
GET_GL_PROCADDRESS ("glDeleteFencesNV");
-
+
disp__glSetFenceNV = (void (CALLBACK *)(GLuint, GLenum))
GET_GL_PROCADDRESS ("glSetFenceNV");
-
+
disp__glTestFenceNV = (GLboolean (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glTestFenceNV");
-
+
disp__glFinishFenceNV = (void (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glFinishFenceNV");
-
+
disp__glIsFenceNV = (GLboolean (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glIsFenceNV");
-
+
disp__glGetFenceivNV = (void (CALLBACK *)(GLuint, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetFenceivNV");
-
+
disp__glMapControlPointsNV = (void (CALLBACK *)(GLenum, GLuint, GLenum, GLsizei, GLsizei, GLint, GLint, GLboolean, const GLvoid *))
GET_GL_PROCADDRESS ("glMapControlPointsNV");
-
+
disp__glMapParameterivNV = (void (CALLBACK *)(GLenum, GLenum, const GLint *))
GET_GL_PROCADDRESS ("glMapParameterivNV");
-
+
disp__glMapParameterfvNV = (void (CALLBACK *)(GLenum, GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glMapParameterfvNV");
-
+
disp__glGetMapControlPointsNV = (void (CALLBACK *)(GLenum, GLuint, GLenum, GLsizei, GLsizei, GLboolean, GLvoid *))
GET_GL_PROCADDRESS ("glGetMapControlPointsNV");
-
+
disp__glGetMapParameterivNV = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetMapParameterivNV");
-
+
disp__glGetMapParameterfvNV = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetMapParameterfvNV");
-
+
disp__glGetMapAttribParameterivNV = (void (CALLBACK *)(GLenum, GLuint, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetMapAttribParameterivNV");
-
+
disp__glGetMapAttribParameterfvNV = (void (CALLBACK *)(GLenum, GLuint, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetMapAttribParameterfvNV");
-
+
disp__glEvalMapsNV = (void (CALLBACK *)(GLenum, GLenum))
GET_GL_PROCADDRESS ("glEvalMapsNV");
-
+
disp__glCombinerStageParameterfvNV = (void (CALLBACK *)(GLenum, GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glCombinerStageParameterfvNV");
-
+
disp__glGetCombinerStageParameterfvNV = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetCombinerStageParameterfvNV");
-
+
disp__glBindProgramNV = (void (CALLBACK *)(GLenum, GLuint))
GET_GL_PROCADDRESS ("glBindProgramNV");
-
+
disp__glDeleteProgramsNV = (void (CALLBACK *)(GLsizei, const GLuint *))
GET_GL_PROCADDRESS ("glDeleteProgramsNV");
-
+
disp__glExecuteProgramNV = (void (CALLBACK *)(GLenum, GLuint, const GLfloat *))
GET_GL_PROCADDRESS ("glExecuteProgramNV");
-
+
disp__glGenProgramsNV = (void (CALLBACK *)(GLsizei, GLuint *))
GET_GL_PROCADDRESS ("glGenProgramsNV");
-
+
disp__glAreProgramsResidentNV = (GLboolean (CALLBACK *)(GLsizei, const GLuint *, GLboolean *))
GET_GL_PROCADDRESS ("glAreProgramsResidentNV");
-
+
disp__glRequestResidentProgramsNV = (void (CALLBACK *)(GLsizei, const GLuint *))
GET_GL_PROCADDRESS ("glRequestResidentProgramsNV");
-
+
disp__glGetProgramParameterfvNV = (void (CALLBACK *)(GLenum, GLuint, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetProgramParameterfvNV");
-
+
disp__glGetProgramParameterdvNV = (void (CALLBACK *)(GLenum, GLuint, GLenum, GLdouble *))
GET_GL_PROCADDRESS ("glGetProgramParameterdvNV");
-
+
disp__glGetProgramivNV = (void (CALLBACK *)(GLuint, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetProgramivNV");
-
+
disp__glGetProgramStringNV = (void (CALLBACK *)(GLuint, GLenum, GLubyte *))
GET_GL_PROCADDRESS ("glGetProgramStringNV");
-
+
disp__glGetTrackMatrixivNV = (void (CALLBACK *)(GLenum, GLuint, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetTrackMatrixivNV");
-
+
disp__glGetVertexAttribdvNV = (void (CALLBACK *)(GLuint, GLenum, GLdouble *))
GET_GL_PROCADDRESS ("glGetVertexAttribdvNV");
-
+
disp__glGetVertexAttribfvNV = (void (CALLBACK *)(GLuint, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetVertexAttribfvNV");
-
+
disp__glGetVertexAttribivNV = (void (CALLBACK *)(GLuint, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetVertexAttribivNV");
-
+
disp__glGetVertexAttribPointervNV = (void (CALLBACK *)(GLuint, GLenum, GLvoid **))
GET_GL_PROCADDRESS ("glGetVertexAttribPointervNV");
-
+
disp__glIsProgramNV = (GLboolean (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glIsProgramNV");
-
+
disp__glLoadProgramNV = (void (CALLBACK *)(GLenum, GLuint, GLsizei, const GLubyte *))
GET_GL_PROCADDRESS ("glLoadProgramNV");
-
+
disp__glProgramParameter4fNV = (void (CALLBACK *)(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glProgramParameter4fNV");
-
+
disp__glProgramParameter4dNV = (void (CALLBACK *)(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glProgramParameter4dNV");
-
+
disp__glProgramParameter4dvNV = (void (CALLBACK *)(GLenum, GLuint, const GLdouble *))
GET_GL_PROCADDRESS ("glProgramParameter4dvNV");
-
+
disp__glProgramParameter4fvNV = (void (CALLBACK *)(GLenum, GLuint, const GLfloat *))
GET_GL_PROCADDRESS ("glProgramParameter4fvNV");
-
+
disp__glProgramParameters4dvNV = (void (CALLBACK *)(GLenum, GLuint, GLuint, const GLdouble *))
GET_GL_PROCADDRESS ("glProgramParameters4dvNV");
-
+
disp__glProgramParameters4fvNV = (void (CALLBACK *)(GLenum, GLuint, GLuint, const GLfloat *))
GET_GL_PROCADDRESS ("glProgramParameters4fvNV");
-
+
disp__glTrackMatrixNV = (void (CALLBACK *)(GLenum, GLuint, GLenum, GLenum))
GET_GL_PROCADDRESS ("glTrackMatrixNV");
-
+
disp__glVertexAttribPointerNV = (void (CALLBACK *)(GLuint, GLint, GLenum, GLsizei, const GLvoid *))
GET_GL_PROCADDRESS ("glVertexAttribPointerNV");
-
+
disp__glVertexAttrib1sNV = (void (CALLBACK *)(GLuint, GLshort))
GET_GL_PROCADDRESS ("glVertexAttrib1sNV");
-
+
disp__glVertexAttrib1fNV = (void (CALLBACK *)(GLuint, GLfloat))
GET_GL_PROCADDRESS ("glVertexAttrib1fNV");
-
+
disp__glVertexAttrib1dNV = (void (CALLBACK *)(GLuint, GLdouble))
GET_GL_PROCADDRESS ("glVertexAttrib1dNV");
-
+
disp__glVertexAttrib2sNV = (void (CALLBACK *)(GLuint, GLshort, GLshort))
GET_GL_PROCADDRESS ("glVertexAttrib2sNV");
-
+
disp__glVertexAttrib2fNV = (void (CALLBACK *)(GLuint, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glVertexAttrib2fNV");
-
+
disp__glVertexAttrib2dNV = (void (CALLBACK *)(GLuint, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glVertexAttrib2dNV");
-
+
disp__glVertexAttrib3sNV = (void (CALLBACK *)(GLuint, GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glVertexAttrib3sNV");
-
+
disp__glVertexAttrib3fNV = (void (CALLBACK *)(GLuint, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glVertexAttrib3fNV");
-
+
disp__glVertexAttrib3dNV = (void (CALLBACK *)(GLuint, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glVertexAttrib3dNV");
-
+
disp__glVertexAttrib4sNV = (void (CALLBACK *)(GLuint, GLshort, GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glVertexAttrib4sNV");
-
+
disp__glVertexAttrib4fNV = (void (CALLBACK *)(GLuint, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glVertexAttrib4fNV");
-
+
disp__glVertexAttrib4dNV = (void (CALLBACK *)(GLuint, GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glVertexAttrib4dNV");
-
+
disp__glVertexAttrib4ubNV = (void (CALLBACK *)(GLuint, GLubyte, GLubyte, GLubyte, GLubyte))
GET_GL_PROCADDRESS ("glVertexAttrib4ubNV");
-
+
disp__glVertexAttrib1svNV = (void (CALLBACK *)(GLuint, const GLshort *))
GET_GL_PROCADDRESS ("glVertexAttrib1svNV");
-
+
disp__glVertexAttrib1fvNV = (void (CALLBACK *)(GLuint, const GLfloat *))
GET_GL_PROCADDRESS ("glVertexAttrib1fvNV");
-
+
disp__glVertexAttrib1dvNV = (void (CALLBACK *)(GLuint, const GLdouble *))
GET_GL_PROCADDRESS ("glVertexAttrib1dvNV");
-
+
disp__glVertexAttrib2svNV = (void (CALLBACK *)(GLuint, const GLshort *))
GET_GL_PROCADDRESS ("glVertexAttrib2svNV");
-
+
disp__glVertexAttrib2fvNV = (void (CALLBACK *)(GLuint, const GLfloat *))
GET_GL_PROCADDRESS ("glVertexAttrib2fvNV");
-
+
disp__glVertexAttrib2dvNV = (void (CALLBACK *)(GLuint, const GLdouble *))
GET_GL_PROCADDRESS ("glVertexAttrib2dvNV");
-
+
disp__glVertexAttrib3svNV = (void (CALLBACK *)(GLuint, const GLshort *))
GET_GL_PROCADDRESS ("glVertexAttrib3svNV");
-
+
disp__glVertexAttrib3fvNV = (void (CALLBACK *)(GLuint, const GLfloat *))
GET_GL_PROCADDRESS ("glVertexAttrib3fvNV");
-
+
disp__glVertexAttrib3dvNV = (void (CALLBACK *)(GLuint, const GLdouble *))
GET_GL_PROCADDRESS ("glVertexAttrib3dvNV");
-
+
disp__glVertexAttrib4svNV = (void (CALLBACK *)(GLuint, const GLshort *))
GET_GL_PROCADDRESS ("glVertexAttrib4svNV");
-
+
disp__glVertexAttrib4fvNV = (void (CALLBACK *)(GLuint, const GLfloat *))
GET_GL_PROCADDRESS ("glVertexAttrib4fvNV");
-
+
disp__glVertexAttrib4dvNV = (void (CALLBACK *)(GLuint, const GLdouble *))
GET_GL_PROCADDRESS ("glVertexAttrib4dvNV");
-
+
disp__glVertexAttrib4ubvNV = (void (CALLBACK *)(GLuint, const GLubyte *))
GET_GL_PROCADDRESS ("glVertexAttrib4ubvNV");
-
+
disp__glVertexAttribs1svNV = (void (CALLBACK *)(GLuint, GLsizei, const GLshort *))
GET_GL_PROCADDRESS ("glVertexAttribs1svNV");
-
+
disp__glVertexAttribs1fvNV = (void (CALLBACK *)(GLuint, GLsizei, const GLfloat *))
GET_GL_PROCADDRESS ("glVertexAttribs1fvNV");
-
+
disp__glVertexAttribs1dvNV = (void (CALLBACK *)(GLuint, GLsizei, const GLdouble *))
GET_GL_PROCADDRESS ("glVertexAttribs1dvNV");
-
+
disp__glVertexAttribs2svNV = (void (CALLBACK *)(GLuint, GLsizei, const GLshort *))
GET_GL_PROCADDRESS ("glVertexAttribs2svNV");
-
+
disp__glVertexAttribs2fvNV = (void (CALLBACK *)(GLuint, GLsizei, const GLfloat *))
GET_GL_PROCADDRESS ("glVertexAttribs2fvNV");
-
+
disp__glVertexAttribs2dvNV = (void (CALLBACK *)(GLuint, GLsizei, const GLdouble *))
GET_GL_PROCADDRESS ("glVertexAttribs2dvNV");
-
+
disp__glVertexAttribs3svNV = (void (CALLBACK *)(GLuint, GLsizei, const GLshort *))
GET_GL_PROCADDRESS ("glVertexAttribs3svNV");
-
+
disp__glVertexAttribs3fvNV = (void (CALLBACK *)(GLuint, GLsizei, const GLfloat *))
GET_GL_PROCADDRESS ("glVertexAttribs3fvNV");
-
+
disp__glVertexAttribs3dvNV = (void (CALLBACK *)(GLuint, GLsizei, const GLdouble *))
GET_GL_PROCADDRESS ("glVertexAttribs3dvNV");
-
+
disp__glVertexAttribs4svNV = (void (CALLBACK *)(GLuint, GLsizei, const GLshort *))
GET_GL_PROCADDRESS ("glVertexAttribs4svNV");
-
+
disp__glVertexAttribs4fvNV = (void (CALLBACK *)(GLuint, GLsizei, const GLfloat *))
GET_GL_PROCADDRESS ("glVertexAttribs4fvNV");
-
+
disp__glVertexAttribs4dvNV = (void (CALLBACK *)(GLuint, GLsizei, const GLdouble *))
GET_GL_PROCADDRESS ("glVertexAttribs4dvNV");
-
+
disp__glVertexAttribs4ubvNV = (void (CALLBACK *)(GLuint, GLsizei, const GLubyte *))
GET_GL_PROCADDRESS ("glVertexAttribs4ubvNV");
-
+
disp__glTexBumpParameterivATI = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glTexBumpParameterivATI");
-
+
disp__glTexBumpParameterfvATI = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glTexBumpParameterfvATI");
-
+
disp__glGetTexBumpParameterivATI = (void (CALLBACK *)(GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetTexBumpParameterivATI");
-
+
disp__glGetTexBumpParameterfvATI = (void (CALLBACK *)(GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetTexBumpParameterfvATI");
-
+
disp__glGenFragmentShadersATI = (GLuint (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glGenFragmentShadersATI");
-
+
disp__glBindFragmentShaderATI = (void (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glBindFragmentShaderATI");
-
+
disp__glDeleteFragmentShaderATI = (void (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glDeleteFragmentShaderATI");
-
+
disp__glBeginFragmentShaderATI = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glBeginFragmentShaderATI");
-
+
disp__glEndFragmentShaderATI = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glEndFragmentShaderATI");
-
+
disp__glPassTexCoordATI = (void (CALLBACK *)(GLuint, GLuint, GLenum))
GET_GL_PROCADDRESS ("glPassTexCoordATI");
-
+
disp__glSampleMapATI = (void (CALLBACK *)(GLuint, GLuint, GLenum))
GET_GL_PROCADDRESS ("glSampleMapATI");
-
+
disp__glColorFragmentOp1ATI = (void (CALLBACK *)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint))
GET_GL_PROCADDRESS ("glColorFragmentOp1ATI");
-
+
disp__glColorFragmentOp2ATI = (void (CALLBACK *)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint))
GET_GL_PROCADDRESS ("glColorFragmentOp2ATI");
-
+
disp__glColorFragmentOp3ATI = (void (CALLBACK *)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint))
GET_GL_PROCADDRESS ("glColorFragmentOp3ATI");
-
+
disp__glAlphaFragmentOp1ATI = (void (CALLBACK *)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint))
GET_GL_PROCADDRESS ("glAlphaFragmentOp1ATI");
-
+
disp__glAlphaFragmentOp2ATI = (void (CALLBACK *)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint))
GET_GL_PROCADDRESS ("glAlphaFragmentOp2ATI");
-
+
disp__glAlphaFragmentOp3ATI = (void (CALLBACK *)(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint))
GET_GL_PROCADDRESS ("glAlphaFragmentOp3ATI");
-
+
disp__glSetFragmentShaderConstantATI = (void (CALLBACK *)(GLuint, const GLfloat *))
GET_GL_PROCADDRESS ("glSetFragmentShaderConstantATI");
-
+
disp__glPNTrianglesiATI = (void (CALLBACK *)(GLenum, GLint))
GET_GL_PROCADDRESS ("glPNTrianglesiATI");
-
+
disp__glPNTrianglesfATI = (void (CALLBACK *)(GLenum, GLfloat))
GET_GL_PROCADDRESS ("glPNTrianglesfATI");
-
+
disp__glNewObjectBufferATI = (GLuint (CALLBACK *)(GLsizei, const GLvoid *, GLenum))
GET_GL_PROCADDRESS ("glNewObjectBufferATI");
-
+
disp__glIsObjectBufferATI = (GLboolean (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glIsObjectBufferATI");
-
+
disp__glUpdateObjectBufferATI = (void (CALLBACK *)(GLuint, GLuint, GLsizei, const GLvoid *, GLenum))
GET_GL_PROCADDRESS ("glUpdateObjectBufferATI");
-
+
disp__glGetObjectBufferfvATI = (void (CALLBACK *)(GLuint, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetObjectBufferfvATI");
-
+
disp__glGetObjectBufferivATI = (void (CALLBACK *)(GLuint, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetObjectBufferivATI");
-
+
disp__glDeleteObjectBufferATI = (void (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glDeleteObjectBufferATI");
-
+
disp__glArrayObjectATI = (void (CALLBACK *)(GLenum, GLint, GLenum, GLsizei, GLuint, GLuint))
GET_GL_PROCADDRESS ("glArrayObjectATI");
-
+
disp__glGetArrayObjectfvATI = (void (CALLBACK *)(GLenum, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetArrayObjectfvATI");
-
+
disp__glGetArrayObjectivATI = (void (CALLBACK *)(GLenum, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetArrayObjectivATI");
-
+
disp__glVariantArrayObjectATI = (void (CALLBACK *)(GLuint, GLenum, GLsizei, GLuint, GLuint))
GET_GL_PROCADDRESS ("glVariantArrayObjectATI");
-
+
disp__glGetVariantArrayObjectfvATI = (void (CALLBACK *)(GLuint, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetVariantArrayObjectfvATI");
-
+
disp__glGetVariantArrayObjectivATI = (void (CALLBACK *)(GLuint, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetVariantArrayObjectivATI");
-
+
disp__glBeginVertexShaderEXT = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glBeginVertexShaderEXT");
-
+
disp__glEndVertexShaderEXT = (void (CALLBACK *)(void))
GET_GL_PROCADDRESS ("glEndVertexShaderEXT");
-
+
disp__glBindVertexShaderEXT = (void (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glBindVertexShaderEXT");
-
+
disp__glGenVertexShadersEXT = (GLuint (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glGenVertexShadersEXT");
-
+
disp__glDeleteVertexShaderEXT = (void (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glDeleteVertexShaderEXT");
-
+
disp__glShaderOp1EXT = (void (CALLBACK *)(GLenum, GLuint, GLuint))
GET_GL_PROCADDRESS ("glShaderOp1EXT");
-
+
disp__glShaderOp2EXT = (void (CALLBACK *)(GLenum, GLuint, GLuint, GLuint))
GET_GL_PROCADDRESS ("glShaderOp2EXT");
-
+
disp__glShaderOp3EXT = (void (CALLBACK *)(GLenum, GLuint, GLuint, GLuint, GLuint))
GET_GL_PROCADDRESS ("glShaderOp3EXT");
-
+
disp__glSwizzleEXT = (void (CALLBACK *)(GLuint, GLuint, GLenum, GLenum, GLenum, GLenum))
GET_GL_PROCADDRESS ("glSwizzleEXT");
-
+
disp__glWriteMaskEXT = (void (CALLBACK *)(GLuint, GLuint, GLenum, GLenum, GLenum, GLenum))
GET_GL_PROCADDRESS ("glWriteMaskEXT");
-
+
disp__glInsertComponentEXT = (void (CALLBACK *)(GLuint, GLuint, GLuint))
GET_GL_PROCADDRESS ("glInsertComponentEXT");
-
+
disp__glExtractComponentEXT = (void (CALLBACK *)(GLuint, GLuint, GLuint))
GET_GL_PROCADDRESS ("glExtractComponentEXT");
-
+
disp__glGenSymbolsEXT = (GLuint (CALLBACK *)(GLenum, GLenum, GLenum, GLuint))
GET_GL_PROCADDRESS ("glGenSymbolsEXT");
-
+
disp__glSetInvariantEXT = (void (CALLBACK *)(GLuint, GLenum, const void *))
GET_GL_PROCADDRESS ("glSetInvariantEXT");
-
+
disp__glSetLocalConstantEXT = (void (CALLBACK *)(GLuint, GLenum, const void *))
GET_GL_PROCADDRESS ("glSetLocalConstantEXT");
-
+
disp__glVariantbvEXT = (void (CALLBACK *)(GLuint, const GLbyte *))
GET_GL_PROCADDRESS ("glVariantbvEXT");
-
+
disp__glVariantsvEXT = (void (CALLBACK *)(GLuint, const GLshort *))
GET_GL_PROCADDRESS ("glVariantsvEXT");
-
+
disp__glVariantivEXT = (void (CALLBACK *)(GLuint, const GLint *))
GET_GL_PROCADDRESS ("glVariantivEXT");
-
+
disp__glVariantfvEXT = (void (CALLBACK *)(GLuint, const GLfloat *))
GET_GL_PROCADDRESS ("glVariantfvEXT");
-
+
disp__glVariantdvEXT = (void (CALLBACK *)(GLuint, const GLdouble *))
GET_GL_PROCADDRESS ("glVariantdvEXT");
-
+
disp__glVariantubvEXT = (void (CALLBACK *)(GLuint, const GLubyte *))
GET_GL_PROCADDRESS ("glVariantubvEXT");
-
+
disp__glVariantusvEXT = (void (CALLBACK *)(GLuint, const GLushort *))
GET_GL_PROCADDRESS ("glVariantusvEXT");
-
+
disp__glVariantuivEXT = (void (CALLBACK *)(GLuint, const GLuint *))
GET_GL_PROCADDRESS ("glVariantuivEXT");
-
+
disp__glVariantPointerEXT = (void (CALLBACK *)(GLuint, GLenum, GLuint, const void *))
GET_GL_PROCADDRESS ("glVariantPointerEXT");
-
+
disp__glEnableVariantClientStateEXT = (void (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glEnableVariantClientStateEXT");
-
+
disp__glDisableVariantClientStateEXT = (void (CALLBACK *)(GLuint))
GET_GL_PROCADDRESS ("glDisableVariantClientStateEXT");
-
+
disp__glBindLightParameterEXT = (GLuint (CALLBACK *)(GLenum, GLenum))
GET_GL_PROCADDRESS ("glBindLightParameterEXT");
-
+
disp__glBindMaterialParameterEXT = (GLuint (CALLBACK *)(GLenum, GLenum))
GET_GL_PROCADDRESS ("glBindMaterialParameterEXT");
-
+
disp__glBindTexGenParameterEXT = (GLuint (CALLBACK *)(GLenum, GLenum, GLenum))
GET_GL_PROCADDRESS ("glBindTexGenParameterEXT");
-
+
disp__glBindTextureUnitParameterEXT = (GLuint (CALLBACK *)(GLenum, GLenum))
GET_GL_PROCADDRESS ("glBindTextureUnitParameterEXT");
-
+
disp__glBindParameterEXT = (GLuint (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glBindParameterEXT");
-
+
disp__glIsVariantEnabledEXT = (GLboolean (CALLBACK *)(GLuint, GLenum))
GET_GL_PROCADDRESS ("glIsVariantEnabledEXT");
-
+
disp__glGetVariantBooleanvEXT = (void (CALLBACK *)(GLuint, GLenum, GLboolean *))
GET_GL_PROCADDRESS ("glGetVariantBooleanvEXT");
-
+
disp__glGetVariantIntegervEXT = (void (CALLBACK *)(GLuint, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetVariantIntegervEXT");
-
+
disp__glGetVariantFloatvEXT = (void (CALLBACK *)(GLuint, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetVariantFloatvEXT");
-
+
disp__glGetVariantPointervEXT = (void (CALLBACK *)(GLuint, GLenum, GLvoid **))
GET_GL_PROCADDRESS ("glGetVariantPointervEXT");
-
+
disp__glGetInvariantBooleanvEXT = (void (CALLBACK *)(GLuint, GLenum, GLboolean *))
GET_GL_PROCADDRESS ("glGetInvariantBooleanvEXT");
-
+
disp__glGetInvariantIntegervEXT = (void (CALLBACK *)(GLuint, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetInvariantIntegervEXT");
-
+
disp__glGetInvariantFloatvEXT = (void (CALLBACK *)(GLuint, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetInvariantFloatvEXT");
-
+
disp__glGetLocalConstantBooleanvEXT = (void (CALLBACK *)(GLuint, GLenum, GLboolean *))
GET_GL_PROCADDRESS ("glGetLocalConstantBooleanvEXT");
-
+
disp__glGetLocalConstantIntegervEXT = (void (CALLBACK *)(GLuint, GLenum, GLint *))
GET_GL_PROCADDRESS ("glGetLocalConstantIntegervEXT");
-
+
disp__glGetLocalConstantFloatvEXT = (void (CALLBACK *)(GLuint, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("glGetLocalConstantFloatvEXT");
-
+
disp__glVertexStream1s = (void (CALLBACK *)(GLenum, GLshort))
GET_GL_PROCADDRESS ("glVertexStream1s");
-
+
disp__glVertexStream1sv = (void (CALLBACK *)(GLenum, const GLshort *))
GET_GL_PROCADDRESS ("glVertexStream1sv");
-
+
disp__glVertexStream1i = (void (CALLBACK *)(GLenum, GLint))
GET_GL_PROCADDRESS ("glVertexStream1i");
-
+
disp__glVertexStream1iv = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glVertexStream1iv");
-
+
disp__glVertexStream1f = (void (CALLBACK *)(GLenum, GLfloat))
GET_GL_PROCADDRESS ("glVertexStream1f");
-
+
disp__glVertexStream1fv = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glVertexStream1fv");
-
+
disp__glVertexStream1d = (void (CALLBACK *)(GLenum, GLdouble))
GET_GL_PROCADDRESS ("glVertexStream1d");
-
+
disp__glVertexStream1dv = (void (CALLBACK *)(GLenum, const GLdouble *))
GET_GL_PROCADDRESS ("glVertexStream1dv");
-
+
disp__glVertexStream2s = (void (CALLBACK *)(GLenum, GLshort, GLshort))
GET_GL_PROCADDRESS ("glVertexStream2s");
-
+
disp__glVertexStream2sv = (void (CALLBACK *)(GLenum, const GLshort *))
GET_GL_PROCADDRESS ("glVertexStream2sv");
-
+
disp__glVertexStream2i = (void (CALLBACK *)(GLenum, GLint, GLint))
GET_GL_PROCADDRESS ("glVertexStream2i");
-
+
disp__glVertexStream2iv = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glVertexStream2iv");
-
+
disp__glVertexStream2f = (void (CALLBACK *)(GLenum, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glVertexStream2f");
-
+
disp__glVertexStream2fv = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glVertexStream2fv");
-
+
disp__glVertexStream2d = (void (CALLBACK *)(GLenum, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glVertexStream2d");
-
+
disp__glVertexStream2dv = (void (CALLBACK *)(GLenum, const GLdouble *))
GET_GL_PROCADDRESS ("glVertexStream2dv");
-
+
disp__glVertexStream3s = (void (CALLBACK *)(GLenum, GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glVertexStream3s");
-
+
disp__glVertexStream3sv = (void (CALLBACK *)(GLenum, const GLshort *))
GET_GL_PROCADDRESS ("glVertexStream3sv");
-
+
disp__glVertexStream3i = (void (CALLBACK *)(GLenum, GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glVertexStream3i");
-
+
disp__glVertexStream3iv = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glVertexStream3iv");
-
+
disp__glVertexStream3f = (void (CALLBACK *)(GLenum, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glVertexStream3f");
-
+
disp__glVertexStream3fv = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glVertexStream3fv");
-
+
disp__glVertexStream3d = (void (CALLBACK *)(GLenum, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glVertexStream3d");
-
+
disp__glVertexStream3dv = (void (CALLBACK *)(GLenum, const GLdouble *))
GET_GL_PROCADDRESS ("glVertexStream3dv");
-
+
disp__glVertexStream4s = (void (CALLBACK *)(GLenum, GLshort, GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glVertexStream4s");
-
+
disp__glVertexStream4sv = (void (CALLBACK *)(GLenum, const GLshort *))
GET_GL_PROCADDRESS ("glVertexStream4sv");
-
+
disp__glVertexStream4i = (void (CALLBACK *)(GLenum, GLint, GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glVertexStream4i");
-
+
disp__glVertexStream4iv = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glVertexStream4iv");
-
+
disp__glVertexStream4f = (void (CALLBACK *)(GLenum, GLfloat, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glVertexStream4f");
-
+
disp__glVertexStream4fv = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glVertexStream4fv");
-
+
disp__glVertexStream4d = (void (CALLBACK *)(GLenum, GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glVertexStream4d");
-
+
disp__glVertexStream4dv = (void (CALLBACK *)(GLenum, const GLdouble *))
GET_GL_PROCADDRESS ("glVertexStream4dv");
-
+
disp__glNormalStream3b = (void (CALLBACK *)(GLenum, GLbyte, GLbyte, GLbyte))
GET_GL_PROCADDRESS ("glNormalStream3b");
-
+
disp__glNormalStream3bv = (void (CALLBACK *)(GLenum, const GLbyte *))
GET_GL_PROCADDRESS ("glNormalStream3bv");
-
+
disp__glNormalStream3s = (void (CALLBACK *)(GLenum, GLshort, GLshort, GLshort))
GET_GL_PROCADDRESS ("glNormalStream3s");
-
+
disp__glNormalStream3sv = (void (CALLBACK *)(GLenum, const GLshort *))
GET_GL_PROCADDRESS ("glNormalStream3sv");
-
+
disp__glNormalStream3i = (void (CALLBACK *)(GLenum, GLint, GLint, GLint))
GET_GL_PROCADDRESS ("glNormalStream3i");
-
+
disp__glNormalStream3iv = (void (CALLBACK *)(GLenum, const GLint *))
GET_GL_PROCADDRESS ("glNormalStream3iv");
-
+
disp__glNormalStream3f = (void (CALLBACK *)(GLenum, GLfloat, GLfloat, GLfloat))
GET_GL_PROCADDRESS ("glNormalStream3f");
-
+
disp__glNormalStream3fv = (void (CALLBACK *)(GLenum, const GLfloat *))
GET_GL_PROCADDRESS ("glNormalStream3fv");
-
+
disp__glNormalStream3d = (void (CALLBACK *)(GLenum, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("glNormalStream3d");
-
+
disp__glNormalStream3dv = (void (CALLBACK *)(GLenum, const GLdouble *))
GET_GL_PROCADDRESS ("glNormalStream3dv");
-
+
disp__glClientActiveVertexStream = (void (CALLBACK *)(GLenum))
GET_GL_PROCADDRESS ("glClientActiveVertexStream");
-
+
disp__glVertexBlendEnvi = (void (CALLBACK *)(GLenum, GLint))
GET_GL_PROCADDRESS ("glVertexBlendEnvi");
-
+
disp__glVertexBlendEnvf = (void (CALLBACK *)(GLenum, GLfloat))
GET_GL_PROCADDRESS ("glVertexBlendEnvf");
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/CNativeCode/gl-disp-var.h b/CNativeCode/gl-disp-var.h
index 8db399e..429ddb8 100755
--- a/CNativeCode/gl-disp-var.h
+++ b/CNativeCode/gl-disp-var.h
@@ -11,7853 +11,7853 @@
* Reading from file: gl-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvf ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClearIndex )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glClearIndex ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClearColor )(GLclampf, GLclampf, GLclampf, GLclampf);
-
-/**
- * Original Function-Prototype :
- *
extern void glClearColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClear )(GLbitfield);
-
-/**
- * Original Function-Prototype :
- *
extern void glClear ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexMask )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorMask )(GLboolean, GLboolean, GLboolean, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMask ( GLboolean red , GLboolean green , GLboolean blue , GLboolean alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glAlphaFunc )(GLenum, GLclampf);
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFunc ( GLenum func , GLclampf ref ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBlendFunc )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFunc ( GLenum sfactor , GLenum dfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLogicOp )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glLogicOp ( GLenum opcode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCullFace )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glCullFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFrontFace )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glFrontFace ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPointSize )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPointSize ( GLfloat size ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLineWidth )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glLineWidth ( GLfloat width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLineStipple )(GLint, GLushort);
-
-/**
- * Original Function-Prototype :
- *
extern void glLineStipple ( GLint factor , GLushort pattern ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPolygonMode )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonMode ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPolygonOffset )(GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffset ( GLfloat factor , GLfloat units ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPolygonStipple )(const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonStipple ( const GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetPolygonStipple )(GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPolygonStipple ( GLubyte * mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEdgeFlag )(GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlag ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEdgeFlagv )(const GLboolean *);
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagv ( const GLboolean * flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glScissor )(GLint, GLint, GLsizei, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glScissor ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClipPlane )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glClipPlane ( GLenum plane , const GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetClipPlane )(GLenum, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetClipPlane ( GLenum plane , GLdouble * equation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDrawBuffer )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReadBuffer )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glReadBuffer ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEnable )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glEnable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDisable )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glDisable ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glIsEnabled )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsEnabled ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEnableClientState )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDisableClientState )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableClientState ( GLenum cap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetBooleanv )(GLenum, GLboolean *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetBooleanv ( GLenum pname , GLboolean * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetDoublev )(GLenum, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDoublev ( GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetFloatv )(GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFloatv ( GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetIntegerv )(GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetIntegerv ( GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPushAttrib )(GLbitfield);
-
-/**
- * Original Function-Prototype :
- *
extern void glPushAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPopAttrib )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glPopAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPushClientAttrib )(GLbitfield);
-
-/**
- * Original Function-Prototype :
- *
extern void glPushClientAttrib ( GLbitfield mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPopClientAttrib )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glPopClientAttrib ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__glRenderMode )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern GLint glRenderMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLenum (CALLBACK * disp__glGetError )(void);
-
-/**
- * Original Function-Prototype :
- *
extern GLenum glGetError ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFinish )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glFinish ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFlush )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glFlush ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glHint )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glHint ( GLenum target , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClearDepth )(GLclampd);
-
-/**
- * Original Function-Prototype :
- *
extern void glClearDepth ( GLclampd depth ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDepthFunc )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthFunc ( GLenum func ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDepthMask )(GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthMask ( GLboolean flag ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDepthRange )(GLclampd, GLclampd);
-
-/**
- * Original Function-Prototype :
- *
extern void glDepthRange ( GLclampd near_val , GLclampd far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClearAccum )(GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glClearAccum ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glAccum )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glAccum ( GLenum op , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMatrixMode )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixMode ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glOrtho )(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glOrtho ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFrustum )(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glFrustum ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glViewport )(GLint, GLint, GLsizei, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glViewport ( GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPushMatrix )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glPushMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPopMatrix )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glPopMatrix ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadIdentity )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentity ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadMatrixd )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadMatrixf )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultMatrixd )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixd ( const GLdouble * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultMatrixf )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultMatrixf ( const GLfloat * m ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRotated )(GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glRotated ( GLdouble angle , GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRotatef )(GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glRotatef ( GLfloat angle , GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glScaled )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glScaled ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glScalef )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glScalef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTranslated )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslated ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTranslatef )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTranslatef ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glIsList )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeleteLists )(GLuint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteLists ( GLuint list , GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glGenLists )(GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenLists ( GLsizei range ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNewList )(GLuint, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glNewList ( GLuint list , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEndList )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glEndList ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCallList )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glCallList ( GLuint list ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCallLists )(GLsizei, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCallLists ( GLsizei n , GLenum type , const GLvoid * lists ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glListBase )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glListBase ( GLuint base ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBegin )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glBegin ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEnd )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glEnd ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex2d )(GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex2f )(GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex2i )(GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex2s )(GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex3d )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex3f )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex3i )(GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex3s )(GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex4d )(GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex4f )(GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex4i )(GLint, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex4s )(GLshort, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex2dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex2fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex2iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex2sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex3dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex3fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex3iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex3sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex4dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex4fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex4iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertex4sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertex4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3b )(GLbyte, GLbyte, GLbyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3b ( GLbyte nx , GLbyte ny , GLbyte nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3d )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3d ( GLdouble nx , GLdouble ny , GLdouble nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3f )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3f ( GLfloat nx , GLfloat ny , GLfloat nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3i )(GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3i ( GLint nx , GLint ny , GLint nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3s )(GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3s ( GLshort nx , GLshort ny , GLshort nz ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3bv )(const GLbyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexd )(GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexd ( GLdouble c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexf )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexf ( GLfloat c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexi )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexi ( GLint c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexs )(GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexs ( GLshort c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexub )(GLubyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexub ( GLubyte c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexdv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexdv ( const GLdouble * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexfv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexfv ( const GLfloat * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexiv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexiv ( const GLint * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexsv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexsv ( const GLshort * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexubv )(const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexubv ( const GLubyte * c ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3b )(GLbyte, GLbyte, GLbyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3b ( GLbyte red , GLbyte green , GLbyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3d )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3d ( GLdouble red , GLdouble green , GLdouble blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3f )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3f ( GLfloat red , GLfloat green , GLfloat blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3i )(GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3i ( GLint red , GLint green , GLint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3s )(GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3s ( GLshort red , GLshort green , GLshort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3ub )(GLubyte, GLubyte, GLubyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ub ( GLubyte red , GLubyte green , GLubyte blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3ui )(GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ui ( GLuint red , GLuint green , GLuint blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3us )(GLushort, GLushort, GLushort);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3us ( GLushort red , GLushort green , GLushort blue ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4b )(GLbyte, GLbyte, GLbyte, GLbyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4b ( GLbyte red , GLbyte green , GLbyte blue , GLbyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4d )(GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4d ( GLdouble red , GLdouble green , GLdouble blue , GLdouble alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4f )(GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4f ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4i )(GLint, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4i ( GLint red , GLint green , GLint blue , GLint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4s )(GLshort, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4s ( GLshort red , GLshort green , GLshort blue , GLshort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4ub )(GLubyte, GLubyte, GLubyte, GLubyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ub ( GLubyte red , GLubyte green , GLubyte blue , GLubyte alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4ui )(GLuint, GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ui ( GLuint red , GLuint green , GLuint blue , GLuint alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4us )(GLushort, GLushort, GLushort, GLushort);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4us ( GLushort red , GLushort green , GLushort blue , GLushort alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3bv )(const GLbyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3ubv )(const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3uiv )(const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3usv )(const GLushort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4bv )(const GLbyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4bv ( const GLbyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4ubv )(const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubv ( const GLubyte * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4uiv )(const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4uiv ( const GLuint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4usv )(const GLushort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4usv ( const GLushort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord1d )(GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1d ( GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord1f )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1f ( GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord1i )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1i ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord1s )(GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1s ( GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2d )(GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2d ( GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2f )(GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2f ( GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2i )(GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2i ( GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2s )(GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2s ( GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord3d )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3d ( GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord3f )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3f ( GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord3i )(GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3i ( GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord3s )(GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3s ( GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4d )(GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4d ( GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4f )(GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4f ( GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4i )(GLint, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4i ( GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4s )(GLshort, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4s ( GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord1dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord1fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord1iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord1sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord1sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord3dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord3fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord3iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord3sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos2d )(GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2d ( GLdouble x , GLdouble y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos2f )(GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2f ( GLfloat x , GLfloat y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos2i )(GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2i ( GLint x , GLint y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos2s )(GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2s ( GLshort x , GLshort y ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos3d )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3d ( GLdouble x , GLdouble y , GLdouble z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos3f )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3f ( GLfloat x , GLfloat y , GLfloat z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos3i )(GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3i ( GLint x , GLint y , GLint z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos3s )(GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3s ( GLshort x , GLshort y , GLshort z ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos4d )(GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos4f )(GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos4i )(GLint, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4i ( GLint x , GLint y , GLint z , GLint w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos4s )(GLshort, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos2dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos2fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos2iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos2sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos2sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos3dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos3fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos3iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos3sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos3sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos4dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4dv ( const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos4fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4fv ( const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos4iv )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4iv ( const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRasterPos4sv )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRasterPos4sv ( const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRectd )(GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glRectd ( GLdouble x1 , GLdouble y1 , GLdouble x2 , GLdouble y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRectf )(GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glRectf ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRecti )(GLint, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glRecti ( GLint x1 , GLint y1 , GLint x2 , GLint y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRects )(GLshort, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glRects ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRectdv )(const GLdouble *, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRectdv ( const GLdouble * v1 , const GLdouble * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRectfv )(const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRectfv ( const GLfloat * v1 , const GLfloat * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRectiv )(const GLint *, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRectiv ( const GLint * v1 , const GLint * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRectsv )(const GLshort *, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRectsv ( const GLshort * v1 , const GLshort * v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexPointer )(GLint, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalPointer )(GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorPointer )(GLint, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexPointer )(GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoordPointer )(GLint, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEdgeFlagPointer )(GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointer ( GLsizei stride , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetPointerv )(GLenum, GLvoid **);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointerv ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glArrayElement )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElement ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDrawArrays )(GLenum, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArrays ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDrawElements )(GLenum, GLsizei, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawElements ( GLenum mode , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glInterleavedArrays )(GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glInterleavedArrays ( GLenum format , GLsizei stride , const GLvoid * pointer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glShadeModel )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glShadeModel ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLightf )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glLightf ( GLenum light , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLighti )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glLighti ( GLenum light , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLightfv )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLightfv ( GLenum light , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLightiv )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLightiv ( GLenum light , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetLightfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightfv ( GLenum light , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetLightiv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLightiv ( GLenum light , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLightModelf )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLightModeli )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeli ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLightModelfv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModelfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLightModeliv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLightModeliv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMaterialf )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialf ( GLenum face , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMateriali )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMateriali ( GLenum face , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMaterialfv )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialfv ( GLenum face , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMaterialiv )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMaterialiv ( GLenum face , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMaterialfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialfv ( GLenum face , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMaterialiv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMaterialiv ( GLenum face , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorMaterial )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorMaterial ( GLenum face , GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelZoom )(GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelZoom ( GLfloat xfactor , GLfloat yfactor ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelStoref )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStoref ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelStorei )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelStorei ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTransferf )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTransferi )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransferi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelMapfv )(GLenum, GLint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapfv ( GLenum map , GLint mapsize , const GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelMapuiv )(GLenum, GLint, const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapuiv ( GLenum map , GLint mapsize , const GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelMapusv )(GLenum, GLint, const GLushort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelMapusv ( GLenum map , GLint mapsize , const GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetPixelMapfv )(GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapfv ( GLenum map , GLfloat * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetPixelMapuiv )(GLenum, GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapuiv ( GLenum map , GLuint * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetPixelMapusv )(GLenum, GLushort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelMapusv ( GLenum map , GLushort * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBitmap )(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glBitmap ( GLsizei width , GLsizei height , GLfloat xorig , GLfloat yorig , GLfloat xmove , GLfloat ymove , const GLubyte * bitmap ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReadPixels )(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReadPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDrawPixels )(GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawPixels ( GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyPixels )(GLint, GLint, GLsizei, GLsizei, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glStencilFunc )(GLenum, GLint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilFunc ( GLenum func , GLint ref , GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glStencilMask )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilMask ( GLuint mask ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glStencilOp )(GLenum, GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glStencilOp ( GLenum fail , GLenum zfail , GLenum zpass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClearStencil )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glClearStencil ( GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexGend )(GLenum, GLenum, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGend ( GLenum coord , GLenum pname , GLdouble param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexGenf )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenf ( GLenum coord , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexGeni )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeni ( GLenum coord , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexGendv )(GLenum, GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGendv ( GLenum coord , GLenum pname , const GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexGenfv )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGenfv ( GLenum coord , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexGeniv )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexGeniv ( GLenum coord , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexGendv )(GLenum, GLenum, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGendv ( GLenum coord , GLenum pname , GLdouble * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexGenfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGenfv ( GLenum coord , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexGeniv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexGeniv ( GLenum coord , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexEnvf )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexEnvi )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvi ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexEnvfv )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnvfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexEnviv )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexEnviv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexEnvfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnvfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexEnviv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexEnviv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexParameterf )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterf ( GLenum target , GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexParameteri )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteri ( GLenum target , GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexParameterfv )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexParameteriv )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexParameterfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexParameteriv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexLevelParameterfv )(GLenum, GLint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameterfv ( GLenum target , GLint level , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexLevelParameteriv )(GLenum, GLint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexLevelParameteriv ( GLenum target , GLint level , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexImage1D )(GLenum, GLint, GLint, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage1D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexImage2D )(GLenum, GLint, GLint, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage2D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLsizei height , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexImage )(GLenum, GLint, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexImage ( GLenum target , GLint level , GLenum format , GLenum type , GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGenTextures )(GLsizei, GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTextures ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeleteTextures )(GLsizei, const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTextures ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBindTexture )(GLenum, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTexture ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPrioritizeTextures )(GLsizei, const GLuint *, const GLclampf *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTextures ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glAreTexturesResident )(GLsizei, const GLuint *, GLboolean *);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResident ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glIsTexture )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTexture ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexSubImage1D )(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexSubImage2D )(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexImage1D )(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexImage2D )(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height , GLint border ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexSubImage1D )(GLenum, GLint, GLint, GLint, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexSubImage2D )(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMap1d )(GLenum, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint stride , GLint order , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMap1f )(GLenum, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMap1f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint stride , GLint order , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMap2d )(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint ustride , GLint uorder , GLdouble v1 , GLdouble v2 , GLint vstride , GLint vorder , const GLdouble * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMap2f )(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMap2f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint ustride , GLint uorder , GLfloat v1 , GLfloat v2 , GLint vstride , GLint vorder , const GLfloat * points ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMapdv )(GLenum, GLenum, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapdv ( GLenum target , GLenum query , GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMapfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapfv ( GLenum target , GLenum query , GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMapiv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapiv ( GLenum target , GLenum query , GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalCoord1d )(GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1d ( GLdouble u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalCoord1f )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1f ( GLfloat u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalCoord1dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalCoord1fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord1fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalCoord2d )(GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2d ( GLdouble u , GLdouble v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalCoord2f )(GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2f ( GLfloat u , GLfloat v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalCoord2dv )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2dv ( const GLdouble * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalCoord2fv )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalCoord2fv ( const GLfloat * u ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMapGrid1d )(GLint, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1d ( GLint un , GLdouble u1 , GLdouble u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMapGrid1f )(GLint, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid1f ( GLint un , GLfloat u1 , GLfloat u2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMapGrid2d )(GLint, GLdouble, GLdouble, GLint, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2d ( GLint un , GLdouble u1 , GLdouble u2 , GLint vn , GLdouble v1 , GLdouble v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMapGrid2f )(GLint, GLfloat, GLfloat, GLint, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMapGrid2f ( GLint un , GLfloat u1 , GLfloat u2 , GLint vn , GLfloat v1 , GLfloat v2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalPoint1 )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint1 ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalPoint2 )(GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalPoint2 ( GLint i , GLint j ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalMesh1 )(GLenum, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh1 ( GLenum mode , GLint i1 , GLint i2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalMesh2 )(GLenum, GLint, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMesh2 ( GLenum mode , GLint i1 , GLint i2 , GLint j1 , GLint j2 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogf )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogf ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogi )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogi ( GLenum pname , GLint param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogfv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogfv ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogiv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogiv ( GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFeedbackBuffer )(GLsizei, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFeedbackBuffer ( GLsizei size , GLenum type , GLfloat * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPassThrough )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPassThrough ( GLfloat token ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSelectBuffer )(GLsizei, GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSelectBuffer ( GLsizei size , GLuint * buffer ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glInitNames )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glInitNames ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadName )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPushName )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glPushName ( GLuint name ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPopName )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glPopName ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDrawRangeElements )(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElements ( GLenum mode , GLuint start , GLuint end , GLsizei count , GLenum type , const GLvoid * indices ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexImage3D )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3D ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexSubImage3D )(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexSubImage3D )(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorTable )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTable ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorSubTable )(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTable ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorTableParameteriv )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorTableParameterfv )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyColorSubTable )(GLenum, GLsizei, GLint, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTable ( GLenum target , GLsizei start , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyColorTable )(GLenum, GLenum, GLint, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTable ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetColorTable )(GLenum, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTable ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetColorTableParameterfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetColorTableParameteriv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBlendEquation )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquation ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBlendColor )(GLclampf, GLclampf, GLclampf, GLclampf);
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glHistogram )(GLenum, GLsizei, GLenum, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogram ( GLenum target , GLsizei width , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glResetHistogram )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogram ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetHistogram )(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogram ( GLenum target , GLboolean reset , GLenum format , GLenum type , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetHistogramParameterfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetHistogramParameteriv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMinmax )(GLenum, GLenum, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmax ( GLenum target , GLenum internalformat , GLboolean sink ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glResetMinmax )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmax ( GLenum target ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMinmax )(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmax ( GLenum target , GLboolean reset , GLenum format , GLenum types , GLvoid * values ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMinmaxParameterfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMinmaxParameteriv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionFilter1D )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1D ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionFilter2D )(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionParameterf )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterf ( GLenum target , GLenum pname , GLfloat params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionParameterfv )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionParameteri )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteri ( GLenum target , GLenum pname , GLint params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionParameteriv )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriv ( GLenum target , GLenum pname , const GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyConvolutionFilter1D )(GLenum, GLenum, GLint, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyConvolutionFilter2D )(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetConvolutionFilter )(GLenum, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilter ( GLenum target , GLenum format , GLenum type , GLvoid * image ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetConvolutionParameterfv )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetConvolutionParameteriv )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameteriv ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSeparableFilter2D )(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * row , const GLvoid * column ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetSeparableFilter )(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilter ( GLenum target , GLenum format , GLenum type , GLvoid * row , GLvoid * column , GLvoid * span ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glActiveTexture )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClientActiveTexture )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTexture ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexImage1D )(GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexImage2D )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexImage3D )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexSubImage1D )(GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexSubImage2D )(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLsizei imageSize , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexSubImage3D )(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetCompressedTexImage )(GLenum, GLint, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImage ( GLenum target , GLint lod , GLvoid * img ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1d )(GLenum, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1d ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1dv )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1f )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1f ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1fv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1i )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1i ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1iv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1s )(GLenum, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1s ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1sv )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2d )(GLenum, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2d ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2dv )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2f )(GLenum, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2f ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2fv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2i )(GLenum, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2i ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2iv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2s )(GLenum, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2s ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2sv )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3d )(GLenum, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3d ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3dv )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3f )(GLenum, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3f ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3fv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3i )(GLenum, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3i ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3iv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3s )(GLenum, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3s ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3sv )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4d )(GLenum, GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4d ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4dv )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dv ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4f )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4f ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4fv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fv ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4i )(GLenum, GLint, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4i ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4iv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iv ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4s )(GLenum, GLshort, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4s ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4sv )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sv ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadTransposeMatrixd )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadTransposeMatrixf )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultTransposeMatrixd )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixd ( const GLdouble m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultTransposeMatrixf )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixf ( const GLfloat m [ 16 ] ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSampleCoverage )(GLclampf, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverage ( GLclampf value , GLboolean invert ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSamplePass )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePass ( GLenum pass ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glActiveTextureARB )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClientActiveTextureARB )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveTextureARB ( GLenum texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1dARB )(GLenum, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dARB ( GLenum target , GLdouble s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1dvARB )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1fARB )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fARB ( GLenum target , GLfloat s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1fvARB )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1iARB )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1iARB ( GLenum target , GLint s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1ivARB )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1sARB )(GLenum, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1sARB ( GLenum target , GLshort s ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord1svARB )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord1svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2dARB )(GLenum, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dARB ( GLenum target , GLdouble s , GLdouble t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2dvARB )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2fARB )(GLenum, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fARB ( GLenum target , GLfloat s , GLfloat t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2fvARB )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2iARB )(GLenum, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2iARB ( GLenum target , GLint s , GLint t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2ivARB )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2sARB )(GLenum, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2sARB ( GLenum target , GLshort s , GLshort t ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord2svARB )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord2svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3dARB )(GLenum, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3dvARB )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3fARB )(GLenum, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3fvARB )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3iARB )(GLenum, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3iARB ( GLenum target , GLint s , GLint t , GLint r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3ivARB )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3sARB )(GLenum, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3sARB ( GLenum target , GLshort s , GLshort t , GLshort r ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord3svARB )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord3svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4dARB )(GLenum, GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4dvARB )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4dvARB ( GLenum target , const GLdouble * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4fARB )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4fvARB )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4fvARB ( GLenum target , const GLfloat * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4iARB )(GLenum, GLint, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4iARB ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4ivARB )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4ivARB ( GLenum target , const GLint * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4sARB )(GLenum, GLshort, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4sARB ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiTexCoord4svARB )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiTexCoord4svARB ( GLenum target , const GLshort * v ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBlendColorEXT )(GLclampf, GLclampf, GLclampf, GLclampf);
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendColorEXT ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPolygonOffsetEXT )(GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPolygonOffsetEXT ( GLfloat factor , GLfloat bias ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexImage3DEXT )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage3DEXT ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexSubImage3DEXT )(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexSubImage3DEXT )(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage3DEXT ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGenTexturesEXT )(GLsizei, GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGenTexturesEXT ( GLsizei n , GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeleteTexturesEXT )(GLsizei, const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteTexturesEXT ( GLsizei n , const GLuint * textures ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBindTextureEXT )(GLenum, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glBindTextureEXT ( GLenum target , GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPrioritizeTexturesEXT )(GLsizei, const GLuint *, const GLclampf *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPrioritizeTexturesEXT ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glAreTexturesResidentEXT )(GLsizei, const GLuint *, GLboolean *);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreTexturesResidentEXT ( GLsizei n , const GLuint * textures , GLboolean * residences ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glIsTextureEXT )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsTextureEXT ( GLuint texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexPointerEXT )(GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalPointerEXT )(GLenum, GLsizei, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorPointerEXT )(GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexPointerEXT )(GLenum, GLsizei, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoordPointerEXT )(GLint, GLenum, GLsizei, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEdgeFlagPointerEXT )(GLsizei, GLsizei, const GLboolean *);
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerEXT ( GLsizei stride , GLsizei count , const GLboolean * ptr ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetPointervEXT )(GLenum, GLvoid **);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPointervEXT ( GLenum pname , GLvoid * * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glArrayElementEXT )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayElementEXT ( GLint i ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDrawArraysEXT )(GLenum, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawArraysEXT ( GLenum mode , GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBlendEquationEXT )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendEquationEXT ( GLenum mode ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPointParameterfEXT )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfEXT ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPointParameterfvEXT )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvEXT ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPointParameterfSGIS )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfSGIS ( GLenum pname , GLfloat param ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPointParameterfvSGIS )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvSGIS ( GLenum pname , const GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorTableEXT )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableEXT ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorSubTableEXT )(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorSubTableEXT ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetColorTableEXT )(GLenum, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableEXT ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetColorTableParameterfvEXT )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvEXT ( GLenum target , GLenum pname , GLfloat * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetColorTableParameterivEXT )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivEXT ( GLenum target , GLenum pname , GLint * params ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLockArraysEXT )(GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glLockArraysEXT ( GLint first , GLsizei count ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glUnlockArraysEXT )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glUnlockArraysEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadTransposeMatrixfARB )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadTransposeMatrixdARB )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultTransposeMatrixfARB )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixfARB ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultTransposeMatrixdARB )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultTransposeMatrixdARB ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSampleCoverageARB )(GLclampf, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleCoverageARB ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexImage3DARB )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage3DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexImage2DARB )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage2DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexImage1DARB )(GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexImage1DARB ( GLenum , GLint , GLenum , GLsizei , GLint , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexSubImage3DARB )(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage3DARB ( GLenum , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexSubImage2DARB )(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage2DARB ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCompressedTexSubImage1DARB )(GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCompressedTexSubImage1DARB ( GLenum , GLint , GLint , GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetCompressedTexImageARB )(GLenum, GLint, void *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCompressedTexImageARB ( GLenum , GLint , void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWeightbvARB )(GLint, const GLbyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightbvARB ( GLint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWeightsvARB )(GLint, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightsvARB ( GLint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWeightivARB )(GLint, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightivARB ( GLint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWeightfvARB )(GLint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightfvARB ( GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWeightdvARB )(GLint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightdvARB ( GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWeightubvARB )(GLint, const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWeightusvARB )(GLint, const GLushort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWeightuivARB )(GLint, const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWeightPointerARB )(GLint, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glWeightPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexBlendARB )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCurrentPaletteMatrixARB )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glCurrentPaletteMatrixARB ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMatrixIndexubvARB )(GLint, const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexubvARB ( GLint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMatrixIndexusvARB )(GLint, const GLushort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexusvARB ( GLint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMatrixIndexuivARB )(GLint, const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexuivARB ( GLint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMatrixIndexPointerARB )(GLint, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMatrixIndexPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexFilterFuncSGIS )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexFilterFuncSGIS ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexFilterFuncSGIS )(GLenum, GLenum, GLsizei, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexFilterFuncSGIS ( GLenum , GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexSubImage1DEXT )(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage1DEXT ( GLenum , GLint , GLint , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexSubImage2DEXT )(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexImage1DEXT )(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage1DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexImage2DEXT )(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexImage2DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexSubImage1DEXT )(GLenum, GLint, GLint, GLint, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage1DEXT ( GLenum , GLint , GLint , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyTexSubImage2DEXT )(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetHistogramEXT )(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetHistogramParameterfvEXT )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetHistogramParameterivEXT )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetHistogramParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMinmaxEXT )(GLenum, GLboolean, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMinmaxParameterfvEXT )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMinmaxParameterivEXT )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMinmaxParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glHistogramEXT )(GLenum, GLsizei, GLenum, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glHistogramEXT ( GLenum , GLsizei , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMinmaxEXT )(GLenum, GLenum, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glMinmaxEXT ( GLenum , GLenum , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glResetHistogramEXT )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glResetHistogramEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glResetMinmaxEXT )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glResetMinmaxEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionFilter1DEXT )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter1DEXT ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionFilter2DEXT )(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionParameterfEXT )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionParameterfvEXT )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionParameteriEXT )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glConvolutionParameterivEXT )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glConvolutionParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyConvolutionFilter1DEXT )(GLenum, GLenum, GLint, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter1DEXT ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyConvolutionFilter2DEXT )(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyConvolutionFilter2DEXT ( GLenum , GLenum , GLint , GLint , GLsizei , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetConvolutionFilterEXT )(GLenum, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionFilterEXT ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetConvolutionParameterfvEXT )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterfvEXT ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetConvolutionParameterivEXT )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetConvolutionParameterivEXT ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetSeparableFilterEXT )(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSeparableFilterEXT ( GLenum , GLenum , GLenum , GLvoid * , GLvoid * , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSeparableFilter2DEXT )(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSeparableFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorTableSGI )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableSGI ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorTableParameterfvSGI )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterfvSGI ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorTableParameterivSGI )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorTableParameterivSGI ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyColorTableSGI )(GLenum, GLenum, GLint, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorTableSGI ( GLenum , GLenum , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetColorTableSGI )(GLenum, GLenum, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableSGI ( GLenum , GLenum , GLenum , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetColorTableParameterfvSGI )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterfvSGI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetColorTableParameterivSGI )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetColorTableParameterivSGI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTexGenSGIX )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenSGIX ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTexGenParameteriSGIS )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameteriSGIS ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTexGenParameterivSGIS )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterivSGIS ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTexGenParameterfSGIS )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfSGIS ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTexGenParameterfvSGIS )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTexGenParameterfvSGIS ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetPixelTexGenParameterivSGIS )(GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterivSGIS ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetPixelTexGenParameterfvSGIS )(GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetPixelTexGenParameterfvSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexImage4DSGIS )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexImage4DSGIS ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLsizei , GLint , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexSubImage4DSGIS )(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexSubImage4DSGIS ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDetailTexFuncSGIS )(GLenum, GLsizei, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDetailTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetDetailTexFuncSGIS )(GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetDetailTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSharpenTexFuncSGIS )(GLenum, GLsizei, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSharpenTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetSharpenTexFuncSGIS )(GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetSharpenTexFuncSGIS ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSampleMaskSGIS )(GLclampf, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskSGIS ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSamplePatternSGIS )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternSGIS ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSpriteParameterfSGIX )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSpriteParameterfvSGIX )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSpriteParameteriSGIX )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameteriSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSpriteParameterivSGIX )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSpriteParameterivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPointParameterfARB )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfARB ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPointParameterfvARB )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPointParameterfvARB ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__glGetInstrumentsSGIX )(void);
-
-/**
- * Original Function-Prototype :
- *
extern GLint glGetInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glInstrumentsBufferSGIX )(GLsizei, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glInstrumentsBufferSGIX ( GLsizei , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__glPollInstrumentsSGIX )(GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollInstrumentsSGIX ( GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReadInstrumentsSGIX )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glReadInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glStartInstrumentsSGIX )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glStartInstrumentsSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glStopInstrumentsSGIX )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glStopInstrumentsSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFrameZoomSGIX )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glFrameZoomSGIX ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTagSampleBufferSGIX )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glTagSampleBufferSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeformationMap3dSGIX )(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3dSGIX ( GLenum , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeformationMap3fSGIX )(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformationMap3fSGIX ( GLenum , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeformSGIX )(GLbitfield);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeformSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadIdentityDeformationMapSGIX )(GLbitfield);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadIdentityDeformationMapSGIX ( GLbitfield ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReferencePlaneSGIX )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReferencePlaneSGIX ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFlushRasterSGIX )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushRasterSGIX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogFuncSGIS )(GLsizei, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogFuncSGIS ( GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetFogFuncSGIS )(GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFogFuncSGIS ( GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glImageTransformParameteriHP )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameteriHP ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glImageTransformParameterfHP )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfHP ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glImageTransformParameterivHP )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterivHP ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glImageTransformParameterfvHP )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glImageTransformParameterfvHP ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetImageTransformParameterivHP )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterivHP ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetImageTransformParameterfvHP )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetImageTransformParameterfvHP ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCopyColorSubTableEXT )(GLenum, GLsizei, GLint, GLint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glCopyColorSubTableEXT ( GLenum , GLsizei , GLint , GLint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glHintPGI )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glHintPGI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetListParameterfvSGIX )(GLuint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterfvSGIX ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetListParameterivSGIX )(GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetListParameterivSGIX ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glListParameterfSGIX )(GLuint, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfSGIX ( GLuint , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glListParameterfvSGIX )(GLuint, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterfvSGIX ( GLuint , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glListParameteriSGIX )(GLuint, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameteriSGIX ( GLuint , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glListParameterivSGIX )(GLuint, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glListParameterivSGIX ( GLuint , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexMaterialEXT )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexFuncEXT )(GLenum, GLclampf);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexFuncEXT ( GLenum , GLclampf ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCullParameterdvEXT )(GLenum, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterdvEXT ( GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCullParameterfvEXT )(GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCullParameterfvEXT ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentColorMaterialSGIX )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentColorMaterialSGIX ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentLightfSGIX )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentLightfvSGIX )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentLightiSGIX )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentLightivSGIX )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentLightModelfSGIX )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfSGIX ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentLightModelfvSGIX )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelfvSGIX ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentLightModeliSGIX )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModeliSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentLightModelivSGIX )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentLightModelivSGIX ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentMaterialfSGIX )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfSGIX ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentMaterialfvSGIX )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialfvSGIX ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentMaterialiSGIX )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialiSGIX ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFragmentMaterialivSGIX )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFragmentMaterialivSGIX ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetFragmentLightfvSGIX )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetFragmentLightivSGIX )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentLightivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetFragmentMaterialfvSGIX )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialfvSGIX ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetFragmentMaterialivSGIX )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFragmentMaterialivSGIX ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLightEnviSGIX )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glLightEnviSGIX ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDrawRangeElementsEXT )(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDrawRangeElementsEXT ( GLenum , GLuint , GLuint , GLsizei , GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glApplyTextureEXT )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glApplyTextureEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTextureLightEXT )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureLightEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTextureMaterialEXT )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureMaterialEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glAsyncMarkerSGIX )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__glFinishAsyncSGIX )(GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint glFinishAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__glPollAsyncSGIX )(GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint glPollAsyncSGIX ( GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glGenAsyncMarkersSGIX )(GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenAsyncMarkersSGIX ( GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeleteAsyncMarkersSGIX )(GLuint, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteAsyncMarkersSGIX ( GLuint , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glIsAsyncMarkerSGIX )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsAsyncMarkerSGIX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexPointervINTEL )(GLint, GLenum, const GLvoid **);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalPointervINTEL )(GLenum, const GLvoid **);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointervINTEL ( GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorPointervINTEL )(GLint, GLenum, const GLvoid **);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoordPointervINTEL )(GLint, GLenum, const GLvoid **);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointervINTEL ( GLint , GLenum , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTransformParameteriEXT )(GLenum, GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameteriEXT ( GLenum , GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTransformParameterfEXT )(GLenum, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfEXT ( GLenum , GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTransformParameterivEXT )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterivEXT ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPixelTransformParameterfvEXT )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glPixelTransformParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3bEXT )(GLbyte, GLbyte, GLbyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3bvEXT )(const GLbyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3dEXT )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3dvEXT )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3fEXT )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3fvEXT )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3iEXT )(GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3ivEXT )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3sEXT )(GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3svEXT )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3ubEXT )(GLubyte, GLubyte, GLubyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubEXT ( GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3ubvEXT )(const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3ubvEXT ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3uiEXT )(GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uiEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3uivEXT )(const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3uivEXT ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3usEXT )(GLushort, GLushort, GLushort);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usEXT ( GLushort , GLushort , GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColor3usvEXT )(const GLushort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColor3usvEXT ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColorPointerEXT )(GLint, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerEXT ( GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTextureNormalEXT )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureNormalEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiDrawArraysEXT )(GLenum, GLint *, GLsizei *, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawArraysEXT ( GLenum , GLint * , GLsizei * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiDrawElementsEXT )(GLenum, const GLsizei *, GLenum, const GLvoid **, GLsizei);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiDrawElementsEXT ( GLenum , const GLsizei * , GLenum , const GLvoid * * , GLsizei ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogCoordfEXT )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogCoordfvEXT )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogCoorddEXT )(GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddEXT ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogCoorddvEXT )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoorddvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogCoordPointerEXT )(GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3bEXT )(GLbyte, GLbyte, GLbyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3bvEXT )(const GLbyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3dEXT )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3dvEXT )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3fEXT )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3fvEXT )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3iEXT )(GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3ivEXT )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3sEXT )(GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangent3svEXT )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangent3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3bEXT )(GLbyte, GLbyte, GLbyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bEXT ( GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3bvEXT )(const GLbyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3bvEXT ( const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3dEXT )(GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dEXT ( GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3dvEXT )(const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3dvEXT ( const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3fEXT )(GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fEXT ( GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3fvEXT )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3fvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3iEXT )(GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3iEXT ( GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3ivEXT )(const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3ivEXT ( const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3sEXT )(GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3sEXT ( GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormal3svEXT )(const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormal3svEXT ( const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTangentPointerEXT )(GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTangentPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBinormalPointerEXT )(GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glBinormalPointerEXT ( GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFinishTextureSUNX )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishTextureSUNX ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGlobalAlphaFactorbSUN )(GLbyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorbSUN ( GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGlobalAlphaFactorsSUN )(GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorsSUN ( GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGlobalAlphaFactoriSUN )(GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoriSUN ( GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGlobalAlphaFactorfSUN )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorfSUN ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGlobalAlphaFactordSUN )(GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactordSUN ( GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGlobalAlphaFactorubSUN )(GLubyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGlobalAlphaFactorusSUN )(GLushort);
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactorusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGlobalAlphaFactoruiSUN )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glGlobalAlphaFactoruiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiSUN )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiSUN ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeusSUN )(GLushort);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusSUN ( GLushort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeubSUN )(GLubyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubSUN ( GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuivSUN )(const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuivSUN ( const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeusvSUN )(const GLushort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeusvSUN ( const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeubvSUN )(const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeubvSUN ( const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodePointerSUN )(GLenum, GLsizei, const GLvoid **);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodePointerSUN ( GLenum , GLsizei , const GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4ubVertex2fSUN )(GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4ubVertex2fvSUN )(const GLubyte *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex2fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4ubVertex3fSUN )(GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4ubVertex3fvSUN )(const GLubyte *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4ubVertex3fvSUN ( const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor3fVertex3fvSUN )(const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormal3fVertex3fvSUN )(const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4fNormal3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColor4fNormal3fVertex3fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fVertex3fvSUN )(const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4fVertex4fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4fVertex4fvSUN )(const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fVertex4fvSUN ( const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fColor4ubVertex3fSUN )(GLfloat, GLfloat, GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fSUN ( GLfloat , GLfloat , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fColor4ubVertex3fvSUN )(const GLfloat *, const GLubyte *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4ubVertex3fvSUN ( const GLfloat * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fColor3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fColor3fVertex3fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fNormal3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fColor4fNormal3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
- LIBAPI void (CALLBACK * disp__glTexCoord2fNormal3fVertex3fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
+ *
+ */
+ LIBAPI void (CALLBACK * disp__glTexCoord2fNormal3fVertex3fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *);
+
+/**
+ * Original Function-Prototype :
+ *
extern void glTexCoord2fColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord2fColor4fNormal3fVertex3fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4fColor4fNormal3fVertex4fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoord4fColor4fNormal3fVertex4fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoord4fColor4fNormal3fVertex4fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiVertex3fvSUN )(const GLenum *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiVertex3fvSUN ( const GLenum * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiColor4ubVertex3fSUN )(GLenum, GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fSUN ( GLenum , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiColor4ubVertex3fvSUN )(const GLenum *, const GLubyte *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4ubVertex3fvSUN ( const GLenum * , const GLubyte * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiColor3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiColor3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiNormal3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiNormal3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiColor4fNormal3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiColor4fNormal3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiTexCoord2fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiTexCoord2fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBlendFuncSeparateEXT )(GLenum, GLenum, GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateEXT ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBlendFuncSeparateINGR )(GLenum, GLenum, GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glBlendFuncSeparateINGR ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexWeightfEXT )(GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfEXT ( GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexWeightfvEXT )(const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightfvEXT ( const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexWeightPointerEXT )(GLsizei, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexWeightPointerEXT ( GLsizei , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFlushVertexArrayRangeNV )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glFlushVertexArrayRangeNV ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexArrayRangeNV )(GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexArrayRangeNV ( GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCombinerParameterfvNV )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfvNV ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCombinerParameterfNV )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterfNV ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCombinerParameterivNV )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameterivNV ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCombinerParameteriNV )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerParameteriNV ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCombinerInputNV )(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerInputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCombinerOutputNV )(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLboolean, GLboolean, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerOutputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFinalCombinerInputNV )(GLenum, GLenum, GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glFinalCombinerInputNV ( GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetCombinerInputParameterfvNV )(GLenum, GLenum, GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterfvNV ( GLenum , GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetCombinerInputParameterivNV )(GLenum, GLenum, GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerInputParameterivNV ( GLenum , GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetCombinerOutputParameterfvNV )(GLenum, GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterfvNV ( GLenum , GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetCombinerOutputParameterivNV )(GLenum, GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerOutputParameterivNV ( GLenum , GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetFinalCombinerInputParameterfvNV )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetFinalCombinerInputParameterivNV )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFinalCombinerInputParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiModeDrawArraysIBM )(GLenum, const GLint *, const GLsizei *, GLsizei, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawArraysIBM ( GLenum , const GLint * , const GLsizei * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMultiModeDrawElementsIBM )(const GLenum *, const GLsizei *, GLenum, const GLvoid **, GLsizei, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glMultiModeDrawElementsIBM ( const GLenum * , const GLsizei * , GLenum , const GLvoid * * , GLsizei , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorPointerListIBM )(GLint, GLenum, GLint, const GLvoid **, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSecondaryColorPointerListIBM )(GLint, GLenum, GLint, const GLvoid **, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glSecondaryColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEdgeFlagPointerListIBM )(GLint, const GLboolean **, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glEdgeFlagPointerListIBM ( GLint , const GLboolean * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFogCoordPointerListIBM )(GLenum, GLint, const GLvoid **, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glFogCoordPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIndexPointerListIBM )(GLenum, GLint, const GLvoid **, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glIndexPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalPointerListIBM )(GLenum, GLint, const GLvoid **, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexCoordPointerListIBM )(GLint, GLenum, GLint, const GLvoid **, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexCoordPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexPointerListIBM )(GLint, GLenum, GLint, const GLvoid **, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTbufferMask3DFX )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glTbufferMask3DFX ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSampleMaskEXT )(GLclampf, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMaskEXT ( GLclampf , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSamplePatternEXT )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glSamplePatternEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTextureColorMaskSGIS )(GLboolean, GLboolean, GLboolean, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void glTextureColorMaskSGIS ( GLboolean , GLboolean , GLboolean , GLboolean ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glIglooInterfaceSGIX )(GLenum, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glIglooInterfaceSGIX ( GLenum , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGenFencesNV )(GLsizei, GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGenFencesNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeleteFencesNV )(GLsizei, const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFencesNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSetFenceNV )(GLuint, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFenceNV ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glTestFenceNV )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glTestFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glFinishFenceNV )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glFinishFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glIsFenceNV )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsFenceNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetFenceivNV )(GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetFenceivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMapControlPointsNV )(GLenum, GLuint, GLenum, GLsizei, GLsizei, GLint, GLint, GLboolean, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLint , GLint , GLboolean , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMapParameterivNV )(GLenum, GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterivNV ( GLenum , GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glMapParameterfvNV )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glMapParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMapControlPointsNV )(GLenum, GLuint, GLenum, GLsizei, GLsizei, GLboolean, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLboolean , GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMapParameterivNV )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterivNV ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMapParameterfvNV )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMapAttribParameterivNV )(GLenum, GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetMapAttribParameterfvNV )(GLenum, GLuint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetMapAttribParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEvalMapsNV )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glEvalMapsNV ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glCombinerStageParameterfvNV )(GLenum, GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glCombinerStageParameterfvNV ( GLenum , GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetCombinerStageParameterfvNV )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetCombinerStageParameterfvNV ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBindProgramNV )(GLenum, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glBindProgramNV ( GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeleteProgramsNV )(GLsizei, const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glExecuteProgramNV )(GLenum, GLuint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glExecuteProgramNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGenProgramsNV )(GLsizei, GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGenProgramsNV ( GLsizei , GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glAreProgramsResidentNV )(GLsizei, const GLuint *, GLboolean *);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glAreProgramsResidentNV ( GLsizei , const GLuint * , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glRequestResidentProgramsNV )(GLsizei, const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glRequestResidentProgramsNV ( GLsizei , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetProgramParameterfvNV )(GLenum, GLuint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetProgramParameterdvNV )(GLenum, GLuint, GLenum, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramParameterdvNV ( GLenum , GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetProgramivNV )(GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetProgramStringNV )(GLuint, GLenum, GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetProgramStringNV ( GLuint , GLenum , GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTrackMatrixivNV )(GLenum, GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTrackMatrixivNV ( GLenum , GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVertexAttribdvNV )(GLuint, GLenum, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribdvNV ( GLuint , GLenum , GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVertexAttribfvNV )(GLuint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribfvNV ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVertexAttribivNV )(GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribivNV ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVertexAttribPointervNV )(GLuint, GLenum, GLvoid **);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVertexAttribPointervNV ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glIsProgramNV )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsProgramNV ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glLoadProgramNV )(GLenum, GLuint, GLsizei, const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glLoadProgramNV ( GLenum , GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glProgramParameter4fNV )(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fNV ( GLenum , GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glProgramParameter4dNV )(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dNV ( GLenum , GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glProgramParameter4dvNV )(GLenum, GLuint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4dvNV ( GLenum , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glProgramParameter4fvNV )(GLenum, GLuint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameter4fvNV ( GLenum , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glProgramParameters4dvNV )(GLenum, GLuint, GLuint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4dvNV ( GLenum , GLuint , GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glProgramParameters4fvNV )(GLenum, GLuint, GLuint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glProgramParameters4fvNV ( GLenum , GLuint , GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTrackMatrixNV )(GLenum, GLuint, GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glTrackMatrixNV ( GLenum , GLuint , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribPointerNV )(GLuint, GLint, GLenum, GLsizei, const GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribPointerNV ( GLuint , GLint , GLenum , GLsizei , const GLvoid * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib1sNV )(GLuint, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1sNV ( GLuint , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib1fNV )(GLuint, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fNV ( GLuint , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib1dNV )(GLuint, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dNV ( GLuint , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib2sNV )(GLuint, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2sNV ( GLuint , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib2fNV )(GLuint, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fNV ( GLuint , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib2dNV )(GLuint, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dNV ( GLuint , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib3sNV )(GLuint, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3sNV ( GLuint , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib3fNV )(GLuint, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fNV ( GLuint , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib3dNV )(GLuint, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dNV ( GLuint , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib4sNV )(GLuint, GLshort, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4sNV ( GLuint , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib4fNV )(GLuint, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fNV ( GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib4dNV )(GLuint, GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dNV ( GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib4ubNV )(GLuint, GLubyte, GLubyte, GLubyte, GLubyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubNV ( GLuint , GLubyte , GLubyte , GLubyte , GLubyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib1svNV )(GLuint, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib1fvNV )(GLuint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib1dvNV )(GLuint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib1dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib2svNV )(GLuint, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib2fvNV )(GLuint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib2dvNV )(GLuint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib2dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib3svNV )(GLuint, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib3fvNV )(GLuint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib3dvNV )(GLuint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib3dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib4svNV )(GLuint, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4svNV ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib4fvNV )(GLuint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4fvNV ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib4dvNV )(GLuint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4dvNV ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttrib4ubvNV )(GLuint, const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttrib4ubvNV ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs1svNV )(GLuint, GLsizei, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs1fvNV )(GLuint, GLsizei, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs1dvNV )(GLuint, GLsizei, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs1dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs2svNV )(GLuint, GLsizei, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs2fvNV )(GLuint, GLsizei, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs2dvNV )(GLuint, GLsizei, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs2dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs3svNV )(GLuint, GLsizei, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs3fvNV )(GLuint, GLsizei, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs3dvNV )(GLuint, GLsizei, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs3dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs4svNV )(GLuint, GLsizei, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4svNV ( GLuint , GLsizei , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs4fvNV )(GLuint, GLsizei, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4fvNV ( GLuint , GLsizei , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs4dvNV )(GLuint, GLsizei, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4dvNV ( GLuint , GLsizei , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexAttribs4ubvNV )(GLuint, GLsizei, const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexAttribs4ubvNV ( GLuint , GLsizei , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexBumpParameterivATI )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterivATI ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glTexBumpParameterfvATI )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glTexBumpParameterfvATI ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexBumpParameterivATI )(GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterivATI ( GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetTexBumpParameterfvATI )(GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetTexBumpParameterfvATI ( GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glGenFragmentShadersATI )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenFragmentShadersATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBindFragmentShaderATI )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glBindFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeleteFragmentShaderATI )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteFragmentShaderATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBeginFragmentShaderATI )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEndFragmentShaderATI )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glEndFragmentShaderATI ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPassTexCoordATI )(GLuint, GLuint, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glPassTexCoordATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSampleMapATI )(GLuint, GLuint, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glSampleMapATI ( GLuint , GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorFragmentOp1ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorFragmentOp2ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glColorFragmentOp3ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glColorFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glAlphaFragmentOp1ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glAlphaFragmentOp2ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glAlphaFragmentOp3ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glAlphaFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSetFragmentShaderConstantATI )(GLuint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSetFragmentShaderConstantATI ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPNTrianglesiATI )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesiATI ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glPNTrianglesfATI )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glPNTrianglesfATI ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glNewObjectBufferATI )(GLsizei, const GLvoid *, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glNewObjectBufferATI ( GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glIsObjectBufferATI )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glUpdateObjectBufferATI )(GLuint, GLuint, GLsizei, const GLvoid *, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glUpdateObjectBufferATI ( GLuint , GLuint , GLsizei , const GLvoid * , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetObjectBufferfvATI )(GLuint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetObjectBufferivATI )(GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetObjectBufferivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeleteObjectBufferATI )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteObjectBufferATI ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glArrayObjectATI )(GLenum, GLint, GLenum, GLsizei, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glArrayObjectATI ( GLenum , GLint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetArrayObjectfvATI )(GLenum, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectfvATI ( GLenum , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetArrayObjectivATI )(GLenum, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetArrayObjectivATI ( GLenum , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantArrayObjectATI )(GLuint, GLenum, GLsizei, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantArrayObjectATI ( GLuint , GLenum , GLsizei , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVariantArrayObjectfvATI )(GLuint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectfvATI ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVariantArrayObjectivATI )(GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantArrayObjectivATI ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBeginVertexShaderEXT )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glBeginVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEndVertexShaderEXT )(void);
-
-/**
- * Original Function-Prototype :
- *
extern void glEndVertexShaderEXT ( void ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glBindVertexShaderEXT )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glBindVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glGenVertexShadersEXT )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenVertexShadersEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDeleteVertexShaderEXT )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glDeleteVertexShaderEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glShaderOp1EXT )(GLenum, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp1EXT ( GLenum , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glShaderOp2EXT )(GLenum, GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp2EXT ( GLenum , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glShaderOp3EXT )(GLenum, GLuint, GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glShaderOp3EXT ( GLenum , GLuint , GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSwizzleEXT )(GLuint, GLuint, GLenum, GLenum, GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glSwizzleEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glWriteMaskEXT )(GLuint, GLuint, GLenum, GLenum, GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glWriteMaskEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glInsertComponentEXT )(GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glInsertComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glExtractComponentEXT )(GLuint, GLuint, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glExtractComponentEXT ( GLuint , GLuint , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glGenSymbolsEXT )(GLenum, GLenum, GLenum, GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glGenSymbolsEXT ( GLenum , GLenum , GLenum , GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSetInvariantEXT )(GLuint, GLenum, const void *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSetInvariantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glSetLocalConstantEXT )(GLuint, GLenum, const void *);
-
-/**
- * Original Function-Prototype :
- *
extern void glSetLocalConstantEXT ( GLuint , GLenum , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantbvEXT )(GLuint, const GLbyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantbvEXT ( GLuint , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantsvEXT )(GLuint, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantsvEXT ( GLuint , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantivEXT )(GLuint, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantivEXT ( GLuint , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantfvEXT )(GLuint, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantfvEXT ( GLuint , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantdvEXT )(GLuint, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantdvEXT ( GLuint , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantubvEXT )(GLuint, const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantubvEXT ( GLuint , const GLubyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantusvEXT )(GLuint, const GLushort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantusvEXT ( GLuint , const GLushort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantuivEXT )(GLuint, const GLuint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantuivEXT ( GLuint , const GLuint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVariantPointerEXT )(GLuint, GLenum, GLuint, const void *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVariantPointerEXT ( GLuint , GLenum , GLuint , const void * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glEnableVariantClientStateEXT )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glEnableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glDisableVariantClientStateEXT )(GLuint);
-
-/**
- * Original Function-Prototype :
- *
extern void glDisableVariantClientStateEXT ( GLuint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glBindLightParameterEXT )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindLightParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glBindMaterialParameterEXT )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindMaterialParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glBindTexGenParameterEXT )(GLenum, GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTexGenParameterEXT ( GLenum , GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glBindTextureUnitParameterEXT )(GLenum, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindTextureUnitParameterEXT ( GLenum , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLuint (CALLBACK * disp__glBindParameterEXT )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern GLuint glBindParameterEXT ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__glIsVariantEnabledEXT )(GLuint, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean glIsVariantEnabledEXT ( GLuint , GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVariantBooleanvEXT )(GLuint, GLenum, GLboolean *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVariantIntegervEXT )(GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVariantFloatvEXT )(GLuint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetVariantPointervEXT )(GLuint, GLenum, GLvoid **);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetVariantPointervEXT ( GLuint , GLenum , GLvoid * * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetInvariantBooleanvEXT )(GLuint, GLenum, GLboolean *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetInvariantIntegervEXT )(GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetInvariantFloatvEXT )(GLuint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetInvariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetLocalConstantBooleanvEXT )(GLuint, GLenum, GLboolean *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetLocalConstantIntegervEXT )(GLuint, GLenum, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantIntegervEXT ( GLuint , GLenum , GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glGetLocalConstantFloatvEXT )(GLuint, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glGetLocalConstantFloatvEXT ( GLuint , GLenum , GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream1s )(GLenum, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1s ( GLenum , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream1sv )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream1i )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1i ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream1iv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream1f )(GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1f ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream1fv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream1d )(GLenum, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1d ( GLenum , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream1dv )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream1dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream2s )(GLenum, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2s ( GLenum , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream2sv )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream2i )(GLenum, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2i ( GLenum , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream2iv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream2f )(GLenum, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2f ( GLenum , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream2fv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream2d )(GLenum, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2d ( GLenum , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream2dv )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream2dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream3s )(GLenum, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream3sv )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream3i )(GLenum, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream3iv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream3f )(GLenum, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream3fv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream3d )(GLenum, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream3dv )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream4s )(GLenum, GLshort, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4s ( GLenum , GLshort , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream4sv )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream4i )(GLenum, GLint, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4i ( GLenum , GLint , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream4iv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream4f )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4f ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream4fv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream4d )(GLenum, GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4d ( GLenum , GLdouble , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexStream4dv )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexStream4dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3b )(GLenum, GLbyte, GLbyte, GLbyte);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3b ( GLenum , GLbyte , GLbyte , GLbyte ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3bv )(GLenum, const GLbyte *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3bv ( GLenum , const GLbyte * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3s )(GLenum, GLshort, GLshort, GLshort);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3s ( GLenum , GLshort , GLshort , GLshort ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3sv )(GLenum, const GLshort *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3sv ( GLenum , const GLshort * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3i )(GLenum, GLint, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3i ( GLenum , GLint , GLint , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3iv )(GLenum, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3iv ( GLenum , const GLint * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3f )(GLenum, GLfloat, GLfloat, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3fv )(GLenum, const GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3fv ( GLenum , const GLfloat * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3d )(GLenum, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glNormalStream3dv )(GLenum, const GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void glNormalStream3dv ( GLenum , const GLdouble * ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glClientActiveVertexStream )(GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void glClientActiveVertexStream ( GLenum ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexBlendEnvi )(GLenum, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvi ( GLenum , GLint ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__glVertexBlendEnvf )(GLenum, GLfloat);
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/CNativeCode/gl-disp-var.hc b/CNativeCode/gl-disp-var.hc
index fa3d6ea..280bdad 100755
--- a/CNativeCode/gl-disp-var.hc
+++ b/CNativeCode/gl-disp-var.hc
@@ -11,1967 +11,1967 @@
* Reading from file: gl-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFuncJauJNI !
*/
-
+
void (CALLBACK * disp__glClearIndex )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glClearColor )(GLclampf, GLclampf, GLclampf, GLclampf) = NULL;
-
+
void (CALLBACK * disp__glClear )(GLbitfield) = NULL;
-
+
void (CALLBACK * disp__glIndexMask )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glColorMask )(GLboolean, GLboolean, GLboolean, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glAlphaFunc )(GLenum, GLclampf) = NULL;
-
+
void (CALLBACK * disp__glBlendFunc )(GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glLogicOp )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glCullFace )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glFrontFace )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glPointSize )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glLineWidth )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glLineStipple )(GLint, GLushort) = NULL;
-
+
void (CALLBACK * disp__glPolygonMode )(GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glPolygonOffset )(GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glPolygonStipple )(const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glGetPolygonStipple )(GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glEdgeFlag )(GLboolean) = NULL;
-
+
void (CALLBACK * disp__glEdgeFlagv )(const GLboolean *) = NULL;
-
+
void (CALLBACK * disp__glScissor )(GLint, GLint, GLsizei, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glClipPlane )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glGetClipPlane )(GLenum, GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glDrawBuffer )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glReadBuffer )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glEnable )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glDisable )(GLenum) = NULL;
-
+
GLboolean (CALLBACK * disp__glIsEnabled )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glEnableClientState )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glDisableClientState )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glGetBooleanv )(GLenum, GLboolean *) = NULL;
-
+
void (CALLBACK * disp__glGetDoublev )(GLenum, GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glGetFloatv )(GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetIntegerv )(GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glPushAttrib )(GLbitfield) = NULL;
-
+
void (CALLBACK * disp__glPopAttrib )(void) = NULL;
-
+
void (CALLBACK * disp__glPushClientAttrib )(GLbitfield) = NULL;
-
+
void (CALLBACK * disp__glPopClientAttrib )(void) = NULL;
-
+
GLint (CALLBACK * disp__glRenderMode )(GLenum) = NULL;
-
+
GLenum (CALLBACK * disp__glGetError )(void) = NULL;
-
+
void (CALLBACK * disp__glFinish )(void) = NULL;
-
+
void (CALLBACK * disp__glFlush )(void) = NULL;
-
+
void (CALLBACK * disp__glHint )(GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glClearDepth )(GLclampd) = NULL;
-
+
void (CALLBACK * disp__glDepthFunc )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glDepthMask )(GLboolean) = NULL;
-
+
void (CALLBACK * disp__glDepthRange )(GLclampd, GLclampd) = NULL;
-
+
void (CALLBACK * disp__glClearAccum )(GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glAccum )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMatrixMode )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glOrtho )(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glFrustum )(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glViewport )(GLint, GLint, GLsizei, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glPushMatrix )(void) = NULL;
-
+
void (CALLBACK * disp__glPopMatrix )(void) = NULL;
-
+
void (CALLBACK * disp__glLoadIdentity )(void) = NULL;
-
+
void (CALLBACK * disp__glLoadMatrixd )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glLoadMatrixf )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultMatrixd )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultMatrixf )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glRotated )(GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glRotatef )(GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glScaled )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glScalef )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTranslated )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glTranslatef )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
GLboolean (CALLBACK * disp__glIsList )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glDeleteLists )(GLuint, GLsizei) = NULL;
-
+
GLuint (CALLBACK * disp__glGenLists )(GLsizei) = NULL;
-
+
void (CALLBACK * disp__glNewList )(GLuint, GLenum) = NULL;
-
+
void (CALLBACK * disp__glEndList )(void) = NULL;
-
+
void (CALLBACK * disp__glCallList )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glCallLists )(GLsizei, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glListBase )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glBegin )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glEnd )(void) = NULL;
-
+
void (CALLBACK * disp__glVertex2d )(GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertex2f )(GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertex2i )(GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glVertex2s )(GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertex3d )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertex3f )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertex3i )(GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glVertex3s )(GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertex4d )(GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertex4f )(GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertex4i )(GLint, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glVertex4s )(GLshort, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertex2dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertex2fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertex2iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glVertex2sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertex3dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertex3fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertex3iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glVertex3sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertex4dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertex4fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertex4iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glVertex4sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glNormal3b )(GLbyte, GLbyte, GLbyte) = NULL;
-
+
void (CALLBACK * disp__glNormal3d )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glNormal3f )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glNormal3i )(GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glNormal3s )(GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glNormal3bv )(const GLbyte *) = NULL;
-
+
void (CALLBACK * disp__glNormal3dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glNormal3fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glNormal3iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glNormal3sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glIndexd )(GLdouble) = NULL;
-
+
void (CALLBACK * disp__glIndexf )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glIndexi )(GLint) = NULL;
-
+
void (CALLBACK * disp__glIndexs )(GLshort) = NULL;
-
+
void (CALLBACK * disp__glIndexub )(GLubyte) = NULL;
-
+
void (CALLBACK * disp__glIndexdv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glIndexfv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glIndexiv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glIndexsv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glIndexubv )(const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glColor3b )(GLbyte, GLbyte, GLbyte) = NULL;
-
+
void (CALLBACK * disp__glColor3d )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glColor3f )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glColor3i )(GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glColor3s )(GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glColor3ub )(GLubyte, GLubyte, GLubyte) = NULL;
-
+
void (CALLBACK * disp__glColor3ui )(GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glColor3us )(GLushort, GLushort, GLushort) = NULL;
-
+
void (CALLBACK * disp__glColor4b )(GLbyte, GLbyte, GLbyte, GLbyte) = NULL;
-
+
void (CALLBACK * disp__glColor4d )(GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glColor4f )(GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glColor4i )(GLint, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glColor4s )(GLshort, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glColor4ub )(GLubyte, GLubyte, GLubyte, GLubyte) = NULL;
-
+
void (CALLBACK * disp__glColor4ui )(GLuint, GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glColor4us )(GLushort, GLushort, GLushort, GLushort) = NULL;
-
+
void (CALLBACK * disp__glColor3bv )(const GLbyte *) = NULL;
-
+
void (CALLBACK * disp__glColor3dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glColor3fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glColor3iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glColor3sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glColor3ubv )(const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glColor3uiv )(const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glColor3usv )(const GLushort *) = NULL;
-
+
void (CALLBACK * disp__glColor4bv )(const GLbyte *) = NULL;
-
+
void (CALLBACK * disp__glColor4dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glColor4fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glColor4iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glColor4sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glColor4ubv )(const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glColor4uiv )(const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glColor4usv )(const GLushort *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord1d )(GLdouble) = NULL;
-
+
void (CALLBACK * disp__glTexCoord1f )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord1i )(GLint) = NULL;
-
+
void (CALLBACK * disp__glTexCoord1s )(GLshort) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2d )(GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2f )(GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2i )(GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2s )(GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glTexCoord3d )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glTexCoord3f )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord3i )(GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glTexCoord3s )(GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4d )(GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4f )(GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4i )(GLint, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4s )(GLshort, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glTexCoord1dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord1fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord1iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord1sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord3dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord3fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord3iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord3sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos2d )(GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glRasterPos2f )(GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glRasterPos2i )(GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glRasterPos2s )(GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glRasterPos3d )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glRasterPos3f )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glRasterPos3i )(GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glRasterPos3s )(GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glRasterPos4d )(GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glRasterPos4f )(GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glRasterPos4i )(GLint, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glRasterPos4s )(GLshort, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glRasterPos2dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos2fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos2iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos2sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos3dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos3fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos3iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos3sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos4dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos4fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos4iv )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glRasterPos4sv )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glRectd )(GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glRectf )(GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glRecti )(GLint, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glRects )(GLshort, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glRectdv )(const GLdouble *, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glRectfv )(const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glRectiv )(const GLint *, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glRectsv )(const GLshort *, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexPointer )(GLint, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glNormalPointer )(GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glColorPointer )(GLint, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glIndexPointer )(GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTexCoordPointer )(GLint, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glEdgeFlagPointer )(GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetPointerv )(GLenum, GLvoid **) = NULL;
-
+
void (CALLBACK * disp__glArrayElement )(GLint) = NULL;
-
+
void (CALLBACK * disp__glDrawArrays )(GLenum, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glDrawElements )(GLenum, GLsizei, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glInterleavedArrays )(GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glShadeModel )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glLightf )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glLighti )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glLightfv )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glLightiv )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetLightfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetLightiv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glLightModelf )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glLightModeli )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glLightModelfv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glLightModeliv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMaterialf )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMateriali )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glMaterialfv )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMaterialiv )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetMaterialfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetMaterialiv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glColorMaterial )(GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glPixelZoom )(GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glPixelStoref )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glPixelStorei )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glPixelTransferf )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glPixelTransferi )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glPixelMapfv )(GLenum, GLint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glPixelMapuiv )(GLenum, GLint, const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glPixelMapusv )(GLenum, GLint, const GLushort *) = NULL;
-
+
void (CALLBACK * disp__glGetPixelMapfv )(GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetPixelMapuiv )(GLenum, GLuint *) = NULL;
-
+
void (CALLBACK * disp__glGetPixelMapusv )(GLenum, GLushort *) = NULL;
-
+
void (CALLBACK * disp__glBitmap )(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glReadPixels )(GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glDrawPixels )(GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCopyPixels )(GLint, GLint, GLsizei, GLsizei, GLenum) = NULL;
-
+
void (CALLBACK * disp__glStencilFunc )(GLenum, GLint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glStencilMask )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glStencilOp )(GLenum, GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glClearStencil )(GLint) = NULL;
-
+
void (CALLBACK * disp__glTexGend )(GLenum, GLenum, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glTexGenf )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexGeni )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glTexGendv )(GLenum, GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glTexGenfv )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexGeniv )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetTexGendv )(GLenum, GLenum, GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glGetTexGenfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetTexGeniv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glTexEnvf )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexEnvi )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glTexEnvfv )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexEnviv )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetTexEnvfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetTexEnviv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glTexParameterf )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexParameteri )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glTexParameterfv )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexParameteriv )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetTexParameterfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetTexParameteriv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetTexLevelParameterfv )(GLenum, GLint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetTexLevelParameteriv )(GLenum, GLint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glTexImage1D )(GLenum, GLint, GLint, GLsizei, GLint, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTexImage2D )(GLenum, GLint, GLint, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetTexImage )(GLenum, GLint, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGenTextures )(GLsizei, GLuint *) = NULL;
-
+
void (CALLBACK * disp__glDeleteTextures )(GLsizei, const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glBindTexture )(GLenum, GLuint) = NULL;
-
+
void (CALLBACK * disp__glPrioritizeTextures )(GLsizei, const GLuint *, const GLclampf *) = NULL;
-
+
GLboolean (CALLBACK * disp__glAreTexturesResident )(GLsizei, const GLuint *, GLboolean *) = NULL;
-
+
GLboolean (CALLBACK * disp__glIsTexture )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glTexSubImage1D )(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTexSubImage2D )(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCopyTexImage1D )(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint) = NULL;
-
+
void (CALLBACK * disp__glCopyTexImage2D )(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint) = NULL;
-
+
void (CALLBACK * disp__glCopyTexSubImage1D )(GLenum, GLint, GLint, GLint, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glCopyTexSubImage2D )(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glMap1d )(GLenum, GLdouble, GLdouble, GLint, GLint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMap1f )(GLenum, GLfloat, GLfloat, GLint, GLint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMap2d )(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMap2f )(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetMapdv )(GLenum, GLenum, GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glGetMapfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetMapiv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glEvalCoord1d )(GLdouble) = NULL;
-
+
void (CALLBACK * disp__glEvalCoord1f )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glEvalCoord1dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glEvalCoord1fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glEvalCoord2d )(GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glEvalCoord2f )(GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glEvalCoord2dv )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glEvalCoord2fv )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMapGrid1d )(GLint, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMapGrid1f )(GLint, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMapGrid2d )(GLint, GLdouble, GLdouble, GLint, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMapGrid2f )(GLint, GLfloat, GLfloat, GLint, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glEvalPoint1 )(GLint) = NULL;
-
+
void (CALLBACK * disp__glEvalPoint2 )(GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glEvalMesh1 )(GLenum, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glEvalMesh2 )(GLenum, GLint, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glFogf )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glFogi )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glFogfv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glFogiv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glFeedbackBuffer )(GLsizei, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glPassThrough )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glSelectBuffer )(GLsizei, GLuint *) = NULL;
-
+
void (CALLBACK * disp__glInitNames )(void) = NULL;
-
+
void (CALLBACK * disp__glLoadName )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glPushName )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glPopName )(void) = NULL;
-
+
void (CALLBACK * disp__glDrawRangeElements )(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTexImage3D )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTexSubImage3D )(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCopyTexSubImage3D )(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glColorTable )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glColorSubTable )(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glColorTableParameteriv )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glColorTableParameterfv )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glCopyColorSubTable )(GLenum, GLsizei, GLint, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glCopyColorTable )(GLenum, GLenum, GLint, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glGetColorTable )(GLenum, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetColorTableParameterfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetColorTableParameteriv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glBlendEquation )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glBlendColor )(GLclampf, GLclampf, GLclampf, GLclampf) = NULL;
-
+
void (CALLBACK * disp__glHistogram )(GLenum, GLsizei, GLenum, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glResetHistogram )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glGetHistogram )(GLenum, GLboolean, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetHistogramParameterfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetHistogramParameteriv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glMinmax )(GLenum, GLenum, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glResetMinmax )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glGetMinmax )(GLenum, GLboolean, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetMinmaxParameterfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetMinmaxParameteriv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glConvolutionFilter1D )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glConvolutionFilter2D )(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glConvolutionParameterf )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glConvolutionParameterfv )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glConvolutionParameteri )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glConvolutionParameteriv )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glCopyConvolutionFilter1D )(GLenum, GLenum, GLint, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glCopyConvolutionFilter2D )(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glGetConvolutionFilter )(GLenum, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetConvolutionParameterfv )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetConvolutionParameteriv )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glSeparableFilter2D )(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetSeparableFilter )(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glActiveTexture )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glClientActiveTexture )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexImage1D )(GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexImage2D )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexImage3D )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexSubImage1D )(GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexSubImage2D )(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexSubImage3D )(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetCompressedTexImage )(GLenum, GLint, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1d )(GLenum, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1dv )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1f )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1fv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1i )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1iv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1s )(GLenum, GLshort) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1sv )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2d )(GLenum, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2dv )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2f )(GLenum, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2fv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2i )(GLenum, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2iv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2s )(GLenum, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2sv )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3d )(GLenum, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3dv )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3f )(GLenum, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3fv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3i )(GLenum, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3iv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3s )(GLenum, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3sv )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4d )(GLenum, GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4dv )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4f )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4fv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4i )(GLenum, GLint, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4iv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4s )(GLenum, GLshort, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4sv )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glLoadTransposeMatrixd )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glLoadTransposeMatrixf )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultTransposeMatrixd )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultTransposeMatrixf )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glSampleCoverage )(GLclampf, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glSamplePass )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glActiveTextureARB )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glClientActiveTextureARB )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1dARB )(GLenum, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1dvARB )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1fARB )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1fvARB )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1iARB )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1ivARB )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1sARB )(GLenum, GLshort) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord1svARB )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2dARB )(GLenum, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2dvARB )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2fARB )(GLenum, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2fvARB )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2iARB )(GLenum, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2ivARB )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2sARB )(GLenum, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord2svARB )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3dARB )(GLenum, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3dvARB )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3fARB )(GLenum, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3fvARB )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3iARB )(GLenum, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3ivARB )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3sARB )(GLenum, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord3svARB )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4dARB )(GLenum, GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4dvARB )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4fARB )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4fvARB )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4iARB )(GLenum, GLint, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4ivARB )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4sARB )(GLenum, GLshort, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glMultiTexCoord4svARB )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glBlendColorEXT )(GLclampf, GLclampf, GLclampf, GLclampf) = NULL;
-
+
void (CALLBACK * disp__glPolygonOffsetEXT )(GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexImage3DEXT )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTexSubImage3DEXT )(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCopyTexSubImage3DEXT )(GLenum, GLint, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glGenTexturesEXT )(GLsizei, GLuint *) = NULL;
-
+
void (CALLBACK * disp__glDeleteTexturesEXT )(GLsizei, const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glBindTextureEXT )(GLenum, GLuint) = NULL;
-
+
void (CALLBACK * disp__glPrioritizeTexturesEXT )(GLsizei, const GLuint *, const GLclampf *) = NULL;
-
+
GLboolean (CALLBACK * disp__glAreTexturesResidentEXT )(GLsizei, const GLuint *, GLboolean *) = NULL;
-
+
GLboolean (CALLBACK * disp__glIsTextureEXT )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glVertexPointerEXT )(GLint, GLenum, GLsizei, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glNormalPointerEXT )(GLenum, GLsizei, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glColorPointerEXT )(GLint, GLenum, GLsizei, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glIndexPointerEXT )(GLenum, GLsizei, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTexCoordPointerEXT )(GLint, GLenum, GLsizei, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glEdgeFlagPointerEXT )(GLsizei, GLsizei, const GLboolean *) = NULL;
-
+
void (CALLBACK * disp__glGetPointervEXT )(GLenum, GLvoid **) = NULL;
-
+
void (CALLBACK * disp__glArrayElementEXT )(GLint) = NULL;
-
+
void (CALLBACK * disp__glDrawArraysEXT )(GLenum, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glBlendEquationEXT )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glPointParameterfEXT )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glPointParameterfvEXT )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glPointParameterfSGIS )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glPointParameterfvSGIS )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glColorTableEXT )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glColorSubTableEXT )(GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetColorTableEXT )(GLenum, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetColorTableParameterfvEXT )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetColorTableParameterivEXT )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glLockArraysEXT )(GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glUnlockArraysEXT )(void) = NULL;
-
+
void (CALLBACK * disp__glLoadTransposeMatrixfARB )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glLoadTransposeMatrixdARB )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glMultTransposeMatrixfARB )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glMultTransposeMatrixdARB )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glSampleCoverageARB )(GLclampf, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexImage3DARB )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexImage2DARB )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLint, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexImage1DARB )(GLenum, GLint, GLenum, GLsizei, GLint, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexSubImage3DARB )(GLenum, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexSubImage2DARB )(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCompressedTexSubImage1DARB )(GLenum, GLint, GLint, GLsizei, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetCompressedTexImageARB )(GLenum, GLint, void *) = NULL;
-
+
void (CALLBACK * disp__glWeightbvARB )(GLint, const GLbyte *) = NULL;
-
+
void (CALLBACK * disp__glWeightsvARB )(GLint, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glWeightivARB )(GLint, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glWeightfvARB )(GLint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glWeightdvARB )(GLint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glWeightubvARB )(GLint, const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glWeightusvARB )(GLint, const GLushort *) = NULL;
-
+
void (CALLBACK * disp__glWeightuivARB )(GLint, const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glWeightPointerARB )(GLint, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glVertexBlendARB )(GLint) = NULL;
-
+
void (CALLBACK * disp__glCurrentPaletteMatrixARB )(GLint) = NULL;
-
+
void (CALLBACK * disp__glMatrixIndexubvARB )(GLint, const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glMatrixIndexusvARB )(GLint, const GLushort *) = NULL;
-
+
void (CALLBACK * disp__glMatrixIndexuivARB )(GLint, const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glMatrixIndexPointerARB )(GLint, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetTexFilterFuncSGIS )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexFilterFuncSGIS )(GLenum, GLenum, GLsizei, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexSubImage1DEXT )(GLenum, GLint, GLint, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTexSubImage2DEXT )(GLenum, GLint, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCopyTexImage1DEXT )(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLint) = NULL;
-
+
void (CALLBACK * disp__glCopyTexImage2DEXT )(GLenum, GLint, GLenum, GLint, GLint, GLsizei, GLsizei, GLint) = NULL;
-
+
void (CALLBACK * disp__glCopyTexSubImage1DEXT )(GLenum, GLint, GLint, GLint, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glCopyTexSubImage2DEXT )(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glGetHistogramEXT )(GLenum, GLboolean, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetHistogramParameterfvEXT )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetHistogramParameterivEXT )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetMinmaxEXT )(GLenum, GLboolean, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetMinmaxParameterfvEXT )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetMinmaxParameterivEXT )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glHistogramEXT )(GLenum, GLsizei, GLenum, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glMinmaxEXT )(GLenum, GLenum, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glResetHistogramEXT )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glResetMinmaxEXT )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glConvolutionFilter1DEXT )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glConvolutionFilter2DEXT )(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glConvolutionParameterfEXT )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glConvolutionParameterfvEXT )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glConvolutionParameteriEXT )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glConvolutionParameterivEXT )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glCopyConvolutionFilter1DEXT )(GLenum, GLenum, GLint, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glCopyConvolutionFilter2DEXT )(GLenum, GLenum, GLint, GLint, GLsizei, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glGetConvolutionFilterEXT )(GLenum, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetConvolutionParameterfvEXT )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetConvolutionParameterivEXT )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetSeparableFilterEXT )(GLenum, GLenum, GLenum, GLvoid *, GLvoid *, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glSeparableFilter2DEXT )(GLenum, GLenum, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glColorTableSGI )(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glColorTableParameterfvSGI )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glColorTableParameterivSGI )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glCopyColorTableSGI )(GLenum, GLenum, GLint, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glGetColorTableSGI )(GLenum, GLenum, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetColorTableParameterfvSGI )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetColorTableParameterivSGI )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glPixelTexGenSGIX )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glPixelTexGenParameteriSGIS )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glPixelTexGenParameterivSGIS )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glPixelTexGenParameterfSGIS )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glPixelTexGenParameterfvSGIS )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetPixelTexGenParameterivSGIS )(GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetPixelTexGenParameterfvSGIS )(GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexImage4DSGIS )(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei, GLsizei, GLint, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTexSubImage4DSGIS )(GLenum, GLint, GLint, GLint, GLint, GLint, GLsizei, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glDetailTexFuncSGIS )(GLenum, GLsizei, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetDetailTexFuncSGIS )(GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glSharpenTexFuncSGIS )(GLenum, GLsizei, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetSharpenTexFuncSGIS )(GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glSampleMaskSGIS )(GLclampf, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glSamplePatternSGIS )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glSpriteParameterfSGIX )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glSpriteParameterfvSGIX )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glSpriteParameteriSGIX )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glSpriteParameterivSGIX )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glPointParameterfARB )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glPointParameterfvARB )(GLenum, const GLfloat *) = NULL;
-
+
GLint (CALLBACK * disp__glGetInstrumentsSGIX )(void) = NULL;
-
+
void (CALLBACK * disp__glInstrumentsBufferSGIX )(GLsizei, GLint *) = NULL;
-
+
GLint (CALLBACK * disp__glPollInstrumentsSGIX )(GLint *) = NULL;
-
+
void (CALLBACK * disp__glReadInstrumentsSGIX )(GLint) = NULL;
-
+
void (CALLBACK * disp__glStartInstrumentsSGIX )(void) = NULL;
-
+
void (CALLBACK * disp__glStopInstrumentsSGIX )(GLint) = NULL;
-
+
void (CALLBACK * disp__glFrameZoomSGIX )(GLint) = NULL;
-
+
void (CALLBACK * disp__glTagSampleBufferSGIX )(void) = NULL;
-
+
void (CALLBACK * disp__glDeformationMap3dSGIX )(GLenum, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble, GLint, GLint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glDeformationMap3fSGIX )(GLenum, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, GLfloat, GLfloat, GLint, GLint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glDeformSGIX )(GLbitfield) = NULL;
-
+
void (CALLBACK * disp__glLoadIdentityDeformationMapSGIX )(GLbitfield) = NULL;
-
+
void (CALLBACK * disp__glReferencePlaneSGIX )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glFlushRasterSGIX )(void) = NULL;
-
+
void (CALLBACK * disp__glFogFuncSGIS )(GLsizei, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetFogFuncSGIS )(GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glImageTransformParameteriHP )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glImageTransformParameterfHP )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glImageTransformParameterivHP )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glImageTransformParameterfvHP )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetImageTransformParameterivHP )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetImageTransformParameterfvHP )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glCopyColorSubTableEXT )(GLenum, GLsizei, GLint, GLint, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glHintPGI )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glGetListParameterfvSGIX )(GLuint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetListParameterivSGIX )(GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glListParameterfSGIX )(GLuint, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glListParameterfvSGIX )(GLuint, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glListParameteriSGIX )(GLuint, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glListParameterivSGIX )(GLuint, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glIndexMaterialEXT )(GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glIndexFuncEXT )(GLenum, GLclampf) = NULL;
-
+
void (CALLBACK * disp__glCullParameterdvEXT )(GLenum, GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glCullParameterfvEXT )(GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glFragmentColorMaterialSGIX )(GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glFragmentLightfSGIX )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glFragmentLightfvSGIX )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glFragmentLightiSGIX )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glFragmentLightivSGIX )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glFragmentLightModelfSGIX )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glFragmentLightModelfvSGIX )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glFragmentLightModeliSGIX )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glFragmentLightModelivSGIX )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glFragmentMaterialfSGIX )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glFragmentMaterialfvSGIX )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glFragmentMaterialiSGIX )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glFragmentMaterialivSGIX )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetFragmentLightfvSGIX )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetFragmentLightivSGIX )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetFragmentMaterialfvSGIX )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetFragmentMaterialivSGIX )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glLightEnviSGIX )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glDrawRangeElementsEXT )(GLenum, GLuint, GLuint, GLsizei, GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glApplyTextureEXT )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glTextureLightEXT )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glTextureMaterialEXT )(GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glAsyncMarkerSGIX )(GLuint) = NULL;
-
+
GLint (CALLBACK * disp__glFinishAsyncSGIX )(GLuint *) = NULL;
-
+
GLint (CALLBACK * disp__glPollAsyncSGIX )(GLuint *) = NULL;
-
+
GLuint (CALLBACK * disp__glGenAsyncMarkersSGIX )(GLsizei) = NULL;
-
+
void (CALLBACK * disp__glDeleteAsyncMarkersSGIX )(GLuint, GLsizei) = NULL;
-
+
GLboolean (CALLBACK * disp__glIsAsyncMarkerSGIX )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glVertexPointervINTEL )(GLint, GLenum, const GLvoid **) = NULL;
-
+
void (CALLBACK * disp__glNormalPointervINTEL )(GLenum, const GLvoid **) = NULL;
-
+
void (CALLBACK * disp__glColorPointervINTEL )(GLint, GLenum, const GLvoid **) = NULL;
-
+
void (CALLBACK * disp__glTexCoordPointervINTEL )(GLint, GLenum, const GLvoid **) = NULL;
-
+
void (CALLBACK * disp__glPixelTransformParameteriEXT )(GLenum, GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glPixelTransformParameterfEXT )(GLenum, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glPixelTransformParameterivEXT )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glPixelTransformParameterfvEXT )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3bEXT )(GLbyte, GLbyte, GLbyte) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3bvEXT )(const GLbyte *) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3dEXT )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3dvEXT )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3fEXT )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3fvEXT )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3iEXT )(GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3ivEXT )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3sEXT )(GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3svEXT )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3ubEXT )(GLubyte, GLubyte, GLubyte) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3ubvEXT )(const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3uiEXT )(GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3uivEXT )(const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3usEXT )(GLushort, GLushort, GLushort) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColor3usvEXT )(const GLushort *) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColorPointerEXT )(GLint, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTextureNormalEXT )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glMultiDrawArraysEXT )(GLenum, GLint *, GLsizei *, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glMultiDrawElementsEXT )(GLenum, const GLsizei *, GLenum, const GLvoid **, GLsizei) = NULL;
-
+
void (CALLBACK * disp__glFogCoordfEXT )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glFogCoordfvEXT )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glFogCoorddEXT )(GLdouble) = NULL;
-
+
void (CALLBACK * disp__glFogCoorddvEXT )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glFogCoordPointerEXT )(GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glTangent3bEXT )(GLbyte, GLbyte, GLbyte) = NULL;
-
+
void (CALLBACK * disp__glTangent3bvEXT )(const GLbyte *) = NULL;
-
+
void (CALLBACK * disp__glTangent3dEXT )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glTangent3dvEXT )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glTangent3fEXT )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTangent3fvEXT )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTangent3iEXT )(GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glTangent3ivEXT )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glTangent3sEXT )(GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glTangent3svEXT )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glBinormal3bEXT )(GLbyte, GLbyte, GLbyte) = NULL;
-
+
void (CALLBACK * disp__glBinormal3bvEXT )(const GLbyte *) = NULL;
-
+
void (CALLBACK * disp__glBinormal3dEXT )(GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glBinormal3dvEXT )(const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glBinormal3fEXT )(GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glBinormal3fvEXT )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glBinormal3iEXT )(GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glBinormal3ivEXT )(const GLint *) = NULL;
-
+
void (CALLBACK * disp__glBinormal3sEXT )(GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glBinormal3svEXT )(const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glTangentPointerEXT )(GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glBinormalPointerEXT )(GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glFinishTextureSUNX )(void) = NULL;
-
+
void (CALLBACK * disp__glGlobalAlphaFactorbSUN )(GLbyte) = NULL;
-
+
void (CALLBACK * disp__glGlobalAlphaFactorsSUN )(GLshort) = NULL;
-
+
void (CALLBACK * disp__glGlobalAlphaFactoriSUN )(GLint) = NULL;
-
+
void (CALLBACK * disp__glGlobalAlphaFactorfSUN )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glGlobalAlphaFactordSUN )(GLdouble) = NULL;
-
+
void (CALLBACK * disp__glGlobalAlphaFactorubSUN )(GLubyte) = NULL;
-
+
void (CALLBACK * disp__glGlobalAlphaFactorusSUN )(GLushort) = NULL;
-
+
void (CALLBACK * disp__glGlobalAlphaFactoruiSUN )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiSUN )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeusSUN )(GLushort) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeubSUN )(GLubyte) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuivSUN )(const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeusvSUN )(const GLushort *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeubvSUN )(const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodePointerSUN )(GLenum, GLsizei, const GLvoid **) = NULL;
-
+
void (CALLBACK * disp__glColor4ubVertex2fSUN )(GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glColor4ubVertex2fvSUN )(const GLubyte *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glColor4ubVertex3fSUN )(GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glColor4ubVertex3fvSUN )(const GLubyte *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glColor3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glColor3fVertex3fvSUN )(const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glNormal3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glNormal3fVertex3fvSUN )(const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glColor4fNormal3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glColor4fNormal3fVertex3fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fVertex3fvSUN )(const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4fVertex4fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4fVertex4fvSUN )(const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fColor4ubVertex3fSUN )(GLfloat, GLfloat, GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fColor4ubVertex3fvSUN )(const GLfloat *, const GLubyte *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fColor3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fColor3fVertex3fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fNormal3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fNormal3fVertex3fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fColor4fNormal3fVertex3fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord2fColor4fNormal3fVertex3fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4fColor4fNormal3fVertex4fSUN )(GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glTexCoord4fColor4fNormal3fVertex4fvSUN )(const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiVertex3fvSUN )(const GLenum *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiColor4ubVertex3fSUN )(GLenum, GLubyte, GLubyte, GLubyte, GLubyte, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiColor4ubVertex3fvSUN )(const GLenum *, const GLubyte *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiColor3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiColor3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiNormal3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiNormal3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiColor4fNormal3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiColor4fNormal3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiTexCoord2fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiTexCoord2fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN )(const GLenum *, const GLfloat *, const GLfloat *, const GLfloat *, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glBlendFuncSeparateEXT )(GLenum, GLenum, GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glBlendFuncSeparateINGR )(GLenum, GLenum, GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glVertexWeightfEXT )(GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertexWeightfvEXT )(const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexWeightPointerEXT )(GLsizei, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glFlushVertexArrayRangeNV )(void) = NULL;
-
+
void (CALLBACK * disp__glVertexArrayRangeNV )(GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glCombinerParameterfvNV )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glCombinerParameterfNV )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glCombinerParameterivNV )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glCombinerParameteriNV )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glCombinerInputNV )(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glCombinerOutputNV )(GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLenum, GLboolean, GLboolean, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glFinalCombinerInputNV )(GLenum, GLenum, GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glGetCombinerInputParameterfvNV )(GLenum, GLenum, GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetCombinerInputParameterivNV )(GLenum, GLenum, GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetCombinerOutputParameterfvNV )(GLenum, GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetCombinerOutputParameterivNV )(GLenum, GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetFinalCombinerInputParameterfvNV )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetFinalCombinerInputParameterivNV )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glMultiModeDrawArraysIBM )(GLenum, const GLint *, const GLsizei *, GLsizei, GLint) = NULL;
-
+
void (CALLBACK * disp__glMultiModeDrawElementsIBM )(const GLenum *, const GLsizei *, GLenum, const GLvoid **, GLsizei, GLint) = NULL;
-
+
void (CALLBACK * disp__glColorPointerListIBM )(GLint, GLenum, GLint, const GLvoid **, GLint) = NULL;
-
+
void (CALLBACK * disp__glSecondaryColorPointerListIBM )(GLint, GLenum, GLint, const GLvoid **, GLint) = NULL;
-
+
void (CALLBACK * disp__glEdgeFlagPointerListIBM )(GLint, const GLboolean **, GLint) = NULL;
-
+
void (CALLBACK * disp__glFogCoordPointerListIBM )(GLenum, GLint, const GLvoid **, GLint) = NULL;
-
+
void (CALLBACK * disp__glIndexPointerListIBM )(GLenum, GLint, const GLvoid **, GLint) = NULL;
-
+
void (CALLBACK * disp__glNormalPointerListIBM )(GLenum, GLint, const GLvoid **, GLint) = NULL;
-
+
void (CALLBACK * disp__glTexCoordPointerListIBM )(GLint, GLenum, GLint, const GLvoid **, GLint) = NULL;
-
+
void (CALLBACK * disp__glVertexPointerListIBM )(GLint, GLenum, GLint, const GLvoid **, GLint) = NULL;
-
+
void (CALLBACK * disp__glTbufferMask3DFX )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glSampleMaskEXT )(GLclampf, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glSamplePatternEXT )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glTextureColorMaskSGIS )(GLboolean, GLboolean, GLboolean, GLboolean) = NULL;
-
+
void (CALLBACK * disp__glIglooInterfaceSGIX )(GLenum, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGenFencesNV )(GLsizei, GLuint *) = NULL;
-
+
void (CALLBACK * disp__glDeleteFencesNV )(GLsizei, const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glSetFenceNV )(GLuint, GLenum) = NULL;
-
+
GLboolean (CALLBACK * disp__glTestFenceNV )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glFinishFenceNV )(GLuint) = NULL;
-
+
GLboolean (CALLBACK * disp__glIsFenceNV )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glGetFenceivNV )(GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glMapControlPointsNV )(GLenum, GLuint, GLenum, GLsizei, GLsizei, GLint, GLint, GLboolean, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glMapParameterivNV )(GLenum, GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glMapParameterfvNV )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetMapControlPointsNV )(GLenum, GLuint, GLenum, GLsizei, GLsizei, GLboolean, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glGetMapParameterivNV )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetMapParameterfvNV )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetMapAttribParameterivNV )(GLenum, GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetMapAttribParameterfvNV )(GLenum, GLuint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glEvalMapsNV )(GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glCombinerStageParameterfvNV )(GLenum, GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetCombinerStageParameterfvNV )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glBindProgramNV )(GLenum, GLuint) = NULL;
-
+
void (CALLBACK * disp__glDeleteProgramsNV )(GLsizei, const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glExecuteProgramNV )(GLenum, GLuint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGenProgramsNV )(GLsizei, GLuint *) = NULL;
-
+
GLboolean (CALLBACK * disp__glAreProgramsResidentNV )(GLsizei, const GLuint *, GLboolean *) = NULL;
-
+
void (CALLBACK * disp__glRequestResidentProgramsNV )(GLsizei, const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glGetProgramParameterfvNV )(GLenum, GLuint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetProgramParameterdvNV )(GLenum, GLuint, GLenum, GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glGetProgramivNV )(GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetProgramStringNV )(GLuint, GLenum, GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glGetTrackMatrixivNV )(GLenum, GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetVertexAttribdvNV )(GLuint, GLenum, GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glGetVertexAttribfvNV )(GLuint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetVertexAttribivNV )(GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetVertexAttribPointervNV )(GLuint, GLenum, GLvoid **) = NULL;
-
+
GLboolean (CALLBACK * disp__glIsProgramNV )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glLoadProgramNV )(GLenum, GLuint, GLsizei, const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glProgramParameter4fNV )(GLenum, GLuint, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glProgramParameter4dNV )(GLenum, GLuint, GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glProgramParameter4dvNV )(GLenum, GLuint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glProgramParameter4fvNV )(GLenum, GLuint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glProgramParameters4dvNV )(GLenum, GLuint, GLuint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glProgramParameters4fvNV )(GLenum, GLuint, GLuint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glTrackMatrixNV )(GLenum, GLuint, GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribPointerNV )(GLuint, GLint, GLenum, GLsizei, const GLvoid *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib1sNV )(GLuint, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib1fNV )(GLuint, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib1dNV )(GLuint, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib2sNV )(GLuint, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib2fNV )(GLuint, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib2dNV )(GLuint, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib3sNV )(GLuint, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib3fNV )(GLuint, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib3dNV )(GLuint, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib4sNV )(GLuint, GLshort, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib4fNV )(GLuint, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib4dNV )(GLuint, GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib4ubNV )(GLuint, GLubyte, GLubyte, GLubyte, GLubyte) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib1svNV )(GLuint, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib1fvNV )(GLuint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib1dvNV )(GLuint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib2svNV )(GLuint, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib2fvNV )(GLuint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib2dvNV )(GLuint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib3svNV )(GLuint, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib3fvNV )(GLuint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib3dvNV )(GLuint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib4svNV )(GLuint, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib4fvNV )(GLuint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib4dvNV )(GLuint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttrib4ubvNV )(GLuint, const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs1svNV )(GLuint, GLsizei, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs1fvNV )(GLuint, GLsizei, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs1dvNV )(GLuint, GLsizei, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs2svNV )(GLuint, GLsizei, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs2fvNV )(GLuint, GLsizei, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs2dvNV )(GLuint, GLsizei, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs3svNV )(GLuint, GLsizei, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs3fvNV )(GLuint, GLsizei, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs3dvNV )(GLuint, GLsizei, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs4svNV )(GLuint, GLsizei, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs4fvNV )(GLuint, GLsizei, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs4dvNV )(GLuint, GLsizei, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexAttribs4ubvNV )(GLuint, GLsizei, const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glTexBumpParameterivATI )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glTexBumpParameterfvATI )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetTexBumpParameterivATI )(GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetTexBumpParameterfvATI )(GLenum, GLfloat *) = NULL;
-
+
GLuint (CALLBACK * disp__glGenFragmentShadersATI )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glBindFragmentShaderATI )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glDeleteFragmentShaderATI )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glBeginFragmentShaderATI )(void) = NULL;
-
+
void (CALLBACK * disp__glEndFragmentShaderATI )(void) = NULL;
-
+
void (CALLBACK * disp__glPassTexCoordATI )(GLuint, GLuint, GLenum) = NULL;
-
+
void (CALLBACK * disp__glSampleMapATI )(GLuint, GLuint, GLenum) = NULL;
-
+
void (CALLBACK * disp__glColorFragmentOp1ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glColorFragmentOp2ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glColorFragmentOp3ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glAlphaFragmentOp1ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glAlphaFragmentOp2ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glAlphaFragmentOp3ATI )(GLenum, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glSetFragmentShaderConstantATI )(GLuint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glPNTrianglesiATI )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glPNTrianglesfATI )(GLenum, GLfloat) = NULL;
-
+
GLuint (CALLBACK * disp__glNewObjectBufferATI )(GLsizei, const GLvoid *, GLenum) = NULL;
-
+
GLboolean (CALLBACK * disp__glIsObjectBufferATI )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glUpdateObjectBufferATI )(GLuint, GLuint, GLsizei, const GLvoid *, GLenum) = NULL;
-
+
void (CALLBACK * disp__glGetObjectBufferfvATI )(GLuint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetObjectBufferivATI )(GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glDeleteObjectBufferATI )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glArrayObjectATI )(GLenum, GLint, GLenum, GLsizei, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glGetArrayObjectfvATI )(GLenum, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetArrayObjectivATI )(GLenum, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glVariantArrayObjectATI )(GLuint, GLenum, GLsizei, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glGetVariantArrayObjectfvATI )(GLuint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetVariantArrayObjectivATI )(GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glBeginVertexShaderEXT )(void) = NULL;
-
+
void (CALLBACK * disp__glEndVertexShaderEXT )(void) = NULL;
-
+
void (CALLBACK * disp__glBindVertexShaderEXT )(GLuint) = NULL;
-
+
GLuint (CALLBACK * disp__glGenVertexShadersEXT )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glDeleteVertexShaderEXT )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glShaderOp1EXT )(GLenum, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glShaderOp2EXT )(GLenum, GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glShaderOp3EXT )(GLenum, GLuint, GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glSwizzleEXT )(GLuint, GLuint, GLenum, GLenum, GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glWriteMaskEXT )(GLuint, GLuint, GLenum, GLenum, GLenum, GLenum) = NULL;
-
+
void (CALLBACK * disp__glInsertComponentEXT )(GLuint, GLuint, GLuint) = NULL;
-
+
void (CALLBACK * disp__glExtractComponentEXT )(GLuint, GLuint, GLuint) = NULL;
-
+
GLuint (CALLBACK * disp__glGenSymbolsEXT )(GLenum, GLenum, GLenum, GLuint) = NULL;
-
+
void (CALLBACK * disp__glSetInvariantEXT )(GLuint, GLenum, const void *) = NULL;
-
+
void (CALLBACK * disp__glSetLocalConstantEXT )(GLuint, GLenum, const void *) = NULL;
-
+
void (CALLBACK * disp__glVariantbvEXT )(GLuint, const GLbyte *) = NULL;
-
+
void (CALLBACK * disp__glVariantsvEXT )(GLuint, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVariantivEXT )(GLuint, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glVariantfvEXT )(GLuint, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVariantdvEXT )(GLuint, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVariantubvEXT )(GLuint, const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__glVariantusvEXT )(GLuint, const GLushort *) = NULL;
-
+
void (CALLBACK * disp__glVariantuivEXT )(GLuint, const GLuint *) = NULL;
-
+
void (CALLBACK * disp__glVariantPointerEXT )(GLuint, GLenum, GLuint, const void *) = NULL;
-
+
void (CALLBACK * disp__glEnableVariantClientStateEXT )(GLuint) = NULL;
-
+
void (CALLBACK * disp__glDisableVariantClientStateEXT )(GLuint) = NULL;
-
+
GLuint (CALLBACK * disp__glBindLightParameterEXT )(GLenum, GLenum) = NULL;
-
+
GLuint (CALLBACK * disp__glBindMaterialParameterEXT )(GLenum, GLenum) = NULL;
-
+
GLuint (CALLBACK * disp__glBindTexGenParameterEXT )(GLenum, GLenum, GLenum) = NULL;
-
+
GLuint (CALLBACK * disp__glBindTextureUnitParameterEXT )(GLenum, GLenum) = NULL;
-
+
GLuint (CALLBACK * disp__glBindParameterEXT )(GLenum) = NULL;
-
+
GLboolean (CALLBACK * disp__glIsVariantEnabledEXT )(GLuint, GLenum) = NULL;
-
+
void (CALLBACK * disp__glGetVariantBooleanvEXT )(GLuint, GLenum, GLboolean *) = NULL;
-
+
void (CALLBACK * disp__glGetVariantIntegervEXT )(GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetVariantFloatvEXT )(GLuint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetVariantPointervEXT )(GLuint, GLenum, GLvoid **) = NULL;
-
+
void (CALLBACK * disp__glGetInvariantBooleanvEXT )(GLuint, GLenum, GLboolean *) = NULL;
-
+
void (CALLBACK * disp__glGetInvariantIntegervEXT )(GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetInvariantFloatvEXT )(GLuint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glGetLocalConstantBooleanvEXT )(GLuint, GLenum, GLboolean *) = NULL;
-
+
void (CALLBACK * disp__glGetLocalConstantIntegervEXT )(GLuint, GLenum, GLint *) = NULL;
-
+
void (CALLBACK * disp__glGetLocalConstantFloatvEXT )(GLuint, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream1s )(GLenum, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertexStream1sv )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream1i )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glVertexStream1iv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream1f )(GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertexStream1fv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream1d )(GLenum, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertexStream1dv )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream2s )(GLenum, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertexStream2sv )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream2i )(GLenum, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glVertexStream2iv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream2f )(GLenum, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertexStream2fv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream2d )(GLenum, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertexStream2dv )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream3s )(GLenum, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertexStream3sv )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream3i )(GLenum, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glVertexStream3iv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream3f )(GLenum, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertexStream3fv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream3d )(GLenum, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertexStream3dv )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream4s )(GLenum, GLshort, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glVertexStream4sv )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream4i )(GLenum, GLint, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glVertexStream4iv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream4f )(GLenum, GLfloat, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glVertexStream4fv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glVertexStream4d )(GLenum, GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glVertexStream4dv )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3b )(GLenum, GLbyte, GLbyte, GLbyte) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3bv )(GLenum, const GLbyte *) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3s )(GLenum, GLshort, GLshort, GLshort) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3sv )(GLenum, const GLshort *) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3i )(GLenum, GLint, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3iv )(GLenum, const GLint *) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3f )(GLenum, GLfloat, GLfloat, GLfloat) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3fv )(GLenum, const GLfloat *) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3d )(GLenum, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__glNormalStream3dv )(GLenum, const GLdouble *) = NULL;
-
+
void (CALLBACK * disp__glClientActiveVertexStream )(GLenum) = NULL;
-
+
void (CALLBACK * disp__glVertexBlendEnvi )(GLenum, GLint) = NULL;
-
+
void (CALLBACK * disp__glVertexBlendEnvf )(GLenum, GLfloat) = NULL;
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/CNativeCode/gltool.c b/CNativeCode/gltool.c
index 5676290..d61e19a 100755
--- a/CNativeCode/gltool.c
+++ b/CNativeCode/gltool.c
@@ -186,7 +186,8 @@ int LIBAPIENTRY unloadGLLibrary ()
}
-int LIBAPIENTRY loadGLLibrary (const char * libGLName, const char * libGLUName)
+int LIBAPIENTRY loadGLLibrary (const char * libGLName, const char * libGLUName,
+ int verbose)
{
const char *envGLName = NULL;
const char *envGLUName = NULL;
@@ -203,13 +204,15 @@ int LIBAPIENTRY loadGLLibrary (const char * libGLName, const char * libGLUName)
if(envGLName!=NULL)
{
libGLName = envGLName;
- printf("GLTOOL: using env's GLTOOL_USE_GLLIB = %s\n", libGLName);
+ if(verbose)
+ printf("GLTOOL: using env's GLTOOL_USE_GLLIB = %s\n", libGLName);
}
if(envGLUName!=NULL)
{
libGLUName = envGLUName;
- printf("GLTOOL: using env's GLTOOL_USE_GLULIB = %s\n", libGLUName);
+ if(verbose)
+ printf("GLTOOL: using env's GLTOOL_USE_GLULIB = %s\n", libGLUName);
}
#ifdef _WIN32_
@@ -256,7 +259,8 @@ int LIBAPIENTRY loadGLLibrary (const char * libGLName, const char * libGLUName)
libHandleGLX = dlopen ("libglx.so", RTLD_LAZY | RTLD_GLOBAL);
if (libHandleGLX == NULL)
{
- printf ("GLINFO: cannot access GLX library libglx.so directly ...\n");
+ if(verbose)
+ printf ("GLINFO: cannot access GLX library libglx.so directly ...\n");
fflush (NULL);
}
@@ -279,13 +283,16 @@ int LIBAPIENTRY loadGLLibrary (const char * libGLName, const char * libGLUName)
}
#endif
+ if(verbose)
+ {
#ifdef _MAC_OSX_
- printf ("GLINFO: loadGLLibrary - no special code implemented !\n");
+ printf ("GLINFO: loadGLLibrary - no special code implemented !\n");
#else
- printf ("GLINFO: loaded OpenGL library %s!\n", libGLName);
- printf ("GLINFO: loaded GLU library %s!\n", libGLUName);
+ printf ("GLINFO: loaded OpenGL library %s!\n", libGLName);
+ printf ("GLINFO: loaded GLU library %s!\n", libGLUName);
#endif
- fflush (NULL);
+ fflush (NULL);
+ }
_glLibsLoaded = 1;
@@ -294,7 +301,7 @@ int LIBAPIENTRY loadGLLibrary (const char * libGLName, const char * libGLUName)
void * LIBAPIENTRY getGLProcAddressHelper
(const char * libGLName, const char * libGLUName,
- const char *func, int *method, int debug, int verbose)
+ const char *func, int *method, int verbose)
{
void * funcPtr = NULL;
int lmethod;
@@ -302,7 +309,7 @@ void * LIBAPIENTRY getGLProcAddressHelper
#ifdef _WIN32_
static int __firstAccess = 1;
- if(!loadGLLibrary (libGLName, libGLUName))
+ if(!loadGLLibrary (libGLName, libGLUName, verbose))
return NULL;
if (disp__wglGetProcAddress == NULL && __firstAccess)
@@ -310,7 +317,7 @@ void * LIBAPIENTRY getGLProcAddressHelper
disp__wglGetProcAddress = ( PROC (CALLBACK *)(LPCSTR) )
GetProcAddress (hDLL_OPENGL32, "wglGetProcAddress");
- if (disp__wglGetProcAddress != NULL /* && verbose */)
+ if (disp__wglGetProcAddress != NULL && verbose )
{
printf ("GLINFO: found wglGetProcAddress in %s\n", libGLName);
fflush (NULL);
@@ -318,7 +325,7 @@ void * LIBAPIENTRY getGLProcAddressHelper
if (disp__wglGetProcAddress == NULL)
{
- printf ("GLINFO: can't find wglGetProcAddress in %s\n", libGLName);
+ printf ("GLINFO: can't find wglGetProcAddress in %s\n", libGLName);
}
}
__firstAccess = 0;
@@ -350,7 +357,7 @@ void * LIBAPIENTRY getGLProcAddressHelper
*/
static int __firstAccess = 1;
- if(!loadGLLibrary (libGLName, libGLUName))
+ if(!loadGLLibrary (libGLName, libGLUName, verbose))
return NULL;
if (disp__glXGetProcAddress == NULL && __firstAccess)
@@ -458,7 +465,7 @@ void * LIBAPIENTRY getGLProcAddressHelper
static int firstTime = 1;
#endif
- if(!loadGLLibrary (libGLName, libGLUName))
+ if(!loadGLLibrary (libGLName, libGLUName, verbose))
return NULL;
c2pstrcpy ( funcName, func );
@@ -505,7 +512,7 @@ void * LIBAPIENTRY getGLProcAddressHelper
if (funcPtr == NULL)
{
- if (debug || verbose)
+ if (verbose)
{
printf ("GLINFO: %s (%d): not implemented !\n", func, lmethod);
fflush (NULL);
@@ -523,7 +530,8 @@ void * LIBAPIENTRY getGLProcAddressHelper
void LIBAPIENTRY fetch_GL_FUNCS (const char * libGLName,
- const char * libGLUName, int force, int reload)
+ const char * libGLUName, int force, int reload,
+ int verbose)
{
static int _firstRun = 1;
@@ -536,11 +544,11 @@ void LIBAPIENTRY fetch_GL_FUNCS (const char * libGLName,
if(!_firstRun)
return;
- if(!loadGLLibrary (libGLName, libGLUName))
+ if(!loadGLLibrary (libGLName, libGLUName, verbose))
return;
}
- #define GET_GL_PROCADDRESS(a) getGLProcAddressHelper (libGLName, libGLUName, (a), NULL, 0, 0);
+ #define GET_GL_PROCADDRESS(a) getGLProcAddressHelper (libGLName, libGLUName, (a), NULL, verbose);
#include "gl-disp-fetch.hc"
#include "glu-disp-fetch.hc"
@@ -548,11 +556,11 @@ void LIBAPIENTRY fetch_GL_FUNCS (const char * libGLName,
_firstRun=0;
#ifdef _X11_
- fetch_GLX_FUNCS (libGLName, libGLUName, force, reload);
+ fetch_GLX_FUNCS (libGLName, libGLUName, force, reload, verbose);
#endif
#ifdef _WIN32_
- fetch_WGL_FUNCS (libGLName, libGLUName, force, reload);
+ fetch_WGL_FUNCS (libGLName, libGLUName, force, reload, verbose);
#endif
}
diff --git a/CNativeCode/gltool.h b/CNativeCode/gltool.h
index fa8a639..823834c 100755
--- a/CNativeCode/gltool.h
+++ b/CNativeCode/gltool.h
@@ -143,12 +143,13 @@
LIBAPI int LIBAPIENTRY unloadGLLibrary (void);
LIBAPI int LIBAPIENTRY loadGLLibrary
- (const char * libGLName, const char * libGLUName);
+ (const char * libGLName, const char * libGLUName, int verbose);
LIBAPI void * LIBAPIENTRY getGLProcAddressHelper
(const char * libGLName, const char * libGLUName,
- const char *func, int *method, int debug, int verbose);
+ const char *func, int *method, int verbose);
LIBAPI void LIBAPIENTRY fetch_GL_FUNCS
- (const char * libGLName, const char * libGLUName, int force, int reload);
+ (const char * libGLName, const char * libGLUName, int force,
+ int reload, int verbose);
#endif
diff --git a/CNativeCode/glu-disp-fetch.hc b/CNativeCode/glu-disp-fetch.hc
index 7251b21..b7e6f54 100755
--- a/CNativeCode/glu-disp-fetch.hc
+++ b/CNativeCode/glu-disp-fetch.hc
@@ -44,143 +44,143 @@
* Reading from file: glu-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFuncJauJNI !
*/
-
+
disp__gluBeginCurve = (void (CALLBACK *)(GLUnurbs *))
GET_GL_PROCADDRESS ("gluBeginCurve");
-
+
disp__gluBeginPolygon = (void (CALLBACK *)(GLUtesselator *))
GET_GL_PROCADDRESS ("gluBeginPolygon");
-
+
disp__gluBeginSurface = (void (CALLBACK *)(GLUnurbs *))
GET_GL_PROCADDRESS ("gluBeginSurface");
-
+
disp__gluBeginTrim = (void (CALLBACK *)(GLUnurbs *))
GET_GL_PROCADDRESS ("gluBeginTrim");
-
+
disp__gluBuild1DMipmapLevels = (GLint (CALLBACK *)(GLenum, GLint, GLsizei, GLenum, GLenum, GLint, GLint, GLint, const void *))
GET_GL_PROCADDRESS ("gluBuild1DMipmapLevels");
-
+
disp__gluBuild1DMipmaps = (GLint (CALLBACK *)(GLenum, GLint, GLsizei, GLenum, GLenum, const void *))
GET_GL_PROCADDRESS ("gluBuild1DMipmaps");
-
+
disp__gluBuild2DMipmapLevels = (GLint (CALLBACK *)(GLenum, GLint, GLsizei, GLsizei, GLenum, GLenum, GLint, GLint, GLint, const void *))
GET_GL_PROCADDRESS ("gluBuild2DMipmapLevels");
-
+
disp__gluBuild2DMipmaps = (GLint (CALLBACK *)(GLenum, GLint, GLsizei, GLsizei, GLenum, GLenum, const void *))
GET_GL_PROCADDRESS ("gluBuild2DMipmaps");
-
+
disp__gluBuild3DMipmapLevels = (GLint (CALLBACK *)(GLenum, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, GLint, GLint, GLint, const void *))
GET_GL_PROCADDRESS ("gluBuild3DMipmapLevels");
-
+
disp__gluBuild3DMipmaps = (GLint (CALLBACK *)(GLenum, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const void *))
GET_GL_PROCADDRESS ("gluBuild3DMipmaps");
-
+
disp__gluCheckExtension = (GLboolean (CALLBACK *)(const GLubyte *, const GLubyte *))
GET_GL_PROCADDRESS ("gluCheckExtension");
-
+
disp__gluCylinder = (void (CALLBACK *)(GLUquadric *, GLdouble, GLdouble, GLdouble, GLint, GLint))
GET_GL_PROCADDRESS ("gluCylinder");
-
+
disp__gluDisk = (void (CALLBACK *)(GLUquadric *, GLdouble, GLdouble, GLint, GLint))
GET_GL_PROCADDRESS ("gluDisk");
-
+
disp__gluEndCurve = (void (CALLBACK *)(GLUnurbs *))
GET_GL_PROCADDRESS ("gluEndCurve");
-
+
disp__gluEndPolygon = (void (CALLBACK *)(GLUtesselator *))
GET_GL_PROCADDRESS ("gluEndPolygon");
-
+
disp__gluEndSurface = (void (CALLBACK *)(GLUnurbs *))
GET_GL_PROCADDRESS ("gluEndSurface");
-
+
disp__gluEndTrim = (void (CALLBACK *)(GLUnurbs *))
GET_GL_PROCADDRESS ("gluEndTrim");
-
+
disp__gluGetNurbsProperty = (void (CALLBACK *)(GLUnurbs *, GLenum, GLfloat *))
GET_GL_PROCADDRESS ("gluGetNurbsProperty");
-
+
disp__gluGetTessProperty = (void (CALLBACK *)(GLUtesselator *, GLenum, GLdouble *))
GET_GL_PROCADDRESS ("gluGetTessProperty");
-
+
disp__gluLoadSamplingMatrices = (void (CALLBACK *)(GLUnurbs *, const GLfloat *, const GLfloat *, const GLint *))
GET_GL_PROCADDRESS ("gluLoadSamplingMatrices");
-
+
disp__gluLookAt = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("gluLookAt");
-
+
disp__gluNextContour = (void (CALLBACK *)(GLUtesselator *, GLenum))
GET_GL_PROCADDRESS ("gluNextContour");
-
+
disp__gluNurbsCurve = (void (CALLBACK *)(GLUnurbs *, GLint, GLfloat *, GLint, GLfloat *, GLint, GLenum))
GET_GL_PROCADDRESS ("gluNurbsCurve");
-
+
disp__gluNurbsProperty = (void (CALLBACK *)(GLUnurbs *, GLenum, GLfloat))
GET_GL_PROCADDRESS ("gluNurbsProperty");
-
+
disp__gluNurbsSurface = (void (CALLBACK *)(GLUnurbs *, GLint, GLfloat *, GLint, GLfloat *, GLint, GLint, GLfloat *, GLint, GLint, GLenum))
GET_GL_PROCADDRESS ("gluNurbsSurface");
-
+
disp__gluOrtho2D = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("gluOrtho2D");
-
+
disp__gluPartialDisk = (void (CALLBACK *)(GLUquadric *, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("gluPartialDisk");
-
+
disp__gluPerspective = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("gluPerspective");
-
+
disp__gluPickMatrix = (void (CALLBACK *)(GLdouble, GLdouble, GLdouble, GLdouble, GLint *))
GET_GL_PROCADDRESS ("gluPickMatrix");
-
+
disp__gluProject = (GLint (CALLBACK *)(GLdouble, GLdouble, GLdouble, const GLdouble *, const GLdouble *, const GLint *, GLdouble *, GLdouble *, GLdouble *))
GET_GL_PROCADDRESS ("gluProject");
-
+
disp__gluPwlCurve = (void (CALLBACK *)(GLUnurbs *, GLint, GLfloat *, GLint, GLenum))
GET_GL_PROCADDRESS ("gluPwlCurve");
-
+
disp__gluQuadricDrawStyle = (void (CALLBACK *)(GLUquadric *, GLenum))
GET_GL_PROCADDRESS ("gluQuadricDrawStyle");
-
+
disp__gluQuadricNormals = (void (CALLBACK *)(GLUquadric *, GLenum))
GET_GL_PROCADDRESS ("gluQuadricNormals");
-
+
disp__gluQuadricOrientation = (void (CALLBACK *)(GLUquadric *, GLenum))
GET_GL_PROCADDRESS ("gluQuadricOrientation");
-
+
disp__gluQuadricTexture = (void (CALLBACK *)(GLUquadric *, GLboolean))
GET_GL_PROCADDRESS ("gluQuadricTexture");
-
+
disp__gluScaleImage = (GLint (CALLBACK *)(GLenum, GLsizei, GLsizei, GLenum, const void *, GLsizei, GLsizei, GLenum, GLvoid *))
GET_GL_PROCADDRESS ("gluScaleImage");
-
+
disp__gluSphere = (void (CALLBACK *)(GLUquadric *, GLdouble, GLint, GLint))
GET_GL_PROCADDRESS ("gluSphere");
-
+
disp__gluTessBeginContour = (void (CALLBACK *)(GLUtesselator *))
GET_GL_PROCADDRESS ("gluTessBeginContour");
-
+
disp__gluTessBeginPolygon = (void (CALLBACK *)(GLUtesselator *, GLvoid *))
GET_GL_PROCADDRESS ("gluTessBeginPolygon");
-
+
disp__gluTessEndContour = (void (CALLBACK *)(GLUtesselator *))
GET_GL_PROCADDRESS ("gluTessEndContour");
-
+
disp__gluTessEndPolygon = (void (CALLBACK *)(GLUtesselator *))
GET_GL_PROCADDRESS ("gluTessEndPolygon");
-
+
disp__gluTessNormal = (void (CALLBACK *)(GLUtesselator *, GLdouble, GLdouble, GLdouble))
GET_GL_PROCADDRESS ("gluTessNormal");
-
+
disp__gluTessProperty = (void (CALLBACK *)(GLUtesselator *, GLenum, GLdouble))
GET_GL_PROCADDRESS ("gluTessProperty");
-
+
disp__gluTessVertex = (void (CALLBACK *)(GLUtesselator *, GLdouble *, GLvoid *))
GET_GL_PROCADDRESS ("gluTessVertex");
-
+
disp__gluUnProject = (GLint (CALLBACK *)(GLdouble, GLdouble, GLdouble, const GLdouble *, const GLdouble *, const GLint *, GLdouble *, GLdouble *, GLdouble *))
GET_GL_PROCADDRESS ("gluUnProject");
-
+
disp__gluUnProject4 = (GLint (CALLBACK *)(GLdouble, GLdouble, GLdouble, GLdouble, const GLdouble *, const GLdouble *, const GLint *, GLdouble, GLdouble, GLdouble *, GLdouble *, GLdouble *, GLdouble *))
GET_GL_PROCADDRESS ("gluUnProject4");
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/CNativeCode/glu-disp-var.h b/CNativeCode/glu-disp-var.h
index 9f45d41..4fa9129 100755
--- a/CNativeCode/glu-disp-var.h
+++ b/CNativeCode/glu-disp-var.h
@@ -31,373 +31,373 @@ LIBAPI GLUtesselator* (CALLBACK * disp__gluNewTess) ( void );
* Reading from file: glu-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFuncJauJNI !
*/
-
-/**
- * Original Function-Prototype :
- *
extern void glVertexBlendEnvf ( GLenum , GLfloat ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluBeginCurve )(GLUnurbs *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluBeginPolygon )(GLUtesselator *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluBeginSurface )(GLUnurbs *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluBeginTrim )(GLUnurbs *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluBeginTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluBuild1DMipmapLevels )(GLenum, GLint, GLsizei, GLenum, GLenum, GLint, GLint, GLint, const void *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluBuild1DMipmaps )(GLenum, GLint, GLsizei, GLenum, GLenum, const void *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild1DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluBuild2DMipmapLevels )(GLenum, GLint, GLsizei, GLsizei, GLenum, GLenum, GLint, GLint, GLint, const void *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluBuild2DMipmaps )(GLenum, GLint, GLsizei, GLsizei, GLenum, GLenum, const void *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild2DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluBuild3DMipmapLevels )(GLenum, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, GLint, GLint, GLint, const void *);
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluBuild3DMipmaps )(GLenum, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const void *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluBuild3DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const void * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLboolean (CALLBACK * disp__gluCheckExtension )(const GLubyte *, const GLubyte *);
-
-/**
- * Original Function-Prototype :
- *
extern GLboolean gluCheckExtension ( const GLubyte * extName , const GLubyte * extString ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluCylinder )(GLUquadric *, GLdouble, GLdouble, GLdouble, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void gluCylinder ( GLUquadric * quad , GLdouble base , GLdouble top , GLdouble height , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluDisk )(GLUquadric *, GLdouble, GLdouble, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void gluDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluEndCurve )(GLUnurbs *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndCurve ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluEndPolygon )(GLUtesselator *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluEndSurface )(GLUnurbs *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndSurface ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluEndTrim )(GLUnurbs *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluEndTrim ( GLUnurbs * nurb ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluGetNurbsProperty )(GLUnurbs *, GLenum, GLfloat *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluGetTessProperty )(GLUtesselator *, GLenum, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluGetTessProperty ( GLUtesselator * tess , GLenum which , GLdouble * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluLoadSamplingMatrices )(GLUnurbs *, const GLfloat *, const GLfloat *, const GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluLoadSamplingMatrices ( GLUnurbs * nurb , const GLfloat * model , const GLfloat * perspective , const GLint * view ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluLookAt )(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void gluLookAt ( GLdouble eyeX , GLdouble eyeY , GLdouble eyeZ , GLdouble centerX , GLdouble centerY , GLdouble centerZ , GLdouble upX , GLdouble upY , GLdouble upZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluNextContour )(GLUtesselator *, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void gluNextContour ( GLUtesselator * tess , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluNurbsCurve )(GLUnurbs *, GLint, GLfloat *, GLint, GLfloat *, GLint, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsCurve ( GLUnurbs * nurb , GLint knotCount , GLfloat * knots , GLint stride , GLfloat * control , GLint order , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluNurbsProperty )(GLUnurbs *, GLenum, GLfloat);
-
-/**
- * Original Function-Prototype :
- *
extern void gluNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat value ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluNurbsSurface )(GLUnurbs *, GLint, GLfloat *, GLint, GLfloat *, GLint, GLint, GLfloat *, GLint, GLint, GLenum);
-
-/**
- * Original Function-Prototype :
- *
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 ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluOrtho2D )(GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void gluOrtho2D ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluPartialDisk )(GLUquadric *, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void gluPartialDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops , GLdouble start , GLdouble sweep ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluPerspective )(GLdouble, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void gluPerspective ( GLdouble fovy , GLdouble aspect , GLdouble zNear , GLdouble zFar ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluPickMatrix )(GLdouble, GLdouble, GLdouble, GLdouble, GLint *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluPickMatrix ( GLdouble x , GLdouble y , GLdouble delX , GLdouble delY , GLint * viewport ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluProject )(GLdouble, GLdouble, GLdouble, const GLdouble *, const GLdouble *, const GLint *, GLdouble *, GLdouble *, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluProject ( GLdouble objX , GLdouble objY , GLdouble objZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * winX , GLdouble * winY , GLdouble * winZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluPwlCurve )(GLUnurbs *, GLint, GLfloat *, GLint, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void gluPwlCurve ( GLUnurbs * nurb , GLint count , GLfloat * data , GLint stride , GLenum type ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluQuadricDrawStyle )(GLUquadric *, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricDrawStyle ( GLUquadric * quad , GLenum draw ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluQuadricNormals )(GLUquadric *, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricNormals ( GLUquadric * quad , GLenum normal ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluQuadricOrientation )(GLUquadric *, GLenum);
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricOrientation ( GLUquadric * quad , GLenum orientation ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluQuadricTexture )(GLUquadric *, GLboolean);
-
-/**
- * Original Function-Prototype :
- *
extern void gluQuadricTexture ( GLUquadric * quad , GLboolean texture ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluScaleImage )(GLenum, GLsizei, GLsizei, GLenum, const void *, GLsizei, GLsizei, GLenum, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluScaleImage ( GLenum format , GLsizei wIn , GLsizei hIn , GLenum typeIn , const void * dataIn , GLsizei wOut , GLsizei hOut , GLenum typeOut , GLvoid * dataOut ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluSphere )(GLUquadric *, GLdouble, GLint, GLint);
-
-/**
- * Original Function-Prototype :
- *
extern void gluSphere ( GLUquadric * quad , GLdouble radius , GLint slices , GLint stacks ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluTessBeginContour )(GLUtesselator *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluTessBeginPolygon )(GLUtesselator *, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluTessEndContour )(GLUtesselator *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndContour ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluTessEndPolygon )(GLUtesselator *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessEndPolygon ( GLUtesselator * tess ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluTessNormal )(GLUtesselator *, GLdouble, GLdouble, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluTessProperty )(GLUtesselator *, GLenum, GLdouble);
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI void (CALLBACK * disp__gluTessVertex )(GLUtesselator *, GLdouble *, GLvoid *);
-
-/**
- * Original Function-Prototype :
- *
extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluUnProject )(GLdouble, GLdouble, GLdouble, const GLdouble *, const GLdouble *, const GLint *, GLdouble *, GLdouble *, GLdouble *);
-
-/**
- * Original Function-Prototype :
- *
extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ;
- *
- */
+ *
+
+/**
+ * Original Function-Prototype :
+ *
+ */
LIBAPI GLint (CALLBACK * disp__gluUnProject4 )(GLdouble, GLdouble, GLdouble, GLdouble, const GLdouble *, const GLdouble *, const GLint *, GLdouble, GLdouble, GLdouble *, GLdouble *, GLdouble *, GLdouble *);
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/CNativeCode/glu-disp-var.hc b/CNativeCode/glu-disp-var.hc
index 68b06d8..6231cc3 100755
--- a/CNativeCode/glu-disp-var.hc
+++ b/CNativeCode/glu-disp-var.hc
@@ -32,97 +32,97 @@ GLUtesselator* (CALLBACK * disp__gluNewTess) ( void ) = NULL;
* Reading from file: glu-proto-auto.orig.h . . .
* Destination-Class: gl4java_GLUFuncJauJNI !
*/
-
+
void (CALLBACK * disp__gluBeginCurve )(GLUnurbs *) = NULL;
-
+
void (CALLBACK * disp__gluBeginPolygon )(GLUtesselator *) = NULL;
-
+
void (CALLBACK * disp__gluBeginSurface )(GLUnurbs *) = NULL;
-
+
void (CALLBACK * disp__gluBeginTrim )(GLUnurbs *) = NULL;
-
+
GLint (CALLBACK * disp__gluBuild1DMipmapLevels )(GLenum, GLint, GLsizei, GLenum, GLenum, GLint, GLint, GLint, const void *) = NULL;
-
+
GLint (CALLBACK * disp__gluBuild1DMipmaps )(GLenum, GLint, GLsizei, GLenum, GLenum, const void *) = NULL;
-
+
GLint (CALLBACK * disp__gluBuild2DMipmapLevels )(GLenum, GLint, GLsizei, GLsizei, GLenum, GLenum, GLint, GLint, GLint, const void *) = NULL;
-
+
GLint (CALLBACK * disp__gluBuild2DMipmaps )(GLenum, GLint, GLsizei, GLsizei, GLenum, GLenum, const void *) = NULL;
-
+
GLint (CALLBACK * disp__gluBuild3DMipmapLevels )(GLenum, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, GLint, GLint, GLint, const void *) = NULL;
-
+
GLint (CALLBACK * disp__gluBuild3DMipmaps )(GLenum, GLint, GLsizei, GLsizei, GLsizei, GLenum, GLenum, const void *) = NULL;
-
+
GLboolean (CALLBACK * disp__gluCheckExtension )(const GLubyte *, const GLubyte *) = NULL;
-
+
void (CALLBACK * disp__gluCylinder )(GLUquadric *, GLdouble, GLdouble, GLdouble, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__gluDisk )(GLUquadric *, GLdouble, GLdouble, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__gluEndCurve )(GLUnurbs *) = NULL;
-
+
void (CALLBACK * disp__gluEndPolygon )(GLUtesselator *) = NULL;
-
+
void (CALLBACK * disp__gluEndSurface )(GLUnurbs *) = NULL;
-
+
void (CALLBACK * disp__gluEndTrim )(GLUnurbs *) = NULL;
-
+
void (CALLBACK * disp__gluGetNurbsProperty )(GLUnurbs *, GLenum, GLfloat *) = NULL;
-
+
void (CALLBACK * disp__gluGetTessProperty )(GLUtesselator *, GLenum, GLdouble *) = NULL;
-
+
void (CALLBACK * disp__gluLoadSamplingMatrices )(GLUnurbs *, const GLfloat *, const GLfloat *, const GLint *) = NULL;
-
+
void (CALLBACK * disp__gluLookAt )(GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__gluNextContour )(GLUtesselator *, GLenum) = NULL;
-
+
void (CALLBACK * disp__gluNurbsCurve )(GLUnurbs *, GLint, GLfloat *, GLint, GLfloat *, GLint, GLenum) = NULL;
-
+
void (CALLBACK * disp__gluNurbsProperty )(GLUnurbs *, GLenum, GLfloat) = NULL;
-
+
void (CALLBACK * disp__gluNurbsSurface )(GLUnurbs *, GLint, GLfloat *, GLint, GLfloat *, GLint, GLint, GLfloat *, GLint, GLint, GLenum) = NULL;
-
+
void (CALLBACK * disp__gluOrtho2D )(GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__gluPartialDisk )(GLUquadric *, GLdouble, GLdouble, GLint, GLint, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__gluPerspective )(GLdouble, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__gluPickMatrix )(GLdouble, GLdouble, GLdouble, GLdouble, GLint *) = NULL;
-
+
GLint (CALLBACK * disp__gluProject )(GLdouble, GLdouble, GLdouble, const GLdouble *, const GLdouble *, const GLint *, GLdouble *, GLdouble *, GLdouble *) = NULL;
-
+
void (CALLBACK * disp__gluPwlCurve )(GLUnurbs *, GLint, GLfloat *, GLint, GLenum) = NULL;
-
+
void (CALLBACK * disp__gluQuadricDrawStyle )(GLUquadric *, GLenum) = NULL;
-
+
void (CALLBACK * disp__gluQuadricNormals )(GLUquadric *, GLenum) = NULL;
-
+
void (CALLBACK * disp__gluQuadricOrientation )(GLUquadric *, GLenum) = NULL;
-
+
void (CALLBACK * disp__gluQuadricTexture )(GLUquadric *, GLboolean) = NULL;
-
+
GLint (CALLBACK * disp__gluScaleImage )(GLenum, GLsizei, GLsizei, GLenum, const void *, GLsizei, GLsizei, GLenum, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__gluSphere )(GLUquadric *, GLdouble, GLint, GLint) = NULL;
-
+
void (CALLBACK * disp__gluTessBeginContour )(GLUtesselator *) = NULL;
-
+
void (CALLBACK * disp__gluTessBeginPolygon )(GLUtesselator *, GLvoid *) = NULL;
-
+
void (CALLBACK * disp__gluTessEndContour )(GLUtesselator *) = NULL;
-
+
void (CALLBACK * disp__gluTessEndPolygon )(GLUtesselator *) = NULL;
-
+
void (CALLBACK * disp__gluTessNormal )(GLUtesselator *, GLdouble, GLdouble, GLdouble) = NULL;
-
+
void (CALLBACK * disp__gluTessProperty )(GLUtesselator *, GLenum, GLdouble) = NULL;
-
+
void (CALLBACK * disp__gluTessVertex )(GLUtesselator *, GLdouble *, GLvoid *) = NULL;
-
+
GLint (CALLBACK * disp__gluUnProject )(GLdouble, GLdouble, GLdouble, const GLdouble *, const GLdouble *, const GLint *, GLdouble *, GLdouble *, GLdouble *) = NULL;
-
+
GLint (CALLBACK * disp__gluUnProject4 )(GLdouble, GLdouble, GLdouble, GLdouble, const GLdouble *, const GLdouble *, const GLint *, GLdouble, GLdouble, GLdouble *, GLdouble *, GLdouble *, GLdouble *) = NULL;
-
-/* C2J Parser Version 3.0: Java program parsed successfully. */
+
+/* C2J Parser Version 3.0: Java program parsed successfully. */
diff --git a/CNativeCode/glx-disp-fetch.hc b/CNativeCode/glx-disp-fetch.hc
index b3ee5c9..75f8238 100755
--- a/CNativeCode/glx-disp-fetch.hc
+++ b/CNativeCode/glx-disp-fetch.hc
@@ -41,3 +41,9 @@
disp__glXSwapBuffers = (void (CALLBACK *) (Display *, GLXDrawable))
GET_GL_PROCADDRESS("glXSwapBuffers");
+ /* NVidia support */
+ disp__glXAllocateMemoryNV = (void* (CALLBACK * )(int, float, float, float))
+ GET_GL_PROCADDRESS("glXAllocateMemoryNV");
+
+ disp__glXFreeMemoryNV = (void (CALLBACK * )(void*))
+ GET_GL_PROCADDRESS("glXFreeMemoryNV");
diff --git a/CNativeCode/glx-disp-var.h b/CNativeCode/glx-disp-var.h
index 2ac07c7..2974c8f 100755
--- a/CNativeCode/glx-disp-var.h
+++ b/CNativeCode/glx-disp-var.h
@@ -19,3 +19,6 @@ LIBAPI int (CALLBACK * disp__glXGetConfig) (Display *, XVisualInfo *, int, int *
LIBAPI Bool (CALLBACK * disp__glXMakeCurrent) (Display *, GLXDrawable, GLXContext);
LIBAPI void (CALLBACK * disp__glXSwapBuffers) (Display *, GLXDrawable);
+/* NVidia support */
+LIBAPI void* (CALLBACK * disp__glXAllocateMemoryNV)(int, float, float, float);
+LIBAPI void (CALLBACK * disp__glXFreeMemoryNV) (void*);
diff --git a/CNativeCode/glx-disp-var.hc b/CNativeCode/glx-disp-var.hc
index 5c04c37..b4e9c29 100755
--- a/CNativeCode/glx-disp-var.hc
+++ b/CNativeCode/glx-disp-var.hc
@@ -19,3 +19,6 @@ int (CALLBACK * disp__glXGetConfig) (Display *, XVisualInfo *, int, int *) = NUL
Bool (CALLBACK * disp__glXMakeCurrent) (Display *, GLXDrawable, GLXContext) = NULL;
void (CALLBACK * disp__glXSwapBuffers) (Display *, GLXDrawable) = NULL;
+/* NVidia support */
+void* (CALLBACK * disp__glXAllocateMemoryNV)(int, float, float, float) = NULL;
+void (CALLBACK * disp__glXFreeMemoryNV) (void*) = NULL;
diff --git a/CNativeCode/glxtool.c b/CNativeCode/glxtool.c
index 449933d..5529018 100644
--- a/CNativeCode/glxtool.c
+++ b/CNativeCode/glxtool.c
@@ -19,7 +19,8 @@
* use fetch_GL_FUNCS (gltool.c) instead
*/
void LIBAPIENTRY fetch_GLX_FUNCS (const char * libGLName,
- const char * libGLUName, int force, int reload)
+ const char * libGLUName, int force, int reload,
+ int verbose)
{
static int _firstRun = 1;
@@ -31,7 +32,7 @@ void LIBAPIENTRY fetch_GLX_FUNCS (const char * libGLName,
return;
}
- #define GET_GL_PROCADDRESS(a) getGLProcAddressHelper (libGLName, libGLUName, (a), NULL, 1, 0);
+ #define GET_GL_PROCADDRESS(a) getGLProcAddressHelper (libGLName, libGLUName, (a), NULL, verbose);
#include "glx-disp-fetch.hc"
@@ -58,10 +59,10 @@ void LIBAPIENTRY fetch_GLX_FUNCS (const char * libGLName,
* be associated with the window
*/
int LIBAPIENTRY get_GC( Display *display, Window win, XVisualInfo *visual,
- GLXContext *gc, GLXContext gc_share,
+ GLXContext *gc, GLXContext gc_share, int tryDirect,
int verbose )
{
- int trial = 2;
+ int trial = tryDirect?2:1;
while(trial>0)
{
@@ -233,7 +234,7 @@ VisualGC LIBAPIENTRY findVisualGlX( Display *display,
}
}
- if(vgc.visual==NULL)
+ if(vgc.visual==NULL && !offscreen )
{
vgc.visual = findVisualIdByFeature( &visualList,
display, *pWin,
@@ -265,14 +266,21 @@ VisualGC LIBAPIENTRY findVisualGlX( Display *display,
if(pix!=NULL && vgc.visual !=NULL)
*pix = XCreatePixmap( display, rootWin, width, height,
vgc.visual->depth);
+ if(*pix==0)
+ {
+ fprintf(stderr, "GLINFO(%d): XCreatePixmap failed\n", j);
+ fflush(stderr);
+ *pix=0;
+ }
+
if(pix!=NULL && *pix!=0)
{
*pWin = disp__glXCreateGLXPixmap( display, vgc.visual, *pix );
if(*pWin==0)
{
+ fprintf(stderr, "GLINFO(%d): glXCreateGLXPixmap failed\n", j);
XFreePixmap(display, *pix);
*pix=0;
- fprintf(stderr, "GLINFO(%d): glXCreateGLXPixmap failed\n", j);
fflush(stderr);
}
} else {
@@ -295,7 +303,8 @@ VisualGC LIBAPIENTRY findVisualGlX( Display *display,
if( ownwin && newWin!=0 &&
gc_ret==-100 /* just a poss. test stage */ &&
(gc_ret=get_GC( display, newWin,
- vgc.visual, &(vgc.gc), shareWith, verbose)) == 0
+ vgc.visual, &(vgc.gc),
+ shareWith, 1, verbose)) == 0
)
{
vgc.success=1;
@@ -303,7 +312,8 @@ VisualGC LIBAPIENTRY findVisualGlX( Display *display,
}
else if( vgc.visual!=NULL && !ownwin && *pWin!=0 &&
(gc_ret=get_GC( display, *pWin,
- vgc.visual, &(vgc.gc), shareWith, verbose)) == 0
+ vgc.visual, &(vgc.gc),
+ shareWith, 1, verbose)) == 0
)
{
vgc.success=1;
@@ -486,7 +496,7 @@ XVisualInfo * LIBAPIENTRY findVisualIdByFeature( XVisualInfo ** visualList,
if(XGetWindowAttributes(disp, win, &xwa) == 0)
{
- fprintf(stderr, "\nERROR while fetching XWindowAttributes\n");
+ fprintf(stderr, "\nERROR while fetching win XWindowAttributes\n");
fflush(stderr);
return 0;
}
diff --git a/CNativeCode/glxtool.h b/CNativeCode/glxtool.h
index d6d7332..93c531f 100755
--- a/CNativeCode/glxtool.h
+++ b/CNativeCode/glxtool.h
@@ -29,7 +29,7 @@
LIBAPI int LIBAPIENTRY get_GC
( Display *display, Window win, XVisualInfo *visual,
- GLXContext *gc, GLXContext gc_share,
+ GLXContext *gc, GLXContext gc_share, int tryDirect,
int verbose );
LIBAPI int LIBAPIENTRY setVisualAttribListByGLCapabilities(
@@ -91,7 +91,8 @@
*/
LIBAPI void LIBAPIENTRY fetch_GLX_FUNCS
(const char * libGLName,
- const char * libGLUName, int force, int reload);
+ const char * libGLUName, int force,
+ int reload, int verbose);
LIBAPI int LIBAPIENTRY x11gl_myErrorHandler(
Display *pDisp, XErrorEvent *p_error);
diff --git a/CNativeCode/invokejvm.c b/CNativeCode/invokejvm.c
index 5cfa494..78e5699 100755
--- a/CNativeCode/invokejvm.c
+++ b/CNativeCode/invokejvm.c
@@ -16,15 +16,11 @@
static char * defargs[] = { "-loadgljlibs", "gl4java.GLContext", "-info" };
#ifdef _X11_
-static char * lib1name="libGL4JavaJauGljJNI13.so";
-static char * lib2name="libGL4JavaJauGLJNI12.so";
-static char * lib3name="libGL4JavaJauGLUJNI12.so";
+static char * libname="libGL4JavaJauGljJNI13.so";
#endif
#ifdef _WIN32_
-static char * lib1name="GL4JavaJauGljJNI13.DLL";
-static char * lib2name="GL4JavaJauGLJNI12.DLL";
-static char * lib3name="GL4JavaJauGLUJNI12.DLL";
+static char * libname="GL4JavaJauGljJNI13.DLL";
#endif
int main(int argc, char ** argv)
@@ -43,14 +39,10 @@ int main(int argc, char ** argv)
int opt_num=0, i;
int argidx=1;
#ifdef _WIN32_
- HMODULE lib1;
- HMODULE lib2;
- HMODULE lib3;
+ HMODULE lib;
#endif
#ifdef _X11_
- void * lib1;
- void * lib2;
- void * lib3;
+ void * lib;
#endif
char ** myargv;
@@ -74,42 +66,18 @@ int main(int argc, char ** argv)
printf("loading default gl4java libraries !\n");
argidx++;
#ifdef _X11_
- lib1 = dlopen (lib1name, RTLD_LAZY | RTLD_GLOBAL);
- if (lib1 == NULL)
+ lib = dlopen (libname, RTLD_LAZY | RTLD_GLOBAL);
+ if (lib == NULL)
{
- printf ("GLERROR: cannot access library %s\n", lib1name);
+ printf ("GLERROR: cannot access library %s\n", libname);
exit(1);
}
- lib2 = dlopen (lib2name, RTLD_LAZY | RTLD_GLOBAL);
- if (lib2 == NULL)
- {
- printf ("GLERROR: cannot access library %s\n", lib2name);
- exit(1);
- }
- lib3 = dlopen (lib3name, RTLD_LAZY | RTLD_GLOBAL);
- if (lib3 == NULL)
- {
- printf ("GLERROR: cannot access library %s\n", lib3name);
- exit(1);
- }
#endif
#ifdef _WIN32_
- lib1 = LoadLibrary (lib1name);
- if (lib1 == NULL)
- {
- printf ("GLERROR: cannot access library %s\n", lib1name);
- exit(1);
- }
- lib2 = LoadLibrary (lib2name);
- if (lib2 == NULL)
- {
- printf ("GLERROR: cannot access library %s\n", lib2name);
- exit(1);
- }
- lib3 = LoadLibrary (lib3name);
- if (lib3 == NULL)
+ lib = LoadLibrary (libname);
+ if (lib == NULL)
{
- printf ("GLERROR: cannot access library %s\n", lib3name);
+ printf ("GLERROR: cannot access library %s\n", libname);
exit(1);
}
#endif
@@ -204,38 +172,18 @@ int main(int argc, char ** argv)
}
#ifdef _X11_
- if(lib1!=NULL)
+ if(lib!=NULL)
{
- dlclose (lib1);
- lib1 = NULL;
+ dlclose (lib);
+ lib = NULL;
}
- if(lib2!=NULL)
- {
- dlclose (lib2);
- lib2 = NULL;
- }
- if(lib3!=NULL)
- {
- dlclose (lib3);
- lib3 = NULL;
- }
#endif
#ifdef _WIN32_
- if(lib1!=NULL)
- {
- FreeLibrary(lib1);
- lib1 = NULL;
- }
- if(lib2!=NULL)
- {
- FreeLibrary(lib2);
- lib2 = NULL;
- }
- if(lib3!=NULL)
+ if(lib!=NULL)
{
- FreeLibrary(lib3);
- lib3 = NULL;
+ FreeLibrary(lib);
+ lib = NULL;
}
#endif
diff --git a/CNativeCode/jni12tools.c b/CNativeCode/jni12tools.c
index b4236b3..09b948a 100644
--- a/CNativeCode/jni12tools.c
+++ b/CNativeCode/jni12tools.c
@@ -1,5 +1,7 @@
#include
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 ) ;
- *
- */
+ *
-
+
@@ -15,8 +15,6 @@
diff --git a/demos/GLFDemos/index_plugin13.html b/demos/GLFDemos/index_plugin13.html
index deb60a6..460859f 100644
--- a/demos/GLFDemos/index_plugin13.html
+++ b/demos/GLFDemos/index_plugin13.html
@@ -7,7 +7,7 @@
The Java2 (sdk, jre, plugin 1.3) policy file example to give GL4Java the necessary permissions (Click here) !
@@ -17,8 +17,6 @@
diff --git a/demos/HodglimsNeHe/index.html b/demos/HodglimsNeHe/index.html
index 89c5cf7..6c0aaa2 100644
--- a/demos/HodglimsNeHe/index.html
+++ b/demos/HodglimsNeHe/index.html
@@ -11,7 +11,7 @@
NeHe OpenGL Tutorial Demos
originally ported by
Hodglim
-for GL4Java >= 2.6.0.0:
+for GL4Java >= 2.8.1.0:
This demos have added requestFocus() statements,
especially for the events: mouseEntered and mouseClicked !
diff --git a/demos/HodglimsNeHe/index_plugin13.html b/demos/HodglimsNeHe/index_plugin13.html
index e3d74ab..741ae99 100644
--- a/demos/HodglimsNeHe/index_plugin13.html
+++ b/demos/HodglimsNeHe/index_plugin13.html
@@ -11,7 +11,7 @@
NeHe OpenGL Tutorial Demos
originally ported by
Hodglim
-for GL4Java >= 2.6.0.0:
+for GL4Java >= 2.8.1.0:
This demos have added requestFocus() statements,
especially for the events: mouseEntered and mouseClicked !
diff --git a/demos/MiscDemos/gearRenderer.java b/demos/MiscDemos/gearRenderer.java
new file mode 100644
index 0000000..345790a
--- /dev/null
+++ b/demos/MiscDemos/gearRenderer.java
@@ -0,0 +1,348 @@
+/**
+ * @(#) gears.java
+ * @(#) author: Brian Paul (converted to Java by Ron Cemer and Sven Goethel)
+ *
+ * This version is equal to Brian Paul's version 1.2 1999/10/21
+ */
+
+import java.awt.*;
+import java.awt.event.*;
+import java.lang.*;
+import java.util.*;
+import java.io.*;
+import gl4java.*;
+import gl4java.awt.*;
+import gl4java.drawable.*;
+
+/* Local GLAnimCanvas extension class */
+
+public class gearRenderer
+ implements GLEventListener, MouseListener, MouseMotionListener
+{
+ private static final float M_PI = 3.14159265f;
+
+ private long T0 = 0;
+ private long Frames = 0;
+
+ private float view_rotx = 20.0f, view_roty = 30.0f, view_rotz = 0.0f;
+ private int gear1, gear2, gear3;
+ private float angle = 0.0f;
+
+ private int prevMouseX, prevMouseY;
+ private boolean mouseRButtonDown = false;
+
+ private boolean showGL = false;
+
+ private GLFunc gl;
+ private GLUFunc glu;
+ private GLContext glj;
+ private GLDrawable gldrawable;
+
+ public gearRenderer(boolean showGL)
+ {
+ this.showGL=showGL;
+ }
+
+ public void init(GLDrawable drawable)
+ {
+ gl = drawable.getGL();
+ glu = drawable.getGLU();
+ glj = drawable.getGLContext();
+ this.gldrawable = drawable;
+
+ float pos[] = { 5.0f, 5.0f, 10.0f, 0.0f };
+ float red[] = { 0.8f, 0.1f, 0.0f, 1.0f };
+ float green[] = { 0.0f, 0.8f, 0.2f, 1.0f };
+ float blue[] = { 0.2f, 0.2f, 1.0f, 1.0f };
+
+ gl.glLightfv(GL_LIGHT0, GL_POSITION, pos);
+ gl.glEnable(GL_CULL_FACE);
+ gl.glEnable(GL_LIGHTING);
+ gl.glEnable(GL_LIGHT0);
+ gl.glEnable(GL_DEPTH_TEST);
+
+ /* make the gears */
+ gear1 = gl.glGenLists(1);
+ gl.glNewList(gear1, GL_COMPILE);
+ gl.glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, red);
+ gear(1.0f, 4.0f, 1.0f, 20, 0.7f);
+ gl.glEndList();
+
+ gear2 = gl.glGenLists(1);
+ gl.glNewList(gear2, GL_COMPILE);
+ gl.glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, green);
+ gear(0.5f, 2.0f, 2.0f, 10, 0.7f);
+ gl.glEndList();
+
+ gear3 = gl.glGenLists(1);
+ gl.glNewList(gear3, GL_COMPILE);
+ gl.glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, blue);
+ gear(1.3f, 2.0f, 0.5f, 10, 0.7f);
+ gl.glEndList();
+
+ gl.glEnable(GL_NORMALIZE);
+
+ glj.gljCheckGL();
+
+ drawable.addMouseListener(this);
+ drawable.addMouseMotionListener(this);
+
+ T0=System.currentTimeMillis();
+ }
+
+ public void cleanup(GLDrawable drawable)
+ {
+ System.out.println("destroy(): " + this);
+ drawable.removeMouseListener(this);
+ drawable.removeMouseMotionListener(this);
+ }
+
+ public void reshape(gl4java.drawable.GLDrawable gld,int width,int height)
+ {
+ float h = (float)height / (float)width;
+
+ gl.glViewport(0,0,width,height);
+ gl.glMatrixMode(GL_PROJECTION);
+ gl.glLoadIdentity();
+ gl.glFrustum(-1.0f, 1.0f, -h, h, 5.0f, 60.0f);
+ gl.glMatrixMode(GL_MODELVIEW);
+ gl.glLoadIdentity();
+ gl.glTranslatef(0.0f, 0.0f, -40.0f);
+ }
+
+ public void display(GLDrawable drawable)
+ {
+ if(showGL)
+ {
+ showGL=false;
+ System.out.println("GL VERSION : "+gl.glGetString(GL_VERSION));
+ System.out.println("GL RENDERER: "+gl.glGetString(GL_RENDERER));
+ System.out.println("GL VENDOR : "+gl.glGetString(GL_VENDOR));
+ }
+
+ angle += 2.0f;
+
+ gl.glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
+
+ gl.glPushMatrix();
+ gl.glRotatef(view_rotx, 1.0f, 0.0f, 0.0f);
+ gl.glRotatef(view_roty, 0.0f, 1.0f, 0.0f);
+ gl.glRotatef(view_rotz, 0.0f, 0.0f, 1.0f);
+
+ gl.glPushMatrix();
+ gl.glTranslatef(-3.0f, -2.0f, 0.0f);
+ gl.glRotatef(angle, 0.0f, 0.0f, 1.0f);
+ gl.glCallList(gear1);
+ gl.glPopMatrix();
+
+ gl.glPushMatrix();
+ gl.glTranslatef(3.1f, -2.0f, 0.0f);
+ gl.glRotatef(-2.0f * angle - 9.0f, 0.0f, 0.0f, 1.0f);
+ gl.glCallList(gear2);
+ gl.glPopMatrix();
+
+ gl.glPushMatrix();
+ gl.glTranslatef(-3.1f, 4.2f, 0.0f);
+ gl.glRotatef(-2.0f * angle - 25.0f, 0.0f, 0.0f, 1.0f);
+ gl.glCallList(gear3);
+ gl.glPopMatrix();
+
+ gl.glPopMatrix();
+
+ Frames++;
+ }
+
+ public void preDisplay(GLDrawable drawable)
+ {
+ }
+
+ public void postDisplay(GLDrawable drawable)
+ {
+ long t=System.currentTimeMillis();
+ if(t - T0 >= 5000)
+ {
+ double seconds = (double)(t - T0) / 1000.0;
+ double fps = (double)Frames / seconds;
+ System.out.println(Frames+" frames in "+seconds+" seconds = "+
+ fps+" FPS");
+ T0 = t;
+ Frames = 0;
+ }
+ }
+
+ private void gear
+ (float inner_radius,
+ float outer_radius,
+ float width,
+ int teeth,
+ float tooth_depth)
+ {
+ int i;
+ float r0, r1, r2;
+ float angle, da;
+ float u, v, len;
+
+ r0 = inner_radius;
+ r1 = outer_radius - tooth_depth / 2.0f;
+ r2 = outer_radius + tooth_depth / 2.0f;
+
+ da = 2.0f * M_PI / teeth / 4.0f;
+
+ gl.glShadeModel(GL_FLAT);
+
+ gl.glNormal3f(0.0f, 0.0f, 1.0f);
+
+ /* draw front face */
+ gl.glBegin(GL_QUAD_STRIP);
+ for (i = 0; i <= teeth; i++)
+ {
+ angle = i * 2.0f * M_PI / teeth;
+ gl.glVertex3f(r0 * (float)Math.cos(angle), r0 * (float)Math.sin(angle), width * 0.5f);
+ gl.glVertex3f(r1 * (float)Math.cos(angle), r1 * (float)Math.sin(angle), width * 0.5f);
+ if(i < teeth)
+ {
+ gl.glVertex3f(r0 * (float)Math.cos(angle), r0 * (float)Math.sin(angle), width * 0.5f);
+ gl.glVertex3f(r1 * (float)Math.cos(angle + 3.0f * da), r1 * (float)Math.sin(angle + 3.0f * da), width * 0.5f);
+ }
+ }
+ gl.glEnd();
+
+ /* draw front sides of teeth */
+ gl.glBegin(GL_QUADS);
+ for (i = 0; i < teeth; i++)
+ {
+ angle = i * 2.0f * M_PI / teeth;
+ gl.glVertex3f(r1 * (float)Math.cos(angle), r1 * (float)Math.sin(angle), width * 0.5f);
+ gl.glVertex3f(r2 * (float)Math.cos(angle + da), r2 * (float)Math.sin(angle + da), width * 0.5f);
+ gl.glVertex3f(r2 * (float)Math.cos(angle + 2.0f * da), r2 * (float)Math.sin(angle + 2.0f * da), width * 0.5f);
+ gl.glVertex3f(r1 * (float)Math.cos(angle + 3.0f * da), r1 * (float)Math.sin(angle + 3.0f * da), width * 0.5f);
+ }
+ gl.glEnd();
+
+ /* draw back face */
+ gl.glBegin(GL_QUAD_STRIP);
+ for (i = 0; i <= teeth; i++)
+ {
+ angle = i * 2.0f * M_PI / teeth;
+ gl.glVertex3f(r1 * (float)Math.cos(angle), r1 * (float)Math.sin(angle), -width * 0.5f);
+ gl.glVertex3f(r0 * (float)Math.cos(angle), r0 * (float)Math.sin(angle), -width * 0.5f);
+ gl.glVertex3f(r1 * (float)Math.cos(angle + 3 * da), r1 * (float)Math.sin(angle + 3 * da), -width * 0.5f);
+ gl.glVertex3f(r0 * (float)Math.cos(angle), r0 * (float)Math.sin(angle), -width * 0.5f);
+ }
+ gl.glEnd();
+
+ /* draw back sides of teeth */
+ gl.glBegin(GL_QUADS);
+ for (i = 0; i < teeth; i++)
+ {
+ angle = i * 2.0f * M_PI / teeth;
+ gl.glVertex3f(r1 * (float)Math.cos(angle + 3 * da), r1 * (float)Math.sin(angle + 3 * da), -width * 0.5f);
+ gl.glVertex3f(r2 * (float)Math.cos(angle + 2 * da), r2 * (float)Math.sin(angle + 2 * da), -width * 0.5f);
+ gl.glVertex3f(r2 * (float)Math.cos(angle + da), r2 * (float)Math.sin(angle + da), -width * 0.5f);
+ gl.glVertex3f(r1 * (float)Math.cos(angle), r1 * (float)Math.sin(angle), -width * 0.5f);
+ }
+ gl.glEnd();
+
+ /* draw outward faces of teeth */
+ gl.glBegin(GL_QUAD_STRIP);
+ for (i = 0; i < teeth; i++)
+ {
+ angle = i * 2.0f * M_PI / teeth;
+ gl.glVertex3f(r1 * (float)Math.cos(angle), r1 * (float)Math.sin(angle), width * 0.5f);
+ gl.glVertex3f(r1 * (float)Math.cos(angle), r1 * (float)Math.sin(angle), -width * 0.5f);
+ u = r2 * (float)Math.cos(angle + da) - r1 * (float)Math.cos(angle);
+ v = r2 * (float)Math.sin(angle + da) - r1 * (float)Math.sin(angle);
+ len = (float)Math.sqrt(u * u + v * v);
+ u /= len;
+ v /= len;
+ gl.glNormal3f(v, -u, 0.0f);
+ gl.glVertex3f(r2 * (float)Math.cos(angle + da), r2 * (float)Math.sin(angle + da), width * 0.5f);
+ gl.glVertex3f(r2 * (float)Math.cos(angle + da), r2 * (float)Math.sin(angle + da), -width * 0.5f);
+ gl.glNormal3f((float)Math.cos(angle), (float)Math.sin(angle), 0.0f);
+ gl.glVertex3f(r2 * (float)Math.cos(angle + 2 * da), r2 * (float)Math.sin(angle + 2 * da), width * 0.5f);
+ gl.glVertex3f(r2 * (float)Math.cos(angle + 2 * da), r2 * (float)Math.sin(angle + 2 * da), -width * 0.5f);
+ u = r1 * (float)Math.cos(angle + 3 * da) - r2 * (float)Math.cos(angle + 2 * da);
+ v = r1 * (float)Math.sin(angle + 3 * da) - r2 * (float)Math.sin(angle + 2 * da);
+ gl.glNormal3f(v, -u, 0.0f);
+ gl.glVertex3f(r1 * (float)Math.cos(angle + 3 * da), r1 * (float)Math.sin(angle + 3 * da), width * 0.5f);
+ gl.glVertex3f(r1 * (float)Math.cos(angle + 3 * da), r1 * (float)Math.sin(angle + 3 * da), -width * 0.5f);
+ gl.glNormal3f((float)Math.cos(angle), (float)Math.sin(angle), 0.0f);
+ }
+ gl.glVertex3f(r1 * (float)Math.cos(0), r1 * (float)Math.sin(0), width * 0.5f);
+ gl.glVertex3f(r1 * (float)Math.cos(0), r1 * (float)Math.sin(0), -width * 0.5f);
+ gl.glEnd();
+
+ gl.glShadeModel(GL_SMOOTH);
+
+ /* draw inside radius cylinder */
+ gl.glBegin(GL_QUAD_STRIP);
+ for (i = 0; i <= teeth; i++)
+ {
+ angle = i * 2.0f * M_PI / teeth;
+ gl.glNormal3f(-(float)Math.cos(angle), -(float)Math.sin(angle), 0.0f);
+ gl.glVertex3f(r0 * (float)Math.cos(angle), r0 * (float)Math.sin(angle), -width * 0.5f);
+ gl.glVertex3f(r0 * (float)Math.cos(angle), r0 * (float)Math.sin(angle), width * 0.5f);
+ }
+ gl.glEnd();
+ }
+
+ // Methods required for the implementation of MouseListener
+ public void mouseEntered( MouseEvent evt )
+ {
+ //System.out.println("mouse entered cvs: ");
+ }
+
+ public void mouseExited( MouseEvent evt )
+ {
+ //System.out.println("mouse exit cvs: ");
+ }
+
+ public void mousePressed( MouseEvent evt )
+ {
+ //System.out.println("mouse pressed cvs: ");
+ prevMouseX = evt.getX();
+ prevMouseY = evt.getY();
+ if ((evt.getModifiers() & evt.BUTTON3_MASK) != 0)
+ {
+ mouseRButtonDown = true;
+ }
+ }
+
+ public void mouseReleased( MouseEvent evt )
+ {
+ //System.out.println("mouse released cvs: ");
+ if ((evt.getModifiers() & evt.BUTTON3_MASK) != 0)
+ {
+ mouseRButtonDown = false;
+ }
+ }
+
+ public void mouseClicked( MouseEvent evt )
+ {
+ //System.out.println("mouse clicked cvs: ");
+ }
+
+ // Methods required for the implementation of MouseMotionListener
+ public void mouseDragged( MouseEvent evt )
+ {
+ //System.out.println("mouse dragged: ");
+ int x = evt.getX();
+ int y = evt.getY();
+ Dimension size = gldrawable.getSize();
+
+ float thetaY = 360.0f * ( (float)(x-prevMouseX)/(float)size.width);
+ float thetaX = 360.0f * ( (float)(prevMouseY-y)/(float)size.height);
+
+ prevMouseX = x;
+ prevMouseY = y;
+
+ view_rotx += thetaX;
+ view_roty += thetaY;
+
+ }
+
+ public void mouseMoved( MouseEvent evt )
+ {
+ //System.out.println("mouse moved: ");
+ }
+}
diff --git a/demos/MiscDemos/gears.java b/demos/MiscDemos/gears.java
index dd4cb13..c33ff7c 100644
--- a/demos/MiscDemos/gears.java
+++ b/demos/MiscDemos/gears.java
@@ -11,7 +11,6 @@ import java.awt.event.*;
import java.lang.*;
import java.util.*;
import java.io.*;
-import java.util.*;
import gl4java.*;
import gl4java.drawable.*;
import gl4java.awt.GLAnimCanvas;
@@ -45,6 +44,12 @@ public class gears extends SimpleGLAnimApplet1
addMouseListener(this);
}
+ public void destroy()
+ {
+ removeMouseListener(this);
+ super.destroy();
+ }
+
public static void main( String args[] )
{
int i = 0;
@@ -188,337 +193,4 @@ public class gears extends SimpleGLAnimApplet1
start();
}
}
-
-
- /* Local GLAnimCanvas extension class */
-
-
- public class gearRenderer implements GLEventListener, MouseListener, MouseMotionListener
- {
- private static final float M_PI = 3.14159265f;
-
- private long T0 = 0;
- private long Frames = 0;
-
- private float view_rotx = 20.0f, view_roty = 30.0f, view_rotz = 0.0f;
- private int gear1, gear2, gear3;
- private float angle = 0.0f;
-
- private int prevMouseX, prevMouseY;
- private boolean mouseRButtonDown = false;
-
- private boolean showGL = false;
-
- private GLFunc gl;
- private GLUFunc glu;
- private GLContext glj;
-
- public gearRenderer(boolean showGL)
- {
- this.showGL=showGL;
- }
-
- public void init(GLDrawable drawable)
- {
- gl = drawable.getGL();
- glu = drawable.getGLU();
- glj = drawable.getGLContext();
-
- float pos[] = { 5.0f, 5.0f, 10.0f, 0.0f };
- float red[] = { 0.8f, 0.1f, 0.0f, 1.0f };
- float green[] = { 0.0f, 0.8f, 0.2f, 1.0f };
- float blue[] = { 0.2f, 0.2f, 1.0f, 1.0f };
-
- gl.glLightfv(GL_LIGHT0, GL_POSITION, pos);
- gl.glEnable(GL_CULL_FACE);
- gl.glEnable(GL_LIGHTING);
- gl.glEnable(GL_LIGHT0);
- gl.glEnable(GL_DEPTH_TEST);
-
- /* make the gears */
- gear1 = gl.glGenLists(1);
- gl.glNewList(gear1, GL_COMPILE);
- gl.glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, red);
- gear(1.0f, 4.0f, 1.0f, 20, 0.7f);
- gl.glEndList();
-
- gear2 = gl.glGenLists(1);
- gl.glNewList(gear2, GL_COMPILE);
- gl.glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, green);
- gear(0.5f, 2.0f, 2.0f, 10, 0.7f);
- gl.glEndList();
-
- gear3 = gl.glGenLists(1);
- gl.glNewList(gear3, GL_COMPILE);
- gl.glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, blue);
- gear(1.3f, 2.0f, 0.5f, 10, 0.7f);
- gl.glEndList();
-
- gl.glEnable(GL_NORMALIZE);
-
- glj.gljCheckGL();
-
- drawable.addMouseListener(this);
- drawable.addMouseMotionListener(this);
-
- T0=System.currentTimeMillis();
- System.out.println("init ..");
- }
-
- public void cleanup(GLDrawable drawable)
- {
- System.out.println("destroy(): " + this);
- removeMouseListener(this);
- removeMouseMotionListener(this);
- }
-
- public void reshape(gl4java.drawable.GLDrawable gld,int width,int height)
- {
- float h = (float)height / (float)width;
-
- gl.glViewport(0,0,width,height);
- gl.glMatrixMode(GL_PROJECTION);
- gl.glLoadIdentity();
- gl.glFrustum(-1.0f, 1.0f, -h, h, 5.0f, 60.0f);
- gl.glMatrixMode(GL_MODELVIEW);
- gl.glLoadIdentity();
- gl.glTranslatef(0.0f, 0.0f, -40.0f);
- }
-
- public void display(GLDrawable drawable)
- {
- if(showGL)
- {
- showGL=false;
- System.out.println("GL VERSION : "+gl.glGetString(GL_VERSION));
- System.out.println("GL RENDERER: "+gl.glGetString(GL_RENDERER));
- System.out.println("GL VENDOR : "+gl.glGetString(GL_VENDOR));
- }
-
- angle += 2.0f;
-
- gl.glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
-
- gl.glPushMatrix();
- gl.glRotatef(view_rotx, 1.0f, 0.0f, 0.0f);
- gl.glRotatef(view_roty, 0.0f, 1.0f, 0.0f);
- gl.glRotatef(view_rotz, 0.0f, 0.0f, 1.0f);
-
- gl.glPushMatrix();
- gl.glTranslatef(-3.0f, -2.0f, 0.0f);
- gl.glRotatef(angle, 0.0f, 0.0f, 1.0f);
- gl.glCallList(gear1);
- gl.glPopMatrix();
-
- gl.glPushMatrix();
- gl.glTranslatef(3.1f, -2.0f, 0.0f);
- gl.glRotatef(-2.0f * angle - 9.0f, 0.0f, 0.0f, 1.0f);
- gl.glCallList(gear2);
- gl.glPopMatrix();
-
- gl.glPushMatrix();
- gl.glTranslatef(-3.1f, 4.2f, 0.0f);
- gl.glRotatef(-2.0f * angle - 25.0f, 0.0f, 0.0f, 1.0f);
- gl.glCallList(gear3);
- gl.glPopMatrix();
-
- gl.glPopMatrix();
-
- Frames++;
- }
-
- public void preDisplay(GLDrawable drawable)
- {
- }
-
- public void postDisplay(GLDrawable drawable)
- {
- long t=System.currentTimeMillis();
- if(t - T0 >= 5000)
- {
- double seconds = (double)(t - T0) / 1000.0;
- double fps = (double)Frames / seconds;
- System.out.println(Frames+" frames in "+seconds+" seconds = "+
- fps+" FPS");
- T0 = t;
- Frames = 0;
- }
- }
-
- private void gear
- (float inner_radius,
- float outer_radius,
- float width,
- int teeth,
- float tooth_depth)
- {
- int i;
- float r0, r1, r2;
- float angle, da;
- float u, v, len;
-
- r0 = inner_radius;
- r1 = outer_radius - tooth_depth / 2.0f;
- r2 = outer_radius + tooth_depth / 2.0f;
-
- da = 2.0f * M_PI / teeth / 4.0f;
-
- gl.glShadeModel(GL_FLAT);
-
- gl.glNormal3f(0.0f, 0.0f, 1.0f);
-
- /* draw front face */
- gl.glBegin(GL_QUAD_STRIP);
- for (i = 0; i <= teeth; i++)
- {
- angle = i * 2.0f * M_PI / teeth;
- gl.glVertex3f(r0 * (float)Math.cos(angle), r0 * (float)Math.sin(angle), width * 0.5f);
- gl.glVertex3f(r1 * (float)Math.cos(angle), r1 * (float)Math.sin(angle), width * 0.5f);
- if(i < teeth)
- {
- gl.glVertex3f(r0 * (float)Math.cos(angle), r0 * (float)Math.sin(angle), width * 0.5f);
- gl.glVertex3f(r1 * (float)Math.cos(angle + 3.0f * da), r1 * (float)Math.sin(angle + 3.0f * da), width * 0.5f);
- }
- }
- gl.glEnd();
-
- /* draw front sides of teeth */
- gl.glBegin(GL_QUADS);
- for (i = 0; i < teeth; i++)
- {
- angle = i * 2.0f * M_PI / teeth;
- gl.glVertex3f(r1 * (float)Math.cos(angle), r1 * (float)Math.sin(angle), width * 0.5f);
- gl.glVertex3f(r2 * (float)Math.cos(angle + da), r2 * (float)Math.sin(angle + da), width * 0.5f);
- gl.glVertex3f(r2 * (float)Math.cos(angle + 2.0f * da), r2 * (float)Math.sin(angle + 2.0f * da), width * 0.5f);
- gl.glVertex3f(r1 * (float)Math.cos(angle + 3.0f * da), r1 * (float)Math.sin(angle + 3.0f * da), width * 0.5f);
- }
- gl.glEnd();
-
- /* draw back face */
- gl.glBegin(GL_QUAD_STRIP);
- for (i = 0; i <= teeth; i++)
- {
- angle = i * 2.0f * M_PI / teeth;
- gl.glVertex3f(r1 * (float)Math.cos(angle), r1 * (float)Math.sin(angle), -width * 0.5f);
- gl.glVertex3f(r0 * (float)Math.cos(angle), r0 * (float)Math.sin(angle), -width * 0.5f);
- gl.glVertex3f(r1 * (float)Math.cos(angle + 3 * da), r1 * (float)Math.sin(angle + 3 * da), -width * 0.5f);
- gl.glVertex3f(r0 * (float)Math.cos(angle), r0 * (float)Math.sin(angle), -width * 0.5f);
- }
- gl.glEnd();
-
- /* draw back sides of teeth */
- gl.glBegin(GL_QUADS);
- for (i = 0; i < teeth; i++)
- {
- angle = i * 2.0f * M_PI / teeth;
- gl.glVertex3f(r1 * (float)Math.cos(angle + 3 * da), r1 * (float)Math.sin(angle + 3 * da), -width * 0.5f);
- gl.glVertex3f(r2 * (float)Math.cos(angle + 2 * da), r2 * (float)Math.sin(angle + 2 * da), -width * 0.5f);
- gl.glVertex3f(r2 * (float)Math.cos(angle + da), r2 * (float)Math.sin(angle + da), -width * 0.5f);
- gl.glVertex3f(r1 * (float)Math.cos(angle), r1 * (float)Math.sin(angle), -width * 0.5f);
- }
- gl.glEnd();
-
- /* draw outward faces of teeth */
- gl.glBegin(GL_QUAD_STRIP);
- for (i = 0; i < teeth; i++)
- {
- angle = i * 2.0f * M_PI / teeth;
- gl.glVertex3f(r1 * (float)Math.cos(angle), r1 * (float)Math.sin(angle), width * 0.5f);
- gl.glVertex3f(r1 * (float)Math.cos(angle), r1 * (float)Math.sin(angle), -width * 0.5f);
- u = r2 * (float)Math.cos(angle + da) - r1 * (float)Math.cos(angle);
- v = r2 * (float)Math.sin(angle + da) - r1 * (float)Math.sin(angle);
- len = (float)Math.sqrt(u * u + v * v);
- u /= len;
- v /= len;
- gl.glNormal3f(v, -u, 0.0f);
- gl.glVertex3f(r2 * (float)Math.cos(angle + da), r2 * (float)Math.sin(angle + da), width * 0.5f);
- gl.glVertex3f(r2 * (float)Math.cos(angle + da), r2 * (float)Math.sin(angle + da), -width * 0.5f);
- gl.glNormal3f((float)Math.cos(angle), (float)Math.sin(angle), 0.0f);
- gl.glVertex3f(r2 * (float)Math.cos(angle + 2 * da), r2 * (float)Math.sin(angle + 2 * da), width * 0.5f);
- gl.glVertex3f(r2 * (float)Math.cos(angle + 2 * da), r2 * (float)Math.sin(angle + 2 * da), -width * 0.5f);
- u = r1 * (float)Math.cos(angle + 3 * da) - r2 * (float)Math.cos(angle + 2 * da);
- v = r1 * (float)Math.sin(angle + 3 * da) - r2 * (float)Math.sin(angle + 2 * da);
- gl.glNormal3f(v, -u, 0.0f);
- gl.glVertex3f(r1 * (float)Math.cos(angle + 3 * da), r1 * (float)Math.sin(angle + 3 * da), width * 0.5f);
- gl.glVertex3f(r1 * (float)Math.cos(angle + 3 * da), r1 * (float)Math.sin(angle + 3 * da), -width * 0.5f);
- gl.glNormal3f((float)Math.cos(angle), (float)Math.sin(angle), 0.0f);
- }
- gl.glVertex3f(r1 * (float)Math.cos(0), r1 * (float)Math.sin(0), width * 0.5f);
- gl.glVertex3f(r1 * (float)Math.cos(0), r1 * (float)Math.sin(0), -width * 0.5f);
- gl.glEnd();
-
- gl.glShadeModel(GL_SMOOTH);
-
- /* draw inside radius cylinder */
- gl.glBegin(GL_QUAD_STRIP);
- for (i = 0; i <= teeth; i++)
- {
- angle = i * 2.0f * M_PI / teeth;
- gl.glNormal3f(-(float)Math.cos(angle), -(float)Math.sin(angle), 0.0f);
- gl.glVertex3f(r0 * (float)Math.cos(angle), r0 * (float)Math.sin(angle), -width * 0.5f);
- gl.glVertex3f(r0 * (float)Math.cos(angle), r0 * (float)Math.sin(angle), width * 0.5f);
- }
- gl.glEnd();
- }
-
- // Methods required for the implementation of MouseListener
- public void mouseEntered( MouseEvent evt )
- {
- //System.out.println("mouse entered cvs: ");
- }
-
- public void mouseExited( MouseEvent evt )
- {
- //System.out.println("mouse exit cvs: ");
- }
-
- public void mousePressed( MouseEvent evt )
- {
- //System.out.println("mouse pressed cvs: ");
- prevMouseX = evt.getX();
- prevMouseY = evt.getY();
- if ((evt.getModifiers() & evt.BUTTON3_MASK) != 0)
- {
- mouseRButtonDown = true;
- }
- }
-
- public void mouseReleased( MouseEvent evt )
- {
- //System.out.println("mouse released cvs: ");
- if ((evt.getModifiers() & evt.BUTTON3_MASK) != 0)
- {
- mouseRButtonDown = false;
- }
- }
-
- public void mouseClicked( MouseEvent evt )
- {
- //System.out.println("mouse clicked cvs: ");
- }
-
- // Methods required for the implementation of MouseMotionListener
- public void mouseDragged( MouseEvent evt )
- {
- //System.out.println("mouse dragged: ");
- int x = evt.getX();
- int y = evt.getY();
- Dimension size = getSize();
-
- float thetaY = 360.0f * ( (float)(x-prevMouseX)/(float)size.width);
- float thetaX = 360.0f * ( (float)(prevMouseY-y)/(float)size.height);
-
- prevMouseX = x;
- prevMouseY = y;
-
- view_rotx += thetaX;
- view_roty += thetaY;
-
- }
-
- public void mouseMoved( MouseEvent evt )
- {
- //System.out.println("mouse moved: ");
- }
- }
}
diff --git a/demos/MiscDemos/gearsFullScreen.java b/demos/MiscDemos/gearsFullScreen.java
new file mode 100644
index 0000000..8cabd83
--- /dev/null
+++ b/demos/MiscDemos/gearsFullScreen.java
@@ -0,0 +1,215 @@
+/**
+ * @(#) gearsFullScreen.java
+ * @(#) author: Brian Paul (converted to Java by Ron Cemer and Sven Goethel)
+ *
+ * This version is equal to Brian Paul's version 1.2 1999/10/21
+ */
+
+import java.applet.*;
+import java.awt.*;
+import java.awt.event.*;
+import java.lang.*;
+import java.util.*;
+import java.io.*;
+import gl4java.*;
+import gl4java.drawable.*;
+import gl4java.awt.GLAnimCanvas;
+import gl4java.applet.SimpleGLAnimApplet1;
+
+public class gearsFullScreen extends SimpleGLAnimApplet1
+ implements MouseListener
+{
+
+ /* Initialize the applet */
+ public void init()
+ {
+ init(false);
+ }
+
+ public void init(boolean showGL)
+ {
+ super.init();
+
+ Dimension d = getSize();
+
+ GLCapabilities caps = new GLCapabilities();
+
+ canvas =
+ GLDrawableFactory.getFactory().createGLAnimCanvas(caps, d.width, d.height);
+
+ gearRenderer gear = new gearRenderer(showGL);
+ canvas.addGLEventListener(gear);
+
+ add("Center", canvas);
+ addMouseListener(this);
+ }
+
+ public void destroy()
+ {
+ removeMouseListener(this);
+ super.destroy();
+ }
+
+
+ public static void main( String args[] )
+ {
+ int i = 0;
+ String gljLib = null;
+ String glLib = null;
+ String gluLib = null;
+ boolean perftest=false;
+
+ GLContext.gljNativeDebug = false;
+ GLContext.gljClassDebug = false;
+ GLContext.gljThreadDebug = false;
+
+ while(args.length>i)
+ {
+ if(args[i].equals("-perftest"))
+ {
+ perftest=true;
+ } else if(args[i].equals("-gljLib"))
+ {
+ i++;
+ if(args.length>i)
+ gljLib=args[i];
+ } else if(args[i].equals("-glLib"))
+ {
+ i++;
+ if(args.length>i)
+ glLib=args[i];
+ } else if(args[i].equals("-gluLib"))
+ {
+ i++;
+ if(args.length>i)
+ gluLib=args[i];
+ } else {
+ System.out.println("illegal arg "+i+": "+args[i]);
+ }
+ i++;
+ }
+
+ if(perftest)
+ {
+ GLContext.gljNativeDebug = false;
+ GLContext.gljThreadDebug = false;
+ GLContext.gljClassDebug = false;
+ }
+
+ if(perftest)
+ GLContext.gljClassDebug=true;
+ GLContext.doLoadNativeLibraries(gljLib, glLib, gluLib);
+ if(perftest)
+ GLContext.gljClassDebug=false;
+
+ GraphicsEnvironment env =
+ GraphicsEnvironment.getLocalGraphicsEnvironment();
+ GraphicsDevice device = env.getDefaultScreenDevice();
+ Frame mainFrame = null;
+
+ System.out.println("isFullScreenSupported: "+
+ device.isFullScreenSupported() );
+
+ try {
+ GraphicsConfiguration gc ;
+ gl4java.drawable.GLDrawableFactory df =
+ gl4java.drawable.GLDrawableFactory.getFactory();
+
+ if(df instanceof gl4java.drawable.SunJDK13GLDrawableFactory)
+ {
+ GLCapabilities glCaps = new GLCapabilities();
+ gl4java.drawable.SunJDK13GLDrawableFactory sdf =
+ (gl4java.drawable.SunJDK13GLDrawableFactory)df;
+
+ gc = sdf.getGraphicsConfiguration(glCaps, device);
+ } else {
+ gc = device.getDefaultConfiguration();
+ }
+
+ mainFrame = new Frame(gc);
+
+ gearsFullScreen applet = new gearsFullScreen();
+ mainFrame.add(applet);
+ applet.setSize(400,500);
+ applet.init();
+
+ if(perftest)
+ {
+ applet.canvas.setUseFpsSleep(false);
+ applet.canvas.setUseRepaint(false);
+ applet.canvas.setUseYield(false);
+
+ System.out.println("useFpsSleep: "+
+ applet.canvas.getUseFpsSleep());
+ System.out.println("useRepaint: "+
+ applet.canvas.getUseRepaint());
+
+ System.out.println("useFpsSleep: "+
+ applet.canvas.getUseFpsSleep());
+ }
+
+ applet.start();
+
+ Dimension ps = applet.getPreferredSize();
+ mainFrame.setBounds(-100,-100,99,99);
+ mainFrame.setVisible(true);
+ mainFrame.setVisible(false);
+ mainFrame.setVisible(true);
+ Insets is = mainFrame.getInsets();
+ mainFrame.setBounds(0,0,
+ ps.width+is.left+is.right,
+ ps.height+is.top+is.bottom);
+ mainFrame.setVisible(true);
+ Thread.currentThread().sleep(10000, 0 );
+ } catch (Exception e) {
+ e.printStackTrace();
+ } finally {
+ device.setFullScreenWindow(null);
+ }
+
+ }
+
+ // Methods required for the implementation of MouseListener
+ public void mouseEntered( MouseEvent evt )
+ {
+ //System.out.println("mouse entered: ");
+ super.mouseEntered(evt);
+ }
+
+ public void mouseExited( MouseEvent evt )
+ {
+ //System.out.println("mouse exit: ");
+ super.mouseExited(evt);
+ }
+
+ public void mousePressed( MouseEvent evt )
+ {
+ //System.out.println("mouse pressed: ");
+ super.mousePressed(evt);
+ }
+
+ public void mouseReleased( MouseEvent evt )
+ {
+ //System.out.println("mouse released: ");
+ super.mouseReleased(evt);
+ }
+
+ public void mouseClicked( MouseEvent evt )
+ {
+ //System.out.println("mouse clicked: ");
+ super.mouseClicked(evt);
+
+ if ((evt.getModifiers() & evt.BUTTON2_MASK) != 0)
+ {
+ System.out.println("stopping applet now .. (after 1s, restart)");
+ stop();
+ try {
+ Thread.sleep(1000);
+ } catch (Exception e)
+ { System.out.println("oops, somebody woke us up .."); }
+ System.out.println("restarting applet now .. ");
+ canvas.setVisible(true);
+ start();
+ }
+ }
+}
diff --git a/demos/MiscDemos/gearsOffScreen2Tga.java b/demos/MiscDemos/gearsOffScreen2Tga.java
new file mode 100644
index 0000000..21ed42f
--- /dev/null
+++ b/demos/MiscDemos/gearsOffScreen2Tga.java
@@ -0,0 +1,114 @@
+/**
+ * @(#) gearsOffScreen2Tga.java
+ * @(#) author: Brian Paul (converted to Java by Ron Cemer and Sven Goethel)
+ *
+ * This version is equal to Brian Paul's version 1.2 1999/10/21
+ */
+
+import java.applet.*;
+import java.awt.*;
+import java.awt.event.*;
+import java.lang.*;
+import java.util.*;
+import java.io.*;
+import gl4java.*;
+import gl4java.drawable.*;
+import gl4java.awt.*;
+import gl4java.utils.textures.*;
+
+public class gearsOffScreen2Tga
+{
+ GLOffScreenDrawable canvas;
+
+ public void snapshot()
+ {
+ canvas = new GLOffScreenDrawable(new Dimension(400,400));
+
+ gearRenderer gear = new gearRenderer(true);
+ canvas.addGLEventListener(gear);
+
+ canvas.initDrawable();
+
+ if(canvas.cvsIsInit())
+ {
+ canvas.repaint();
+ GLContext glj = canvas.getGLContext();
+
+ if( glj.gljMakeCurrent() )
+ {
+ TGATextureGrabber textgrab =
+ new TGATextureGrabber(canvas.getGL());
+ textgrab.grabPixels(
+ glj.isDoubleBuffer()?GLEnum.GL_BACK:GLEnum.GL_FRONT,
+ 0, 0,
+ canvas.getSize().width,
+ canvas.getSize().height);
+ textgrab.write2File("gears.tga");
+ System.out.println("written gears.tga");
+ glj.gljCheckGL();
+ glj.gljFree();
+ }
+ }
+ }
+
+ public static void main( String args[] )
+ {
+ int i = 0;
+ String gljLib = null;
+ String glLib = null;
+ String gluLib = null;
+
+ GLContext.gljNativeDebug = false;
+ GLContext.gljClassDebug = false;
+ GLContext.gljThreadDebug = false;
+
+ while(args.length>i)
+ {
+ if(args[i].equals("-gljLib"))
+ {
+ i++;
+ if(args.length>i)
+ gljLib=args[i];
+ } else if(args[i].equals("-glLib"))
+ {
+ i++;
+ if(args.length>i)
+ glLib=args[i];
+ } else if(args[i].equals("-gluLib"))
+ {
+ i++;
+ if(args.length>i)
+ gluLib=args[i];
+ } else {
+ System.out.println("illegal arg "+i+": "+args[i]);
+ }
+ i++;
+ }
+
+ GLContext.doLoadNativeLibraries(gljLib, glLib, gluLib);
+
+ /**
+ * yes .. we need an AWT Frame,
+ * to let java get in touch with the underlying
+ * windowing system for initialisation !
+ */
+ Frame mainFrame = new Frame("gears offscreen");
+
+ Dimension ps = new Dimension(20,20);
+ mainFrame.setBounds(-100,-100,99,99);
+ mainFrame.setVisible(true);
+ mainFrame.setVisible(false);
+ mainFrame.setVisible(true);
+ Insets is = mainFrame.getInsets();
+ mainFrame.setBounds(0,0,
+ ps.width+is.left+is.right,
+ ps.height+is.top+is.bottom);
+ mainFrame.setVisible(true);
+
+ gearsOffScreen2Tga applet = new gearsOffScreen2Tga();
+ applet.snapshot();
+
+ mainFrame.dispose();
+ System.exit(0);
+ }
+}
diff --git a/demos/MiscDemos/gearsOffScreenDrawImage.html b/demos/MiscDemos/gearsOffScreenDrawImage.html
new file mode 100644
index 0000000..e41b2e2
--- /dev/null
+++ b/demos/MiscDemos/gearsOffScreenDrawImage.html
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
diff --git a/demos/MiscDemos/gearsOffScreenDrawImage.java b/demos/MiscDemos/gearsOffScreenDrawImage.java
new file mode 100755
index 0000000..9cdc8c2
--- /dev/null
+++ b/demos/MiscDemos/gearsOffScreenDrawImage.java
@@ -0,0 +1,167 @@
+/**
+ * @(#) gearsOffScreeneen2Tga.java
+ * @(#) author: Brian Paul (converted to Java by Ron Cemer and Sven Goethel)
+ *
+ * This version is equal to Brian Paul's version 1.2 1999/10/21
+ */
+
+import java.applet.*;
+import java.awt.*;
+import java.awt.event.*;
+import java.lang.*;
+import java.util.*;
+import java.io.*;
+import gl4java.*;
+import gl4java.drawable.*;
+import gl4java.awt.*;
+import gl4java.utils.textures.*;
+
+public class gearsOffScreenDrawImage extends Applet
+ implements ComponentListener
+{
+ GLOffScreenDrawable glcanvas=null;
+ Dimension size;
+
+ public void init()
+ {
+ if(glcanvas==null)
+ {
+ size = new Dimension(400,400);
+ glcanvas = new GLOffScreenDrawable(size);
+
+ gearRenderer gear = new gearRenderer(true);
+ glcanvas.addGLEventListener(gear);
+
+ glcanvas.initDrawable();
+ }
+ addComponentListener(this);
+ }
+
+ public void destroy()
+ {
+ removeComponentListener(this);
+ glcanvas.cvsDispose();
+ glcanvas=null;
+ super.destroy();
+ }
+
+ public Dimension getPreferredSize() {
+ return getMinimumSize();
+ }
+
+ public Dimension getMinimumSize() {
+ return size;
+ }
+
+ public void setSize(Dimension size) {
+ this.size=size;
+ super.setSize(size);
+ if(glcanvas!=null)
+ glcanvas.setSize(size);
+ }
+
+
+ public void paint(Graphics g)
+ {
+ size=getSize();
+ if(glcanvas!=null && glcanvas.cvsIsInit())
+ {
+ glcanvas.repaint();
+ glcanvas.drawImage(g, 0, 0, size.width, size.height, this);
+ }
+ }
+
+
+ public void componentResized(ComponentEvent e)
+ {
+ if(glcanvas!=null && glcanvas.cvsIsInit())
+ {
+ setSize(getSize());
+ }
+ }
+
+ public void componentMoved(ComponentEvent e)
+ {
+ }
+
+ public void componentShown(ComponentEvent e)
+ {
+ }
+
+ public void componentHidden(ComponentEvent e)
+ { }
+
+ public static void main( String args[] )
+ {
+ int i = 0;
+ String gljLib = null;
+ String glLib = null;
+ String gluLib = null;
+
+ GLContext.gljNativeDebug = false;
+ GLContext.gljClassDebug = false;
+ GLContext.gljThreadDebug = false;
+
+ while(args.length>i)
+ {
+ if(args[i].equals("-gljLib"))
+ {
+ i++;
+ if(args.length>i)
+ gljLib=args[i];
+ } else if(args[i].equals("-glLib"))
+ {
+ i++;
+ if(args.length>i)
+ glLib=args[i];
+ } else if(args[i].equals("-gluLib"))
+ {
+ i++;
+ if(args.length>i)
+ gluLib=args[i];
+ } else {
+ System.out.println("illegal arg "+i+": "+args[i]);
+ }
+ i++;
+ }
+
+ GLContext.doLoadNativeLibraries(gljLib, glLib, gluLib);
+
+ /**
+ * yes .. we need an AWT Frame,
+ * to let java get in touch with the underlying
+ * windowing system for initialisation !
+ */
+ Frame mainFrame = new Frame("gears offscreen");
+
+ mainFrame.addWindowListener( new WindowAdapter()
+ {
+ public void windowClosed(WindowEvent e)
+ {
+ System.exit(0);
+ }
+ public void windowClosing(WindowEvent e)
+ {
+ windowClosed(e);
+ }
+ }
+ );
+
+ gearsOffScreenDrawImage applet = new gearsOffScreenDrawImage ();
+ mainFrame.add(applet);
+ applet.setSize(400,500);
+ applet.init();
+
+ Dimension ps = applet.getPreferredSize();
+ mainFrame.setBounds(-100,-100,99,99);
+ mainFrame.setVisible(true);
+ mainFrame.setVisible(false);
+ mainFrame.setVisible(true);
+ Insets is = mainFrame.getInsets();
+ mainFrame.setBounds(0,0,
+ ps.width+is.left+is.right,
+ ps.height+is.top+is.bottom);
+ mainFrame.setVisible(true);
+ applet.repaint();
+ }
+}
diff --git a/demos/MiscDemos/gearsOffScreenDrawImage_plugin13.html b/demos/MiscDemos/gearsOffScreenDrawImage_plugin13.html
new file mode 100644
index 0000000..3b472a5
--- /dev/null
+++ b/demos/MiscDemos/gearsOffScreenDrawImage_plugin13.html
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/demos/MiscDemos/index.html b/demos/MiscDemos/index.html
index bae1f0c..2147718 100644
--- a/demos/MiscDemos/index.html
+++ b/demos/MiscDemos/index.html
@@ -7,7 +7,7 @@
+
@@ -27,6 +27,8 @@
: morph3d at 400x400
diff --git a/demos/MiscDemos/index_plugin13.html b/demos/MiscDemos/index_plugin13.html
index 9190be1..8acb31b 100644
--- a/demos/MiscDemos/index_plugin13.html
+++ b/demos/MiscDemos/index_plugin13.html
@@ -7,7 +7,7 @@
The Java2 (sdk, jre, plugin 1.3) policy file example to give GL4Java the necessary permissions (Click here) !
@@ -29,6 +29,8 @@
: morph3d at 400x400
diff --git a/demos/MiscDemos/makefile b/demos/MiscDemos/makefile
new file mode 100644
index 0000000..e7a1ae4
--- /dev/null
+++ b/demos/MiscDemos/makefile
@@ -0,0 +1,65 @@
+include ../../symbols.mak
+
+JAVA13_SOURCES = \
+ DrawColoredPrimitives.java \
+ DrawColoredPrimitives2.java \
+ GLImageViewerCanvas.java \
+ GLImageViewerWorld.java \
+ GLImageWorld1.java \
+ GearsVS.java \
+ SharedGLTest.java \
+ SharedGLTest2.java \
+ Test.java \
+ TestListener.java \
+ TriangleRotate.java \
+ accanti.java \
+ alpha3D.java \
+ anti.java \
+ coloredCross.java \
+ depthcue.java \
+ gearRenderer.java \
+ gears.java \
+ gearsOffScreen2Tga.java \
+ gearsOffScreenDrawImage.java \
+ glJavaFontTest1.java \
+ glutFontBitmapTest.java \
+ glutFontBitmapTest2Applet.java \
+ glutFontStrokeTest.java \
+ morph3d.java \
+ nurbs.java \
+ pngTextureTestApplet.java \
+ select.java \
+ spectex.java \
+ stencil.java \
+ teaambient.java \
+ teapots.java \
+ tess.java \
+ tessdemo.java \
+ tesswind.java \
+ jahuwaldt/gl/GLTools.java \
+ jahuwaldt/gl/Matrix.java \
+ jahuwaldt/gl/VirtualSphere.java
+
+JAVA13_CLASSES = ${JAVA13_SOURCES:.java=.class})
+
+ifdef JAVAC_14
+ JAVA14_SOURCES = \
+ gearsFullScreen.java
+ JAVA14_CLASSES = ${JAVA14_SOURCES:.java=.class})
+ HAVE_JAVAC_14 = 1
+else
+ JAVA14_SOURCES =
+ JAVA14_CLASSES =
+endif
+
+all: cleanup $(JAVA13_CLASSES) $(JAVA14_CLASSES)
+
+$(JAVA13_CLASSES) : $(JAVA13_SOURCES)
+ $(JAVAC_13) -O -deprecation $^ | tee -a errors
+
+$(JAVA14_CLASSES) : $(JAVA14_SOURCES)
+ $(JAVAC_14) -O -deprecation $^ | tee -a errors
+
+cleanup:
+ rm -f errors
+
diff --git a/demos/MiscDemos/morph3d.java b/demos/MiscDemos/morph3d.java
index 37a9663..9737ab6 100755
--- a/demos/MiscDemos/morph3d.java
+++ b/demos/MiscDemos/morph3d.java
@@ -199,8 +199,9 @@ public class morph3d extends SimpleGLAnimApplet1
}
);
- GLContext.gljNativeDebug = true;
- GLContext.gljClassDebug = true;
+ GLContext.gljNativeDebug = false;
+ GLContext.gljClassDebug = false;
+ GLContext.gljThreadDebug = false;
morph3d applet = new morph3d();
diff --git a/demos/index.html b/demos/index.html
index 6590948..1d9ed16 100755
--- a/demos/index.html
+++ b/demos/index.html
@@ -8,40 +8,40 @@
+GL4Java >= 2.8.1.0:
-
testTextPPM1 + either)
GLLandScape World
+
For use with @@ -49,14 +49,14 @@ the Java2-Plug-In: Tested with Win32,Netscape,Java2 (see Installation-instructions Java2) !
glOlympicCvsAppletJ2P
+
glLogoCvsAppletJ2P - : Out of the demo directory of GL4Java
-
The Java2 (sdk, jre, plugin 1.3) policy file example to give GL4Java the necessary permissions (Click here) !
diff --git a/demos/makefile b/demos/makefile
index 56422c8..2ded077 100644
--- a/demos/makefile
+++ b/demos/makefile
@@ -28,9 +28,4 @@ cleanall: clean
rm -f *.class ${C_APPL_FILES:.c=}
rm -f $(find . -name \*.o -o -name \*.exe )
-windllcpy:
- cp /WIN_NT/system32/opengl32.dll .
- cp /WIN_NT/system32/opengl.dll .
- cp /WIN_NT/system32/gl4java.dll .
- cp /WIN_NT/system32/gl4java32.dll .
diff --git a/docs/gl4javafaq.html b/docs/gl4javafaq.html
new file mode 100644
index 0000000..e9b486d
--- /dev/null
+++ b/docs/gl4javafaq.html
@@ -0,0 +1,750 @@
+
+
+
+
+
+ Table Of Contents (TOC) What is GL4JAVA ?
+
+
+
+GL4JAVA general questions :
+What is GL4JAVA ?
+Who makes GL4JAVA ?
+How can I learn using GL4JAVA ?
+Do I have to pay in order to use GL4JAVA ?
+How can I help ?
+Where can I download and install the beast ?
+What kinda GL4JAVA applications and applets currently exist ?
+What should I read before you reply with RTFM ? Whom should I ask ?
+
+
+JAVA related questions :
+But isn't Java slow ?
+What platforms does GL4JAVA run on ?
+How does GL4JAVA compare to Java3D ?
+
+
+GL4JAVA technical questions :
+I'm trying to use gl4java on my OS using Java2. I can't succeed having it working !
+My Canvas renders 1 frame, then stops, what's wrong ?
+GLAnimCanvas vs GLJPanel, which should I choose ?
+GLJPanel/GLAnimCanvas subclass model vs GLEventListener model, which should I choose ?
+Extensions - Does GL4JAVA support extensions ? How do I load them ?
+Tesselation - Does GL4JAVA support tesselation ? How do I use it ?
+Offscreen - How Do I Use Offscreen Rendering with GL4JAVA ?
+Fullscreen - How Do I Use Fullscreen with GL4JAVA ?
+Bump Mapping - How Do I Use Bump Mapping with GL4JAVA ?
+
+
+
+General questions :
+Trademarks
+
+
+
+
+
+
+
+GL4JAVA is an abbreviation of OpenGLTM for JavaTM,
+read the trademarks section ;-)
+
+GL4JAVA is an OpenGL binding for Java.
+The GL4JAVA API maps native c++ OpenGL functions
+to the Java language and provides fast access
+to 3D accelerators from Java.
+
+GL4Java maps the complete OpenGL 1.3 and GLU 1.2 API
+and implements window handle functions (native and java),
+while using the Java-Native-Interface (JNI) of Java or the
+JDirect-Interface of MS-JVM. Win32, X-Window, Mac.
+
+GL4JAVA has been developed under Open Source Model since 1997
+and has become over the years a serious and stable API.
+Though, the library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY nor obligation of user support.
+
+Have a look at the Overview !
+
Who makes GL4JAVA ? +
How can I learn using GL4JAVA ? +
Do I have to pay in order to use GL4JAVA ? +
How can I help ? +
Where can I download and install the beast ? +
What kinda GL4JAVA applications and applets currently exist ? +
What should I read before you reply with RTFM ? Whom should I ask ?
+(RTFM = Unix abbreviation for `Read The Fucking Manual')
+
But isn't Java slow ? +
What platforms does GL4JAVA run on ? +
How does GL4JAVA compare to Java3D ? +
Does GL4JAVA support extensions ? How do I load them ? +
Does GL4JAVA support tesselation ? How do I use it ? +
+ gl4java.GLUTFunc ++
+ +Jean-Yves BRUD asked: + +> What is the meaning of parameter signature ? +> If my callback method name is myVertexCallBack (for a GLU_TESS_VERTEX +> callback), +> what is the value of the signature parameter ? + +public void gluTessCallback( long tobj, int which, + Object methodClassInstance, + String methodName, + String signature, + int voidArrayLen1, + int voidArrayLen2, + int voidArrayLen3, + int voidArrayLen4, + int voidArrayLen5 + ); + + +Example (tessdemo.java line 337): + glu.gluTessCallback ( tobj, GLU_TESS_VERTEX, gl, + "glVertex2fv", "([F)V", + 2, 0, 0, 0, 0); + +The signature "([F)V" is the original java style signature of the +argument-list, your callback method takes (here: glVertex2fv) ! + + void glVertex2fv( const GLfloat v[2] ) + + (...) := within the brackets are function arguments signature part + [F := float array + V := void - + the signature part after the brackets + means the return value + +Read SUN's Java Documentation for Java-Callback methods: + http://java.sun.com/docs/books/tutorial/native1.1/implementing/method.html + +Here you can find the mapping of function arguments to its corresponding +string signature representation ! + +Jean-Yves BRUD asked: + +> +> What is the meaning of the 5 parameters: voidArrayLen1, voidArrayLen2, +> voidArrayLen3, +> voidArrayLen4, voidArrayLen5, and what value do I need to put ? +> + +public void gluTessCallback( long tobj, int which, + Object methodClassInstance, + String methodName, + String signature, + int voidArrayLen1, + int voidArrayLen2, + int voidArrayLen3, + int voidArrayLen4, + int voidArrayLen5 + ); + +The maximum number of arrays within the argumentlist of +a GLU Callback function for Tesselation is 5 ! + +So, the arguments voidArrayLen[1-5] refines the expected +size of the arrays, +which are passed into and from the java callback funtion. + + OpenGL-Machine <-> GL4Java-Callback-Handler <-> Java-Callback-Method + +E.g. (tessdemo.java): + glu.gluTessCallback ( tobj, GLU_TESS_COMBINE, this, + "combine_callback", "([D[D[F[F)V", + 2, 0, 0, 2, 0); + + public void combine_callback( double coords[/*3*/], + double vertex_data[/*4xn(=0)*/], + float weight[/*4*/], float[/*m(=2)*/] data ) + { + data[0] = (float) coords[0]; + data[1] = (float) coords[1]; + } + +You can see, we do use the arrays "data" and "coords" with a size of 2 ! +You are not allowed to use nonsense sizes, because this can hurt your +application with a segementation fault ! +(Well the GL4Java Callback functions checks + the array sizes to OpenGL's maximum, .. but be kind of ..) + +The OpenGL machine calls GL4Java's callback function, +which dispatches the call (incl. data) to your java callback function ! + ++ +
How Do I Use Offscreen Rendering with GL4JAVA ? +
How Do I Use Fullscreen with GL4JAVA ? +
How Do I Use Bump Mapping with GL4JAVA ? +
I'm trying to use gl4java on my OS using Java2. I can't succeed having it working ! +
+ JAVA_HOME +
+WIN32 JDK: C:\jdk1.3.1\jre +WIN32 JRE: C:\Program Files\JavaSoft\JRE\1.3.1 +UNIX JDK: /usr/lib/jdk1.3.1/jre ++
+ DIRECTORY SEPERATOR / +
+JAVA_HOME/lib/ext/gl4java.jar +JAVA_HOME/lib/ext/gl4java-glutfonts.jar +JAVA_HOME/lib/ext/gl4java-glffonts.jar +JAVA_HOME/lib/ext/png.jar ++
+ WINDOWS: + ======== + JAVA_HOME/bin/GL4JavaGljMSJDirect.dll + JAVA_HOME/bin/GL4JavaJauGljJNI.dll + JAVA_HOME/bin/GL4JavaJauGljJNI12.dll + JAVA_HOME/bin/GL4JavaJauGljJNI13.dll + JAVA_HOME/bin/GL4JavaJauGljJNI14.dll + + UNIX X86: + ======== + JAVA_HOME/lib/i386/GL4JavaGljMSJDirect.so + JAVA_HOME/lib/i386/GL4JavaJauGljJNI.so + JAVA_HOME/lib/i386/GL4JavaJauGljJNI12.so + JAVA_HOME/lib/i386/GL4JavaJauGljJNI13.so + JAVA_HOME/lib/i386/GL4JavaJauGljJNI14.so + + UNIX PPC: + ======== + JAVA_HOME/lib/ppc/GL4JavaGljMSJDirect.so + JAVA_HOME/lib/ppc/GL4JavaJauGljJNI.so + JAVA_HOME/lib/ppc/GL4JavaJauGljJNI12.so + JAVA_HOME/lib/ppc/GL4JavaJauGljJNI13.so + JAVA_HOME/lib/ppc/GL4JavaJauGljJNI14.so ++
+ JAVA_HOME/bin ++for the dynamic libraries ! +
libjava.so (unix)+
java.dll (win32)
+ WINDOWS VARIANTS: + ================= + C:/WIN98/SYSTEM + C:/WIN95/SYSTEM + C:/WINNT/SYSTEM32 + + UNIX FLAVORS + ============ + /usr/lib ++
+ JAVA_HOME/lib/security/java.policy +
+grant codeBase "file:${java.home}/lib/ext/*" { + permission java.security.AllPermission; +}; +
PATH = your_path_variables;c:\jdk1.x\jre\bin;C:\jdk1.x\bin
c:\jdk1.x\jre\bin\java
My Canvas renders 1 frame, then stops, what's wrong ? +
+public void display(){ + + // Ensure GL Context is initialised correctly + if (!glj.gljMakeCurrent())return; + + // YOUR CUSTOM CODE goes here + + // swap the buffers IF double buffering is enabled + glj.gljSwap(); + + // just check if some opengl errors occured + glj.gljCheckGL(); + + // free the GL Context. This function MUST be called + // in last position in you display function. + glj.gljFree(); + +} ++ +If using the new gl listener model, you do not have to take care about this,
GLAnimCanvas vs GLJPanel, which should I choose ? +
GLJPanel/GLAnimCanvas subclass model vs GLEventListener model, which should I choose ? +
+ - Create a gl4java.GLCapabilities object indicating the use of + RGBA mode, etc. + - Pass this capabilities object to gl4java.drawable.GLDrawableFactory.getFactory(). + - Call addGLEventListener on the resulting GLDrawable to set up your listener, which should implement at least init() and display(). ++
+ - Call GLDrawableFactory.createGLAnimCanvas() + - Call setUseRepaint(false), setUseFpsSleep(false), and setUseYield(false) on the resulting GLAnimCanvas ++
Overview
Manual
-
API
+
FAQ
+
API (Javadoc)
+
API (Doxygen)
Thanxs
+
Demos
+
Trademarks
Performance Measurement Log-Files
diff --git a/docs/thanxs.html b/docs/thanxs.html
index d5efde5..c890b7d 100644
--- a/docs/thanxs.html
+++ b/docs/thanxs.html
@@ -62,7 +62,7 @@ for JavaTM
Logo !
Kenneth B. Russell, for motivating and participate in
Implementing JDK's 1.3 JAWT feature and
-
the new GLDrawable/GLEventListener model !
+
the new GLDrawable/GLEventListener model, and much more !
And all the many others, who are not named here !
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 : - *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClearIndex ( float c ) ; - -/** - * Original Function-Prototype : - *extern void glClearIndex ( GLfloat c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClearColor ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - *extern void glClearColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClear ( int mask ) ; - -/** - * Original Function-Prototype : - *extern void glClear ( GLbitfield mask ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexMask ( int mask ) ; - -/** - * Original Function-Prototype : - *extern void glIndexMask ( GLuint mask ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorMask ( boolean red, boolean green, boolean blue, boolean alpha ) ; - -/** - * Original Function-Prototype : - *extern void glColorMask ( GLboolean red , GLboolean green , GLboolean blue , GLboolean alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glAlphaFunc ( int func, float ref ) ; - -/** - * Original Function-Prototype : - *extern void glAlphaFunc ( GLenum func , GLclampf ref ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBlendFunc ( int sfactor, int dfactor ) ; - -/** - * Original Function-Prototype : - *extern void glBlendFunc ( GLenum sfactor , GLenum dfactor ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLogicOp ( int opcode ) ; - -/** - * Original Function-Prototype : - *extern void glLogicOp ( GLenum opcode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCullFace ( int mode ) ; - -/** - * Original Function-Prototype : - *extern void glCullFace ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFrontFace ( int mode ) ; - -/** - * Original Function-Prototype : - *extern void glFrontFace ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPointSize ( float size ) ; - -/** - * Original Function-Prototype : - *extern void glPointSize ( GLfloat size ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLineWidth ( float width ) ; - -/** - * Original Function-Prototype : - *extern void glLineWidth ( GLfloat width ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLineStipple ( int factor, short pattern ) ; - -/** - * Original Function-Prototype : - *extern void glLineStipple ( GLint factor , GLushort pattern ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPolygonMode ( int face, int mode ) ; - -/** - * Original Function-Prototype : - *extern void glPolygonMode ( GLenum face , GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPolygonOffset ( float factor, float units ) ; - -/** - * Original Function-Prototype : - *extern void glPolygonOffset ( GLfloat factor , GLfloat units ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPolygonStipple ( byte[] mask ) ; - -/** - * Original Function-Prototype : - *extern void glPolygonStipple ( const GLubyte * mask ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetPolygonStipple ( byte[] mask ) ; - -/** - * Original Function-Prototype : - *extern void glGetPolygonStipple ( GLubyte * mask ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEdgeFlag ( boolean flag ) ; - -/** - * Original Function-Prototype : - *extern void glEdgeFlag ( GLboolean flag ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEdgeFlagv ( boolean[] flag ) ; - -/** - * Original Function-Prototype : - *extern void glEdgeFlagv ( const GLboolean * flag ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glScissor ( int x, int y, int width, int height ) ; - -/** - * Original Function-Prototype : - *extern void glScissor ( GLint x , GLint y , GLsizei width , GLsizei height ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClipPlane ( int plane, double[] equation ) ; - -/** - * Original Function-Prototype : - *extern void glClipPlane ( GLenum plane , const GLdouble * equation ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetClipPlane ( int plane, double[] equation ) ; - -/** - * Original Function-Prototype : - *extern void glGetClipPlane ( GLenum plane , GLdouble * equation ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDrawBuffer ( int mode ) ; - -/** - * Original Function-Prototype : - *extern void glDrawBuffer ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReadBuffer ( int mode ) ; - -/** - * Original Function-Prototype : - *extern void glReadBuffer ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEnable ( int cap ) ; - -/** - * Original Function-Prototype : - *extern void glEnable ( GLenum cap ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDisable ( int cap ) ; - -/** - * Original Function-Prototype : - *extern void glDisable ( GLenum cap ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glIsEnabled ( int cap ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glIsEnabled ( GLenum cap ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEnableClientState ( int cap ) ; - -/** - * Original Function-Prototype : - *extern void glEnableClientState ( GLenum cap ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDisableClientState ( int cap ) ; - -/** - * Original Function-Prototype : - *extern void glDisableClientState ( GLenum cap ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetBooleanv ( int pname, boolean[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetBooleanv ( GLenum pname , GLboolean * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetDoublev ( int pname, double[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetDoublev ( GLenum pname , GLdouble * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetFloatv ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetFloatv ( GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetIntegerv ( int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetIntegerv ( GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPushAttrib ( int mask ) ; - -/** - * Original Function-Prototype : - *extern void glPushAttrib ( GLbitfield mask ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPopAttrib ( ) ; - -/** - * Original Function-Prototype : - *extern void glPopAttrib ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPushClientAttrib ( int mask ) ; - -/** - * Original Function-Prototype : - *extern void glPushClientAttrib ( GLbitfield mask ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPopClientAttrib ( ) ; - -/** - * Original Function-Prototype : - *extern void glPopClientAttrib ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glRenderMode ( int mode ) ; - -/** - * Original Function-Prototype : - *extern GLint glRenderMode ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glGetError ( ) ; - -/** - * Original Function-Prototype : - *extern GLenum glGetError ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFinish ( ) ; - -/** - * Original Function-Prototype : - *extern void glFinish ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFlush ( ) ; - -/** - * Original Function-Prototype : - *extern void glFlush ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glHint ( int target, int mode ) ; - -/** - * Original Function-Prototype : - *extern void glHint ( GLenum target , GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClearDepth ( double depth ) ; - -/** - * Original Function-Prototype : - *extern void glClearDepth ( GLclampd depth ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDepthFunc ( int func ) ; - -/** - * Original Function-Prototype : - *extern void glDepthFunc ( GLenum func ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDepthMask ( boolean flag ) ; - -/** - * Original Function-Prototype : - *extern void glDepthMask ( GLboolean flag ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDepthRange ( double near_val, double far_val ) ; - -/** - * Original Function-Prototype : - *extern void glDepthRange ( GLclampd near_val , GLclampd far_val ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClearAccum ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - *extern void glClearAccum ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glAccum ( int op, float value ) ; - -/** - * Original Function-Prototype : - *extern void glAccum ( GLenum op , GLfloat value ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMatrixMode ( int mode ) ; - -/** - * Original Function-Prototype : - *extern void glMatrixMode ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void glOrtho ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void glFrustum ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glViewport ( int x, int y, int width, int height ) ; - -/** - * Original Function-Prototype : - *extern void glViewport ( GLint x , GLint y , GLsizei width , GLsizei height ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPushMatrix ( ) ; - -/** - * Original Function-Prototype : - *extern void glPushMatrix ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPopMatrix ( ) ; - -/** - * Original Function-Prototype : - *extern void glPopMatrix ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadIdentity ( ) ; - -/** - * Original Function-Prototype : - *extern void glLoadIdentity ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadMatrixd ( double[] m ) ; - -/** - * Original Function-Prototype : - *extern void glLoadMatrixd ( const GLdouble * m ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadMatrixf ( float[] m ) ; - -/** - * Original Function-Prototype : - *extern void glLoadMatrixf ( const GLfloat * m ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultMatrixd ( double[] m ) ; - -/** - * Original Function-Prototype : - *extern void glMultMatrixd ( const GLdouble * m ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultMatrixf ( float[] m ) ; - -/** - * Original Function-Prototype : - *extern void glMultMatrixf ( const GLfloat * m ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRotated ( double angle, double x, double y, double z ) ; - -/** - * Original Function-Prototype : - *extern void glRotated ( GLdouble angle , GLdouble x , GLdouble y , GLdouble z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRotatef ( float angle, float x, float y, float z ) ; - -/** - * Original Function-Prototype : - *extern void glRotatef ( GLfloat angle , GLfloat x , GLfloat y , GLfloat z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glScaled ( double x, double y, double z ) ; - -/** - * Original Function-Prototype : - *extern void glScaled ( GLdouble x , GLdouble y , GLdouble z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glScalef ( float x, float y, float z ) ; - -/** - * Original Function-Prototype : - *extern void glScalef ( GLfloat x , GLfloat y , GLfloat z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTranslated ( double x, double y, double z ) ; - -/** - * Original Function-Prototype : - *extern void glTranslated ( GLdouble x , GLdouble y , GLdouble z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTranslatef ( float x, float y, float z ) ; - -/** - * Original Function-Prototype : - *extern void glTranslatef ( GLfloat x , GLfloat y , GLfloat z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glIsList ( int list ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glIsList ( GLuint list ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeleteLists ( int list, int range ) ; - -/** - * Original Function-Prototype : - *extern void glDeleteLists ( GLuint list , GLsizei range ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glGenLists ( int range ) ; - -/** - * Original Function-Prototype : - *extern GLuint glGenLists ( GLsizei range ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNewList ( int list, int mode ) ; - -/** - * Original Function-Prototype : - *extern void glNewList ( GLuint list , GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEndList ( ) ; - -/** - * Original Function-Prototype : - *extern void glEndList ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCallList ( int list ) ; - -/** - * Original Function-Prototype : - *extern void glCallList ( GLuint list ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCallLists ( int n, int type, @@ -897,1580 +897,1580 @@ public final String getClassVersion ( ) int type, Buffer lists ) ; - -/** - * Original Function-Prototype : - *extern void glCallLists ( GLsizei n , GLenum type , const GLvoid * lists ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glListBase ( int base ) ; - -/** - * Original Function-Prototype : - *extern void glListBase ( GLuint base ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBegin ( int mode ) ; - -/** - * Original Function-Prototype : - *extern void glBegin ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEnd ( ) ; - -/** - * Original Function-Prototype : - *extern void glEnd ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex2d ( double x, double y ) ; - -/** - * Original Function-Prototype : - *extern void glVertex2d ( GLdouble x , GLdouble y ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex2f ( float x, float y ) ; - -/** - * Original Function-Prototype : - *extern void glVertex2f ( GLfloat x , GLfloat y ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex2i ( int x, int y ) ; - -/** - * Original Function-Prototype : - *extern void glVertex2i ( GLint x , GLint y ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex2s ( short x, short y ) ; - -/** - * Original Function-Prototype : - *extern void glVertex2s ( GLshort x , GLshort y ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex3d ( double x, double y, double z ) ; - -/** - * Original Function-Prototype : - *extern void glVertex3d ( GLdouble x , GLdouble y , GLdouble z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex3f ( float x, float y, float z ) ; - -/** - * Original Function-Prototype : - *extern void glVertex3f ( GLfloat x , GLfloat y , GLfloat z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex3i ( int x, int y, int z ) ; - -/** - * Original Function-Prototype : - *extern void glVertex3i ( GLint x , GLint y , GLint z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex3s ( short x, short y, short z ) ; - -/** - * Original Function-Prototype : - *extern void glVertex3s ( GLshort x , GLshort y , GLshort z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex4d ( double x, double y, double z, double w ) ; - -/** - * Original Function-Prototype : - *extern void glVertex4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex4f ( float x, float y, float z, float w ) ; - -/** - * Original Function-Prototype : - *extern void glVertex4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex4i ( int x, int y, int z, int w ) ; - -/** - * Original Function-Prototype : - *extern void glVertex4i ( GLint x , GLint y , GLint z , GLint w ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex4s ( short x, short y, short z, short w ) ; - -/** - * Original Function-Prototype : - *extern void glVertex4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex2dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex2dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex2fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex2fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex2iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex2iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex2sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex2sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex3dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex3fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex3iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex3sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex4dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex4dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex4fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex4fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex4iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex4iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex4sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex4sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3b ( byte nx, byte ny, byte nz ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3b ( GLbyte nx , GLbyte ny , GLbyte nz ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3d ( double nx, double ny, double nz ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3d ( GLdouble nx , GLdouble ny , GLdouble nz ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3f ( float nx, float ny, float nz ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3f ( GLfloat nx , GLfloat ny , GLfloat nz ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3i ( int nx, int ny, int nz ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3i ( GLint nx , GLint ny , GLint nz ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3s ( short nx, short ny, short nz ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3s ( GLshort nx , GLshort ny , GLshort nz ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3bv ( byte[] v ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3bv ( const GLbyte * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexd ( double c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexd ( GLdouble c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexf ( float c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexf ( GLfloat c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexi ( int c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexi ( GLint c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexs ( short c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexs ( GLshort c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexub ( byte c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexub ( GLubyte c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexdv ( double[] c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexdv ( const GLdouble * c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexfv ( float[] c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexfv ( const GLfloat * c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexiv ( int[] c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexiv ( const GLint * c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexsv ( short[] c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexsv ( const GLshort * c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexubv ( byte[] c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexubv ( const GLubyte * c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3b ( byte red, byte green, byte blue ) ; - -/** - * Original Function-Prototype : - *extern void glColor3b ( GLbyte red , GLbyte green , GLbyte blue ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3d ( double red, double green, double blue ) ; - -/** - * Original Function-Prototype : - *extern void glColor3d ( GLdouble red , GLdouble green , GLdouble blue ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3f ( float red, float green, float blue ) ; - -/** - * Original Function-Prototype : - *extern void glColor3f ( GLfloat red , GLfloat green , GLfloat blue ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3i ( int red, int green, int blue ) ; - -/** - * Original Function-Prototype : - *extern void glColor3i ( GLint red , GLint green , GLint blue ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3s ( short red, short green, short blue ) ; - -/** - * Original Function-Prototype : - *extern void glColor3s ( GLshort red , GLshort green , GLshort blue ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3ub ( byte red, byte green, byte blue ) ; - -/** - * Original Function-Prototype : - *extern void glColor3ub ( GLubyte red , GLubyte green , GLubyte blue ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3ui ( int red, int green, int blue ) ; - -/** - * Original Function-Prototype : - *extern void glColor3ui ( GLuint red , GLuint green , GLuint blue ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3us ( short red, short green, short blue ) ; - -/** - * Original Function-Prototype : - *extern void glColor3us ( GLushort red , GLushort green , GLushort blue ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4b ( byte red, byte green, byte blue, byte alpha ) ; - -/** - * Original Function-Prototype : - *extern void glColor4b ( GLbyte red , GLbyte green , GLbyte blue , GLbyte alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4d ( double red, double green, double blue, double alpha ) ; - -/** - * Original Function-Prototype : - *extern void glColor4d ( GLdouble red , GLdouble green , GLdouble blue , GLdouble alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4f ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - *extern void glColor4f ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4i ( int red, int green, int blue, int alpha ) ; - -/** - * Original Function-Prototype : - *extern void glColor4i ( GLint red , GLint green , GLint blue , GLint alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4s ( short red, short green, short blue, short alpha ) ; - -/** - * Original Function-Prototype : - *extern void glColor4s ( GLshort red , GLshort green , GLshort blue , GLshort alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4ub ( byte red, byte green, byte blue, byte alpha ) ; - -/** - * Original Function-Prototype : - *extern void glColor4ub ( GLubyte red , GLubyte green , GLubyte blue , GLubyte alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4ui ( int red, int green, int blue, int alpha ) ; - -/** - * Original Function-Prototype : - *extern void glColor4ui ( GLuint red , GLuint green , GLuint blue , GLuint alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4us ( short red, short green, short blue, short alpha ) ; - -/** - * Original Function-Prototype : - *extern void glColor4us ( GLushort red , GLushort green , GLushort blue , GLushort alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3bv ( byte[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor3bv ( const GLbyte * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor3dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor3fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor3iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor3sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3ubv ( byte[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor3ubv ( const GLubyte * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3uiv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor3uiv ( const GLuint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3usv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor3usv ( const GLushort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4bv ( byte[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor4bv ( const GLbyte * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor4dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor4fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor4iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor4sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4ubv ( byte[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor4ubv ( const GLubyte * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4uiv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor4uiv ( const GLuint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4usv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor4usv ( const GLushort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord1d ( double s ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord1d ( GLdouble s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord1f ( float s ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord1f ( GLfloat s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord1i ( int s ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord1i ( GLint s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord1s ( short s ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord1s ( GLshort s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2d ( double s, double t ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2d ( GLdouble s , GLdouble t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2f ( float s, float t ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2f ( GLfloat s , GLfloat t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2i ( int s, int t ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2i ( GLint s , GLint t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2s ( short s, short t ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2s ( GLshort s , GLshort t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord3d ( double s, double t, double r ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord3d ( GLdouble s , GLdouble t , GLdouble r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord3f ( float s, float t, float r ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord3f ( GLfloat s , GLfloat t , GLfloat r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord3i ( int s, int t, int r ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord3i ( GLint s , GLint t , GLint r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord3s ( short s, short t, short r ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord3s ( GLshort s , GLshort t , GLshort r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4d ( double s, double t, double r, double q ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4d ( GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4f ( float s, float t, float r, float q ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4f ( GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4i ( int s, int t, int r, int q ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4i ( GLint s , GLint t , GLint r , GLint q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4s ( short s, short t, short r, short q ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4s ( GLshort s , GLshort t , GLshort r , GLshort q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord1dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord1dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord1fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord1fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord1iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord1iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord1sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord1sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord3dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord3fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord3iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord3sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos2d ( double x, double y ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos2d ( GLdouble x , GLdouble y ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos2f ( float x, float y ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos2f ( GLfloat x , GLfloat y ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos2i ( int x, int y ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos2i ( GLint x , GLint y ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos2s ( short x, short y ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos2s ( GLshort x , GLshort y ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos3d ( double x, double y, double z ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos3d ( GLdouble x , GLdouble y , GLdouble z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos3f ( float x, float y, float z ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos3f ( GLfloat x , GLfloat y , GLfloat z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos3i ( int x, int y, int z ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos3i ( GLint x , GLint y , GLint z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos3s ( short x, short y, short z ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos3s ( GLshort x , GLshort y , GLshort z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos4d ( double x, double y, double z, double w ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos4f ( float x, float y, float z, float w ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos4i ( int x, int y, int z, int w ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos4i ( GLint x , GLint y , GLint z , GLint w ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos4s ( short x, short y, short z, short w ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos2dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos2dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos2fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos2fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos2iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos2iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos2sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos2sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos3dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos3fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos3iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos3sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos4dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos4dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos4fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos4fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos4iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos4iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos4sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos4sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRectd ( double x1, double y1, double x2, double y2 ) ; - -/** - * Original Function-Prototype : - *extern void glRectd ( GLdouble x1 , GLdouble y1 , GLdouble x2 , GLdouble y2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRectf ( float x1, float y1, float x2, float y2 ) ; - -/** - * Original Function-Prototype : - *extern void glRectf ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRecti ( int x1, int y1, int x2, int y2 ) ; - -/** - * Original Function-Prototype : - *extern void glRecti ( GLint x1 , GLint y1 , GLint x2 , GLint y2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRects ( short x1, short y1, short x2, short y2 ) ; - -/** - * Original Function-Prototype : - *extern void glRects ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRectdv ( double[] v1, double[] v2 ) ; - -/** - * Original Function-Prototype : - *extern void glRectdv ( const GLdouble * v1 , const GLdouble * v2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRectfv ( float[] v1, float[] v2 ) ; - -/** - * Original Function-Prototype : - *extern void glRectfv ( const GLfloat * v1 , const GLfloat * v2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRectiv ( int[] v1, int[] v2 ) ; - -/** - * Original Function-Prototype : - *extern void glRectiv ( const GLint * v1 , const GLint * v2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRectsv ( short[] v1, short[] v2 - ) ; - -/** - * Original Function-Prototype : - *extern void glRectsv ( const GLshort * v1 , const GLshort * v2 ) ; - *- */ + *
+ ) ; + +/** + * Original Function-Prototype : + *+ */ public final native void glVertexPointer ( int size, int type, @@ -2519,13 +2519,13 @@ public final String getClassVersion ( ) int stride, Buffer ptr ) ; - -/** - * Original Function-Prototype : - *extern void glVertexPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalPointer ( int type, int stride, @@ -2566,13 +2566,13 @@ public final String getClassVersion ( ) int stride, Buffer ptr ) ; - -/** - * Original Function-Prototype : - *extern void glNormalPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorPointer ( int size, int type, @@ -2621,13 +2621,13 @@ public final String getClassVersion ( ) int stride, Buffer ptr ) ; - -/** - * Original Function-Prototype : - *extern void glColorPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexPointer ( int type, int stride, @@ -2668,13 +2668,13 @@ public final String getClassVersion ( ) int stride, Buffer ptr ) ; - -/** - * Original Function-Prototype : - *extern void glIndexPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoordPointer ( int size, int type, @@ -2723,13 +2723,13 @@ public final String getClassVersion ( ) int stride, Buffer ptr ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoordPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEdgeFlagPointer ( int stride, byte[] ptr @@ -2762,13 +2762,13 @@ public final String getClassVersion ( ) int stride, Buffer ptr ) ; - -/** - * Original Function-Prototype : - *extern void glEdgeFlagPointer ( GLsizei stride , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetPointerv ( int pname, byte[][] params @@ -2797,35 +2797,35 @@ public final String getClassVersion ( ) int pname, long[][] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetPointerv ( GLenum pname , GLvoid * * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glArrayElement ( int i ) ; - -/** - * Original Function-Prototype : - *extern void glArrayElement ( GLint i ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDrawArrays ( int mode, int first, int count ) ; - -/** - * Original Function-Prototype : - *extern void glDrawArrays ( GLenum mode , GLint first , GLsizei count ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDrawElements ( int mode, int count, @@ -2874,13 +2874,13 @@ public final String getClassVersion ( ) int type, Buffer indices ) ; - -/** - * Original Function-Prototype : - *extern void glDrawElements ( GLenum mode , GLsizei count , GLenum type , const GLvoid * indices ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glInterleavedArrays ( int format, int stride, @@ -2921,346 +2921,346 @@ public final String getClassVersion ( ) int stride, Buffer pointer ) ; - -/** - * Original Function-Prototype : - *extern void glInterleavedArrays ( GLenum format , GLsizei stride , const GLvoid * pointer ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glShadeModel ( int mode ) ; - -/** - * Original Function-Prototype : - *extern void glShadeModel ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLightf ( int light, int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glLightf ( GLenum light , GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLighti ( int light, int pname, int param ) ; - -/** - * Original Function-Prototype : - *extern void glLighti ( GLenum light , GLenum pname , GLint param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLightfv ( int light, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glLightfv ( GLenum light , GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLightiv ( int light, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glLightiv ( GLenum light , GLenum pname , const GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetLightfv ( int light, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetLightfv ( GLenum light , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetLightiv ( int light, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetLightiv ( GLenum light , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLightModelf ( int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glLightModelf ( GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLightModeli ( int pname, int param ) ; - -/** - * Original Function-Prototype : - *extern void glLightModeli ( GLenum pname , GLint param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLightModelfv ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glLightModelfv ( GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLightModeliv ( int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glLightModeliv ( GLenum pname , const GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMaterialf ( int face, int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glMaterialf ( GLenum face , GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMateriali ( int face, int pname, int param ) ; - -/** - * Original Function-Prototype : - *extern void glMateriali ( GLenum face , GLenum pname , GLint param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMaterialfv ( int face, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glMaterialfv ( GLenum face , GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMaterialiv ( int face, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glMaterialiv ( GLenum face , GLenum pname , const GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMaterialfv ( int face, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetMaterialfv ( GLenum face , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMaterialiv ( int face, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetMaterialiv ( GLenum face , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorMaterial ( int face, int mode ) ; - -/** - * Original Function-Prototype : - *extern void glColorMaterial ( GLenum face , GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelZoom ( float xfactor, float yfactor ) ; - -/** - * Original Function-Prototype : - *extern void glPixelZoom ( GLfloat xfactor , GLfloat yfactor ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelStoref ( int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glPixelStoref ( GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelStorei ( int pname, int param ) ; - -/** - * Original Function-Prototype : - *extern void glPixelStorei ( GLenum pname , GLint param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTransferf ( int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTransferf ( GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTransferi ( int pname, int param ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTransferi ( GLenum pname , GLint param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelMapfv ( int map, int mapsize, float[] values ) ; - -/** - * Original Function-Prototype : - *extern void glPixelMapfv ( GLenum map , GLint mapsize , const GLfloat * values ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelMapuiv ( int map, int mapsize, int[] values ) ; - -/** - * Original Function-Prototype : - *extern void glPixelMapuiv ( GLenum map , GLint mapsize , const GLuint * values ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelMapusv ( int map, int mapsize, short[] values ) ; - -/** - * Original Function-Prototype : - *extern void glPixelMapusv ( GLenum map , GLint mapsize , const GLushort * values ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetPixelMapfv ( int map, float[] values ) ; - -/** - * Original Function-Prototype : - *extern void glGetPixelMapfv ( GLenum map , GLfloat * values ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetPixelMapuiv ( int map, int[] values ) ; - -/** - * Original Function-Prototype : - *extern void glGetPixelMapuiv ( GLenum map , GLuint * values ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetPixelMapusv ( int map, short[] values ) ; - -/** - * Original Function-Prototype : - *extern void glGetPixelMapusv ( GLenum map , GLushort * values ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBitmap ( int width, int height, @@ -3270,13 +3270,13 @@ public final String getClassVersion ( ) float ymove, byte[] bitmap ) ; - -/** - * Original Function-Prototype : - *extern void glBitmap ( GLsizei width , GLsizei height , GLfloat xorig , GLfloat yorig , GLfloat xmove , GLfloat ymove , const GLubyte * bitmap ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReadPixels ( int x, int y, @@ -3349,13 +3349,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - *extern void glReadPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum format , GLenum type , GLvoid * pixels ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDrawPixels ( int width, int height, @@ -3412,13 +3412,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - *extern void glDrawPixels ( GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyPixels ( int x, int y, @@ -3426,335 +3426,335 @@ public final String getClassVersion ( ) int height, int type ) ; - -/** - * Original Function-Prototype : - *extern void glCopyPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum type ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glStencilFunc ( int func, int ref, int mask ) ; - -/** - * Original Function-Prototype : - *extern void glStencilFunc ( GLenum func , GLint ref , GLuint mask ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glStencilMask ( int mask ) ; - -/** - * Original Function-Prototype : - *extern void glStencilMask ( GLuint mask ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glStencilOp ( int fail, int zfail, int zpass ) ; - -/** - * Original Function-Prototype : - *extern void glStencilOp ( GLenum fail , GLenum zfail , GLenum zpass ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClearStencil ( int s ) ; - -/** - * Original Function-Prototype : - *extern void glClearStencil ( GLint s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexGend ( int coord, int pname, double param ) ; - -/** - * Original Function-Prototype : - *extern void glTexGend ( GLenum coord , GLenum pname , GLdouble param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexGenf ( int coord, int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glTexGenf ( GLenum coord , GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexGeni ( int coord, int pname, int param ) ; - -/** - * Original Function-Prototype : - *extern void glTexGeni ( GLenum coord , GLenum pname , GLint param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexGendv ( int coord, int pname, double[] params ) ; - -/** - * Original Function-Prototype : - *extern void glTexGendv ( GLenum coord , GLenum pname , const GLdouble * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexGenfv ( int coord, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glTexGenfv ( GLenum coord , GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexGeniv ( int coord, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glTexGeniv ( GLenum coord , GLenum pname , const GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexGendv ( int coord, int pname, double[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexGendv ( GLenum coord , GLenum pname , GLdouble * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexGenfv ( int coord, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexGenfv ( GLenum coord , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexGeniv ( int coord, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexGeniv ( GLenum coord , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexEnvf ( int target, int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glTexEnvf ( GLenum target , GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexEnvi ( int target, int pname, int param ) ; - -/** - * Original Function-Prototype : - *extern void glTexEnvi ( GLenum target , GLenum pname , GLint param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexEnvfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glTexEnvfv ( GLenum target , GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexEnviv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glTexEnviv ( GLenum target , GLenum pname , const GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexEnvfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexEnvfv ( GLenum target , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexEnviv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexEnviv ( GLenum target , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexParameterf ( int target, int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glTexParameterf ( GLenum target , GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexParameteri ( int target, int pname, int param ) ; - -/** - * Original Function-Prototype : - *extern void glTexParameteri ( GLenum target , GLenum pname , GLint param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glTexParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glTexParameteriv ( GLenum target , GLenum pname , const GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexLevelParameterfv ( int target, int level, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexLevelParameterfv ( GLenum target , GLint level , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexLevelParameteriv ( int target, int level, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexLevelParameteriv ( GLenum target , GLint level , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexImage1D ( int target, int level, @@ -3835,13 +3835,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - *extern void glTexImage1D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexImage2D ( int target, int level, @@ -3930,13 +3930,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - *extern void glTexImage2D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLsizei height , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexImage ( int target, int level, @@ -3993,80 +3993,80 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexImage ( GLenum target , GLint level , GLenum format , GLenum type , GLvoid * pixels ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGenTextures ( int n, int[] textures ) ; - -/** - * Original Function-Prototype : - *extern void glGenTextures ( GLsizei n , GLuint * textures ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeleteTextures ( int n, int[] textures ) ; - -/** - * Original Function-Prototype : - *extern void glDeleteTextures ( GLsizei n , const GLuint * textures ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBindTexture ( int target, int texture ) ; - -/** - * Original Function-Prototype : - *extern void glBindTexture ( GLenum target , GLuint texture ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPrioritizeTextures ( int n, int[] textures, float[] priorities ) ; - -/** - * Original Function-Prototype : - *extern void glPrioritizeTextures ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glAreTexturesResident ( int n, int[] textures, boolean[] residences ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glAreTexturesResident ( GLsizei n , const GLuint * textures , GLboolean * residences ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glIsTexture ( int texture ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glIsTexture ( GLuint texture ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexSubImage1D ( int target, int level, @@ -4139,13 +4139,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - *extern void glTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLenum type , const GLvoid * pixels ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexSubImage2D ( int target, int level, @@ -4234,13 +4234,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - *extern void glTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexImage1D ( int target, int level, @@ -4250,13 +4250,13 @@ public final String getClassVersion ( ) int width, int border ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLint border ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexImage2D ( int target, int level, @@ -4267,13 +4267,13 @@ public final String getClassVersion ( ) int height, int border ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height , GLint border ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexSubImage1D ( int target, int level, @@ -4282,13 +4282,13 @@ public final String getClassVersion ( ) int y, int width ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLint x , GLint y , GLsizei width ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexSubImage2D ( int target, int level, @@ -4299,13 +4299,13 @@ public final String getClassVersion ( ) int width, int height ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMap1d ( int target, double u1, @@ -4314,13 +4314,13 @@ public final String getClassVersion ( ) int order, double[] points ) ; - -/** - * Original Function-Prototype : - *extern void glMap1d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint stride , GLint order , const GLdouble * points ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMap1f ( int target, float u1, @@ -4329,13 +4329,13 @@ public final String getClassVersion ( ) int order, float[] points ) ; - -/** - * Original Function-Prototype : - *extern void glMap1f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint stride , GLint order , const GLfloat * points ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMap2d ( int target, double u1, @@ -4348,13 +4348,13 @@ public final String getClassVersion ( ) int vorder, double[] points ) ; - -/** - * Original Function-Prototype : - *extern void glMap2d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint ustride , GLint uorder , GLdouble v1 , GLdouble v2 , GLint vstride , GLint vorder , const GLdouble * points ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMap2f ( int target, float u1, @@ -4367,155 +4367,155 @@ public final String getClassVersion ( ) int vorder, float[] points ) ; - -/** - * Original Function-Prototype : - *extern void glMap2f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint ustride , GLint uorder , GLfloat v1 , GLfloat v2 , GLint vstride , GLint vorder , const GLfloat * points ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMapdv ( int target, int query, double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glGetMapdv ( GLenum target , GLenum query , GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMapfv ( int target, int query, float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glGetMapfv ( GLenum target , GLenum query , GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMapiv ( int target, int query, int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glGetMapiv ( GLenum target , GLenum query , GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalCoord1d ( double u ) ; - -/** - * Original Function-Prototype : - *extern void glEvalCoord1d ( GLdouble u ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalCoord1f ( float u ) ; - -/** - * Original Function-Prototype : - *extern void glEvalCoord1f ( GLfloat u ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalCoord1dv ( double[] u ) ; - -/** - * Original Function-Prototype : - *extern void glEvalCoord1dv ( const GLdouble * u ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalCoord1fv ( float[] u ) ; - -/** - * Original Function-Prototype : - *extern void glEvalCoord1fv ( const GLfloat * u ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalCoord2d ( double u, double v ) ; - -/** - * Original Function-Prototype : - *extern void glEvalCoord2d ( GLdouble u , GLdouble v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalCoord2f ( float u, float v ) ; - -/** - * Original Function-Prototype : - *extern void glEvalCoord2f ( GLfloat u , GLfloat v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalCoord2dv ( double[] u ) ; - -/** - * Original Function-Prototype : - *extern void glEvalCoord2dv ( const GLdouble * u ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalCoord2fv ( float[] u ) ; - -/** - * Original Function-Prototype : - *extern void glEvalCoord2fv ( const GLfloat * u ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMapGrid1d ( int un, double u1, double u2 ) ; - -/** - * Original Function-Prototype : - *extern void glMapGrid1d ( GLint un , GLdouble u1 , GLdouble u2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMapGrid1f ( int un, float u1, float u2 ) ; - -/** - * Original Function-Prototype : - *extern void glMapGrid1f ( GLint un , GLfloat u1 , GLfloat u2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMapGrid2d ( int un, double u1, @@ -4524,13 +4524,13 @@ public final String getClassVersion ( ) double v1, double v2 ) ; - -/** - * Original Function-Prototype : - *extern void glMapGrid2d ( GLint un , GLdouble u1 , GLdouble u2 , GLint vn , GLdouble v1 , GLdouble v2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMapGrid2f ( int un, float u1, @@ -4539,46 +4539,46 @@ public final String getClassVersion ( ) float v1, float v2 ) ; - -/** - * Original Function-Prototype : - *extern void glMapGrid2f ( GLint un , GLfloat u1 , GLfloat u2 , GLint vn , GLfloat v1 , GLfloat v2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalPoint1 ( int i ) ; - -/** - * Original Function-Prototype : - *extern void glEvalPoint1 ( GLint i ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalPoint2 ( int i, int j ) ; - -/** - * Original Function-Prototype : - *extern void glEvalPoint2 ( GLint i , GLint j ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalMesh1 ( int mode, int i1, int i2 ) ; - -/** - * Original Function-Prototype : - *extern void glEvalMesh1 ( GLenum mode , GLint i1 , GLint i2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalMesh2 ( int mode, int i1, @@ -4586,128 +4586,128 @@ public final String getClassVersion ( ) int j1, int j2 ) ; - -/** - * Original Function-Prototype : - *extern void glEvalMesh2 ( GLenum mode , GLint i1 , GLint i2 , GLint j1 , GLint j2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogf ( int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glFogf ( GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogi ( int pname, int param ) ; - -/** - * Original Function-Prototype : - *extern void glFogi ( GLenum pname , GLint param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogfv ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glFogfv ( GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogiv ( int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glFogiv ( GLenum pname , const GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFeedbackBuffer ( int size, int type, float[] buffer ) ; - -/** - * Original Function-Prototype : - *extern void glFeedbackBuffer ( GLsizei size , GLenum type , GLfloat * buffer ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPassThrough ( float token ) ; - -/** - * Original Function-Prototype : - *extern void glPassThrough ( GLfloat token ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSelectBuffer ( int size, int[] buffer ) ; - -/** - * Original Function-Prototype : - *extern void glSelectBuffer ( GLsizei size , GLuint * buffer ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glInitNames ( ) ; - -/** - * Original Function-Prototype : - *extern void glInitNames ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadName ( int name ) ; - -/** - * Original Function-Prototype : - *extern void glLoadName ( GLuint name ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPushName ( int name ) ; - -/** - * Original Function-Prototype : - *extern void glPushName ( GLuint name ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPopName ( ) ; - -/** - * Original Function-Prototype : - *extern void glPopName ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDrawRangeElements ( int mode, int start, @@ -4772,13 +4772,13 @@ public final String getClassVersion ( ) int type, Buffer indices ) ; - -/** - * Original Function-Prototype : - *extern void glDrawRangeElements ( GLenum mode , GLuint start , GLuint end , GLsizei count , GLenum type , const GLvoid * indices ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexImage3D ( int target, int level, @@ -4875,13 +4875,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - *extern void glTexImage3D ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexSubImage3D ( int target, int level, @@ -4986,13 +4986,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - *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 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexSubImage3D ( int target, int level, @@ -5004,13 +5004,13 @@ public final String getClassVersion ( ) int width, int height ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorTable ( int target, int internalformat, @@ -5075,13 +5075,13 @@ public final String getClassVersion ( ) int type, Buffer table ) ; - -/** - * Original Function-Prototype : - *extern void glColorTable ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorSubTable ( int target, int start, @@ -5146,37 +5146,37 @@ public final String getClassVersion ( ) int type, Buffer data ) ; - -/** - * Original Function-Prototype : - *extern void glColorSubTable ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorTableParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glColorTableParameteriv ( GLenum target , GLenum pname , const GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorTableParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glColorTableParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyColorSubTable ( int target, int start, @@ -5184,13 +5184,13 @@ public final String getClassVersion ( ) int y, int width ) ; - -/** - * Original Function-Prototype : - *extern void glCopyColorSubTable ( GLenum target , GLsizei start , GLint x , GLint y , GLsizei width ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyColorTable ( int target, int internalformat, @@ -5198,13 +5198,13 @@ public final String getClassVersion ( ) int y, int width ) ; - -/** - * Original Function-Prototype : - *extern void glCopyColorTable ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetColorTable ( int target, int format, @@ -5253,83 +5253,83 @@ public final String getClassVersion ( ) int type, Buffer table ) ; - -/** - * Original Function-Prototype : - *extern void glGetColorTable ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetColorTableParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetColorTableParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetColorTableParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetColorTableParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBlendEquation ( int mode ) ; - -/** - * Original Function-Prototype : - *extern void glBlendEquation ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBlendColor ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - *extern void glBlendColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glHistogram ( int target, int width, int internalformat, boolean sink ) ; - -/** - * Original Function-Prototype : - *extern void glHistogram ( GLenum target , GLsizei width , GLenum internalformat , GLboolean sink ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glResetHistogram ( int target ) ; - -/** - * Original Function-Prototype : - *extern void glResetHistogram ( GLenum target ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetHistogram ( int target, boolean reset, @@ -5386,59 +5386,59 @@ public final String getClassVersion ( ) int type, Buffer values ) ; - -/** - * Original Function-Prototype : - *extern void glGetHistogram ( GLenum target , GLboolean reset , GLenum format , GLenum type , GLvoid * values ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetHistogramParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetHistogramParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetHistogramParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetHistogramParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMinmax ( int target, int internalformat, boolean sink ) ; - -/** - * Original Function-Prototype : - *extern void glMinmax ( GLenum target , GLenum internalformat , GLboolean sink ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glResetMinmax ( int target ) ; - -/** - * Original Function-Prototype : - *extern void glResetMinmax ( GLenum target ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMinmax ( int target, boolean reset, @@ -5495,37 +5495,37 @@ public final String getClassVersion ( ) int types, Buffer values ) ; - -/** - * Original Function-Prototype : - *extern void glGetMinmax ( GLenum target , GLboolean reset , GLenum format , GLenum types , GLvoid * values ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMinmaxParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetMinmaxParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMinmaxParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetMinmaxParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionFilter1D ( int target, int internalformat, @@ -5590,13 +5590,13 @@ public final String getClassVersion ( ) int type, Buffer image ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionFilter1D ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * image ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionFilter2D ( int target, int internalformat, @@ -5669,61 +5669,61 @@ public final String getClassVersion ( ) int type, Buffer image ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * image ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionParameterf ( int target, int pname, float params ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionParameterf ( GLenum target , GLenum pname , GLfloat params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionParameteri ( int target, int pname, int params ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionParameteri ( GLenum target , GLenum pname , GLint params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionParameteriv ( GLenum target , GLenum pname , const GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyConvolutionFilter1D ( int target, int internalformat, @@ -5731,13 +5731,13 @@ public final String getClassVersion ( ) int y, int width ) ; - -/** - * Original Function-Prototype : - *extern void glCopyConvolutionFilter1D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyConvolutionFilter2D ( int target, int internalformat, @@ -5746,13 +5746,13 @@ public final String getClassVersion ( ) int width, int height ) ; - -/** - * Original Function-Prototype : - *extern void glCopyConvolutionFilter2D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetConvolutionFilter ( int target, int format, @@ -5801,37 +5801,37 @@ public final String getClassVersion ( ) int type, Buffer image ) ; - -/** - * Original Function-Prototype : - *extern void glGetConvolutionFilter ( GLenum target , GLenum format , GLenum type , GLvoid * image ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetConvolutionParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetConvolutionParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetConvolutionParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetConvolutionParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSeparableFilter2D ( int target, int internalformat, @@ -5912,13 +5912,13 @@ public final String getClassVersion ( ) Buffer row, Buffer column ) ; - -/** - * Original Function-Prototype : - *extern void glSeparableFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * row , const GLvoid * column ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetSeparableFilter ( int target, int format, @@ -5983,33 +5983,33 @@ public final String getClassVersion ( ) Buffer column, Buffer span ) ; - -/** - * Original Function-Prototype : - *extern void glGetSeparableFilter ( GLenum target , GLenum format , GLenum type , GLvoid * row , GLvoid * column , GLvoid * span ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glActiveTexture ( int texture ) ; - -/** - * Original Function-Prototype : - *extern void glActiveTexture ( GLenum texture ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClientActiveTexture ( int texture ) ; - -/** - * Original Function-Prototype : - *extern void glClientActiveTexture ( GLenum texture ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexImage1D ( int target, int level, @@ -6082,13 +6082,13 @@ public final String getClassVersion ( ) int imageSize, Buffer data ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLint border , GLsizei imageSize , const GLvoid * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexImage2D ( int target, int level, @@ -6169,13 +6169,13 @@ public final String getClassVersion ( ) int imageSize, Buffer data ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLint border , GLsizei imageSize , const GLvoid * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexImage3D ( int target, int level, @@ -6264,13 +6264,13 @@ public final String getClassVersion ( ) int imageSize, Buffer data ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexImage3D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLsizei imageSize , const GLvoid * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexSubImage1D ( int target, int level, @@ -6343,13 +6343,13 @@ public final String getClassVersion ( ) int imageSize, Buffer data ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLsizei imageSize , const GLvoid * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexSubImage2D ( int target, int level, @@ -6438,13 +6438,13 @@ public final String getClassVersion ( ) int imageSize, Buffer data ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLsizei imageSize , const GLvoid * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexSubImage3D ( int target, int level, @@ -6549,13 +6549,13 @@ public final String getClassVersion ( ) int imageSize, Buffer data ) ; - -/** - * Original Function-Prototype : - *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 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetCompressedTexImage ( int target, int lod, @@ -6596,289 +6596,289 @@ public final String getClassVersion ( ) int lod, Buffer img ) ; - -/** - * Original Function-Prototype : - *extern void glGetCompressedTexImage ( GLenum target , GLint lod , GLvoid * img ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1d ( int target, double s ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1d ( GLenum target , GLdouble s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1dv ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1dv ( GLenum target , const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1f ( int target, float s - ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1f ( GLenum target , GLfloat s ) ; - *- */ + *
+ ) ; + +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1fv ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1fv ( GLenum target , const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1i ( int target, int s ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1i ( GLenum target , GLint s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1iv ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1iv ( GLenum target , const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1s ( int target, short s ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1s ( GLenum target , GLshort s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1sv ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1sv ( GLenum target , const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2d ( int target, double s, double t ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2d ( GLenum target , GLdouble s , GLdouble t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2dv ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2dv ( GLenum target , const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2f ( int target, float s, float t ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2f ( GLenum target , GLfloat s , GLfloat t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2fv ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2fv ( GLenum target , const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2i ( int target, int s, int t ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2i ( GLenum target , GLint s , GLint t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2iv ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2iv ( GLenum target , const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2s ( int target, short s, short t ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2s ( GLenum target , GLshort s , GLshort t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2sv ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2sv ( GLenum target , const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3d ( int target, double s, double t, double r ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3d ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3dv ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3dv ( GLenum target , const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3f ( int target, float s, float t, float r ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3f ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3fv ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3fv ( GLenum target , const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3i ( int target, int s, int t, int r ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3i ( GLenum target , GLint s , GLint t , GLint r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3iv ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3iv ( GLenum target , const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3s ( int target, short s, short t, short r ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3s ( GLenum target , GLshort s , GLshort t , GLshort r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3sv ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3sv ( GLenum target , const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4d ( int target, double s, @@ -6886,24 +6886,24 @@ public final String getClassVersion ( ) double r, double q ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4d ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4dv ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4dv ( GLenum target , const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4f ( int target, float s, @@ -6911,24 +6911,24 @@ public final String getClassVersion ( ) float r, float q ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4f ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4fv ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4fv ( GLenum target , const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4i ( int target, int s, @@ -6936,24 +6936,24 @@ public final String getClassVersion ( ) int r, int q ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4i ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4iv ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4iv ( GLenum target , const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4s ( int target, short s, @@ -6961,381 +6961,381 @@ public final String getClassVersion ( ) short r, short q ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4s ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4sv ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4sv ( GLenum target , const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadTransposeMatrixd ( double[] m ) ; - -/** - * Original Function-Prototype : - *extern void glLoadTransposeMatrixd ( const GLdouble m [ 16 ] ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadTransposeMatrixf ( float[] m ) ; - -/** - * Original Function-Prototype : - *extern void glLoadTransposeMatrixf ( const GLfloat m [ 16 ] ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultTransposeMatrixd ( double[] m ) ; - -/** - * Original Function-Prototype : - *extern void glMultTransposeMatrixd ( const GLdouble m [ 16 ] ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultTransposeMatrixf ( float[] m ) ; - -/** - * Original Function-Prototype : - *extern void glMultTransposeMatrixf ( const GLfloat m [ 16 ] ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSampleCoverage ( float value, boolean invert ) ; - -/** - * Original Function-Prototype : - *extern void glSampleCoverage ( GLclampf value , GLboolean invert ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSamplePass ( int pass ) ; - -/** - * Original Function-Prototype : - *extern void glSamplePass ( GLenum pass ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glActiveTextureARB ( int texture ) ; - -/** - * Original Function-Prototype : - *extern void glActiveTextureARB ( GLenum texture ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClientActiveTextureARB ( int texture ) ; - -/** - * Original Function-Prototype : - *extern void glClientActiveTextureARB ( GLenum texture ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1dARB ( int target, double s ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1dARB ( GLenum target , GLdouble s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1dvARB ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1dvARB ( GLenum target , const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1fARB ( int target, float s ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1fARB ( GLenum target , GLfloat s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1fvARB ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1fvARB ( GLenum target , const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1iARB ( int target, int s ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1iARB ( GLenum target , GLint s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1ivARB ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1ivARB ( GLenum target , const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1sARB ( int target, short s ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1sARB ( GLenum target , GLshort s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1svARB ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1svARB ( GLenum target , const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2dARB ( int target, double s, double t ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2dARB ( GLenum target , GLdouble s , GLdouble t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2dvARB ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2dvARB ( GLenum target , const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2fARB ( int target, float s, float t ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2fARB ( GLenum target , GLfloat s , GLfloat t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2fvARB ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2fvARB ( GLenum target , const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2iARB ( int target, int s, int t ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2iARB ( GLenum target , GLint s , GLint t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2ivARB ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2ivARB ( GLenum target , const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2sARB ( int target, short s, short t ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2sARB ( GLenum target , GLshort s , GLshort t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2svARB ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2svARB ( GLenum target , const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3dARB ( int target, double s, double t, double r ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3dvARB ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3dvARB ( GLenum target , const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3fARB ( int target, float s, float t, float r ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3fvARB ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3fvARB ( GLenum target , const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3iARB ( int target, int s, int t, int r ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3iARB ( GLenum target , GLint s , GLint t , GLint r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3ivARB ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3ivARB ( GLenum target , const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3sARB ( int target, short s, short t, short r ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3sARB ( GLenum target , GLshort s , GLshort t , GLshort r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3svARB ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3svARB ( GLenum target , const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4dARB ( int target, double s, @@ -7343,24 +7343,24 @@ public final String getClassVersion ( ) double r, double q ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4dvARB ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4dvARB ( GLenum target , const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4fARB ( int target, float s, @@ -7368,24 +7368,24 @@ public final String getClassVersion ( ) float r, float q ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4fvARB ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4fvARB ( GLenum target , const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4iARB ( int target, int s, @@ -7393,24 +7393,24 @@ public final String getClassVersion ( ) int r, int q ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4iARB ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4ivARB ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4ivARB ( GLenum target , const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4sARB ( int target, short s, @@ -7418,48 +7418,48 @@ public final String getClassVersion ( ) short r, short q ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4sARB ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4svARB ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4svARB ( GLenum target , const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBlendColorEXT ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - *extern void glBlendColorEXT ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPolygonOffsetEXT ( float factor, float bias ) ; - -/** - * Original Function-Prototype : - *extern void glPolygonOffsetEXT ( GLfloat factor , GLfloat bias ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexImage3DEXT ( int target, int level, @@ -7556,13 +7556,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - *extern void glTexImage3DEXT ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexSubImage3DEXT ( int target, int level, @@ -7667,13 +7667,13 @@ public final String getClassVersion ( ) int type, Buffer pixels ) ; - -/** - * Original Function-Prototype : - *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 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexSubImage3DEXT ( int target, int level, @@ -7685,80 +7685,80 @@ public final String getClassVersion ( ) int width, int height ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexSubImage3DEXT ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGenTexturesEXT ( int n, int[] textures ) ; - -/** - * Original Function-Prototype : - *extern void glGenTexturesEXT ( GLsizei n , GLuint * textures ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeleteTexturesEXT ( int n, int[] textures ) ; - -/** - * Original Function-Prototype : - *extern void glDeleteTexturesEXT ( GLsizei n , const GLuint * textures ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBindTextureEXT ( int target, int texture ) ; - -/** - * Original Function-Prototype : - *extern void glBindTextureEXT ( GLenum target , GLuint texture ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPrioritizeTexturesEXT ( int n, int[] textures, float[] priorities ) ; - -/** - * Original Function-Prototype : - *extern void glPrioritizeTexturesEXT ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glAreTexturesResidentEXT ( int n, int[] textures, boolean[] residences ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glAreTexturesResidentEXT ( GLsizei n , const GLuint * textures , GLboolean * residences ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glIsTextureEXT ( int texture ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glIsTextureEXT ( GLuint texture ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexPointerEXT ( int size, int type, @@ -7815,13 +7815,13 @@ public final String getClassVersion ( ) int count, Buffer ptr ) ; - -/** - * Original Function-Prototype : - *extern void glVertexPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalPointerEXT ( int type, int stride, @@ -7870,13 +7870,13 @@ public final String getClassVersion ( ) int count, Buffer ptr ) ; - -/** - * Original Function-Prototype : - *extern void glNormalPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorPointerEXT ( int size, int type, @@ -7933,13 +7933,13 @@ public final String getClassVersion ( ) int count, Buffer ptr ) ; - -/** - * Original Function-Prototype : - *extern void glColorPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexPointerEXT ( int type, int stride, @@ -7988,13 +7988,13 @@ public final String getClassVersion ( ) int count, Buffer ptr ) ; - -/** - * Original Function-Prototype : - *extern void glIndexPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoordPointerEXT ( int size, int type, @@ -8051,25 +8051,25 @@ public final String getClassVersion ( ) int count, Buffer ptr ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoordPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEdgeFlagPointerEXT ( int stride, int count, boolean[] ptr ) ; - -/** - * Original Function-Prototype : - *extern void glEdgeFlagPointerEXT ( GLsizei stride , GLsizei count , const GLboolean * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetPointervEXT ( int pname, byte[][] params @@ -8098,89 +8098,89 @@ public final String getClassVersion ( ) int pname, long[][] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetPointervEXT ( GLenum pname , GLvoid * * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glArrayElementEXT ( int i ) ; - -/** - * Original Function-Prototype : - *extern void glArrayElementEXT ( GLint i ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDrawArraysEXT ( int mode, int first, int count ) ; - -/** - * Original Function-Prototype : - *extern void glDrawArraysEXT ( GLenum mode , GLint first , GLsizei count ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBlendEquationEXT ( int mode ) ; - -/** - * Original Function-Prototype : - *extern void glBlendEquationEXT ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPointParameterfEXT ( int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glPointParameterfEXT ( GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPointParameterfvEXT ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glPointParameterfvEXT ( GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPointParameterfSGIS ( int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glPointParameterfSGIS ( GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPointParameterfvSGIS ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glPointParameterfvSGIS ( GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorTableEXT ( int target, int internalformat, @@ -8245,13 +8245,13 @@ public final String getClassVersion ( ) int type, Buffer table ) ; - -/** - * Original Function-Prototype : - *extern void glColorTableEXT ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorSubTableEXT ( int target, int start, @@ -8316,13 +8316,13 @@ public final String getClassVersion ( ) int type, Buffer data ) ; - -/** - * Original Function-Prototype : - *extern void glColorSubTableEXT ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetColorTableEXT ( int target, int format, @@ -8371,108 +8371,108 @@ public final String getClassVersion ( ) int type, Buffer table ) ; - -/** - * Original Function-Prototype : - *extern void glGetColorTableEXT ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetColorTableParameterfvEXT ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetColorTableParameterfvEXT ( GLenum target , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetColorTableParameterivEXT ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetColorTableParameterivEXT ( GLenum target , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLockArraysEXT ( int first, int count ) ; - -/** - * Original Function-Prototype : - *extern void glLockArraysEXT ( GLint first , GLsizei count ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glUnlockArraysEXT ( ) ; - -/** - * Original Function-Prototype : - *extern void glUnlockArraysEXT ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadTransposeMatrixfARB ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glLoadTransposeMatrixfARB ( const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadTransposeMatrixdARB ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glLoadTransposeMatrixdARB ( const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultTransposeMatrixfARB ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glMultTransposeMatrixfARB ( const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultTransposeMatrixdARB ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glMultTransposeMatrixdARB ( const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSampleCoverageARB ( float arg0, boolean arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glSampleCoverageARB ( GLclampf , GLboolean ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexImage3DARB ( int arg0, int arg1, @@ -8561,13 +8561,13 @@ public final String getClassVersion ( ) int arg7, Buffer arg8 ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexImage3DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexImage2DARB ( int arg0, int arg1, @@ -8648,13 +8648,13 @@ public final String getClassVersion ( ) int arg6, Buffer arg7 ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexImage2DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexImage1DARB ( int arg0, int arg1, @@ -8727,13 +8727,13 @@ public final String getClassVersion ( ) int arg5, Buffer arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexImage1DARB ( GLenum , GLint , GLenum , GLsizei , GLint , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexSubImage3DARB ( int arg0, int arg1, @@ -8838,13 +8838,13 @@ public final String getClassVersion ( ) int arg9, Buffer arg10 ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexSubImage3DARB ( GLenum , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexSubImage2DARB ( int arg0, int arg1, @@ -8933,13 +8933,13 @@ public final String getClassVersion ( ) int arg7, Buffer arg8 ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexSubImage2DARB ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexSubImage1DARB ( int arg0, int arg1, @@ -9012,13 +9012,13 @@ public final String getClassVersion ( ) int arg5, Buffer arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexSubImage1DARB ( GLenum , GLint , GLint , GLsizei , GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetCompressedTexImageARB ( int arg0, int arg1, @@ -9059,101 +9059,101 @@ public final String getClassVersion ( ) int arg1, Buffer arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetCompressedTexImageARB ( GLenum , GLint , void * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWeightbvARB ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glWeightbvARB ( GLint , const GLbyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWeightsvARB ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glWeightsvARB ( GLint , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWeightivARB ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glWeightivARB ( GLint , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWeightfvARB ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glWeightfvARB ( GLint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWeightdvARB ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glWeightdvARB ( GLint , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWeightubvARB ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glWeightubvARB ( GLint , const GLubyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWeightusvARB ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glWeightusvARB ( GLint , const GLushort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWeightuivARB ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glWeightuivARB ( GLint , const GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWeightPointerARB ( int arg0, int arg1, @@ -9202,66 +9202,66 @@ public final String getClassVersion ( ) int arg2, Buffer arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glWeightPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexBlendARB ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexBlendARB ( GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCurrentPaletteMatrixARB ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glCurrentPaletteMatrixARB ( GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMatrixIndexubvARB ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glMatrixIndexubvARB ( GLint , const GLubyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMatrixIndexusvARB ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glMatrixIndexusvARB ( GLint , const GLushort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMatrixIndexuivARB ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glMatrixIndexuivARB ( GLint , const GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMatrixIndexPointerARB ( int arg0, int arg1, @@ -9310,38 +9310,38 @@ public final String getClassVersion ( ) int arg2, Buffer arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glMatrixIndexPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexFilterFuncSGIS ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexFilterFuncSGIS ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexFilterFuncSGIS ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glTexFilterFuncSGIS ( GLenum , GLenum , GLsizei , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexSubImage1DEXT ( int arg0, int arg1, @@ -9414,13 +9414,13 @@ public final String getClassVersion ( ) int arg5, Buffer arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glTexSubImage1DEXT ( GLenum , GLint , GLint , GLsizei , GLenum , GLenum , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexSubImage2DEXT ( int arg0, int arg1, @@ -9509,13 +9509,13 @@ public final String getClassVersion ( ) int arg7, Buffer arg8 ) ; - -/** - * Original Function-Prototype : - *extern void glTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexImage1DEXT ( int arg0, int arg1, @@ -9525,13 +9525,13 @@ public final String getClassVersion ( ) int arg5, int arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexImage1DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexImage2DEXT ( int arg0, int arg1, @@ -9542,13 +9542,13 @@ public final String getClassVersion ( ) int arg6, int arg7 ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexImage2DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLsizei , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexSubImage1DEXT ( int arg0, int arg1, @@ -9557,13 +9557,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexSubImage1DEXT ( GLenum , GLint , GLint , GLint , GLint , GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexSubImage2DEXT ( int arg0, int arg1, @@ -9574,13 +9574,13 @@ public final String getClassVersion ( ) int arg6, int arg7 ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetHistogramEXT ( int arg0, boolean arg1, @@ -9637,37 +9637,37 @@ public final String getClassVersion ( ) int arg3, Buffer arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glGetHistogramEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetHistogramParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetHistogramParameterfvEXT ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetHistogramParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetHistogramParameterivEXT ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMinmaxEXT ( int arg0, boolean arg1, @@ -9724,82 +9724,82 @@ public final String getClassVersion ( ) int arg3, Buffer arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glGetMinmaxEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMinmaxParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetMinmaxParameterfvEXT ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMinmaxParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetMinmaxParameterivEXT ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glHistogramEXT ( int arg0, int arg1, int arg2, boolean arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glHistogramEXT ( GLenum , GLsizei , GLenum , GLboolean ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMinmaxEXT ( int arg0, int arg1, boolean arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glMinmaxEXT ( GLenum , GLenum , GLboolean ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glResetHistogramEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glResetHistogramEXT ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glResetMinmaxEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glResetMinmaxEXT ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionFilter1DEXT ( int arg0, int arg1, @@ -9864,13 +9864,13 @@ public final String getClassVersion ( ) int arg4, Buffer arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionFilter1DEXT ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionFilter2DEXT ( int arg0, int arg1, @@ -9943,61 +9943,61 @@ public final String getClassVersion ( ) int arg5, Buffer arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionParameterfEXT ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionParameterfEXT ( GLenum , GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionParameteriEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionParameteriEXT ( GLenum , GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionParameterivEXT ( GLenum , GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyConvolutionFilter1DEXT ( int arg0, int arg1, @@ -10005,13 +10005,13 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glCopyConvolutionFilter1DEXT ( GLenum , GLenum , GLint , GLint , GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyConvolutionFilter2DEXT ( int arg0, int arg1, @@ -10020,13 +10020,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glCopyConvolutionFilter2DEXT ( GLenum , GLenum , GLint , GLint , GLsizei , GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetConvolutionFilterEXT ( int arg0, int arg1, @@ -10075,37 +10075,37 @@ public final String getClassVersion ( ) int arg2, Buffer arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glGetConvolutionFilterEXT ( GLenum , GLenum , GLenum , GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetConvolutionParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetConvolutionParameterfvEXT ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetConvolutionParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetConvolutionParameterivEXT ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetSeparableFilterEXT ( int arg0, int arg1, @@ -10170,13 +10170,13 @@ public final String getClassVersion ( ) Buffer arg4, Buffer arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glGetSeparableFilterEXT ( GLenum , GLenum , GLenum , GLvoid * , GLvoid * , GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSeparableFilter2DEXT ( int arg0, int arg1, @@ -10257,13 +10257,13 @@ public final String getClassVersion ( ) Buffer arg6, Buffer arg7 ) ; - -/** - * Original Function-Prototype : - *extern void glSeparableFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorTableSGI ( int arg0, int arg1, @@ -10328,37 +10328,37 @@ public final String getClassVersion ( ) int arg4, Buffer arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glColorTableSGI ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorTableParameterfvSGI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glColorTableParameterfvSGI ( GLenum , GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorTableParameterivSGI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glColorTableParameterivSGI ( GLenum , GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyColorTableSGI ( int arg0, int arg1, @@ -10366,13 +10366,13 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glCopyColorTableSGI ( GLenum , GLenum , GLint , GLint , GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetColorTableSGI ( int arg0, int arg1, @@ -10421,113 +10421,113 @@ public final String getClassVersion ( ) int arg2, Buffer arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glGetColorTableSGI ( GLenum , GLenum , GLenum , GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetColorTableParameterfvSGI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetColorTableParameterfvSGI ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetColorTableParameterivSGI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetColorTableParameterivSGI ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTexGenSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTexGenSGIX ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTexGenParameteriSGIS ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTexGenParameteriSGIS ( GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTexGenParameterivSGIS ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTexGenParameterivSGIS ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTexGenParameterfSGIS ( int arg0, float arg1 - ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTexGenParameterfSGIS ( GLenum , GLfloat ) ; - *- */ + *
+ ) ; + +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTexGenParameterfvSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTexGenParameterfvSGIS ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetPixelTexGenParameterivSGIS ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glGetPixelTexGenParameterivSGIS ( GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetPixelTexGenParameterfvSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glGetPixelTexGenParameterfvSGIS ( GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexImage4DSGIS ( int arg0, int arg1, @@ -10632,13 +10632,13 @@ public final String getClassVersion ( ) int arg9, Buffer arg10 ) ; - -/** - * Original Function-Prototype : - *extern void glTexImage4DSGIS ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLsizei , GLint , GLenum , GLenum , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexSubImage4DSGIS ( int arg0, int arg1, @@ -10759,224 +10759,224 @@ public final String getClassVersion ( ) int arg11, Buffer arg12 ) ; - -/** - * Original Function-Prototype : - *extern void glTexSubImage4DSGIS ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDetailTexFuncSGIS ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glDetailTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetDetailTexFuncSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glGetDetailTexFuncSGIS ( GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSharpenTexFuncSGIS ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSharpenTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetSharpenTexFuncSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glGetSharpenTexFuncSGIS ( GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSampleMaskSGIS ( float arg0, boolean arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glSampleMaskSGIS ( GLclampf , GLboolean ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSamplePatternSGIS ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSamplePatternSGIS ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSpriteParameterfSGIX ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glSpriteParameterfSGIX ( GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSpriteParameterfvSGIX ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glSpriteParameterfvSGIX ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSpriteParameteriSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glSpriteParameteriSGIX ( GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSpriteParameterivSGIX ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glSpriteParameterivSGIX ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPointParameterfARB ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glPointParameterfARB ( GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPointParameterfvARB ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glPointParameterfvARB ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glGetInstrumentsSGIX ( ) ; - -/** - * Original Function-Prototype : - *extern GLint glGetInstrumentsSGIX ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glInstrumentsBufferSGIX ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glInstrumentsBufferSGIX ( GLsizei , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glPollInstrumentsSGIX ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLint glPollInstrumentsSGIX ( GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReadInstrumentsSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glReadInstrumentsSGIX ( GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glStartInstrumentsSGIX ( ) ; - -/** - * Original Function-Prototype : - *extern void glStartInstrumentsSGIX ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glStopInstrumentsSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glStopInstrumentsSGIX ( GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFrameZoomSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glFrameZoomSGIX ( GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTagSampleBufferSGIX ( ) ; - -/** - * Original Function-Prototype : - *extern void glTagSampleBufferSGIX ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeformationMap3dSGIX ( int arg0, double arg1, @@ -10993,13 +10993,13 @@ public final String getClassVersion ( ) int arg12, double[] arg13 ) ; - -/** - * Original Function-Prototype : - *extern void glDeformationMap3dSGIX ( GLenum , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeformationMap3fSGIX ( int arg0, float arg1, @@ -11016,145 +11016,145 @@ public final String getClassVersion ( ) int arg12, float[] arg13 ) ; - -/** - * Original Function-Prototype : - *extern void glDeformationMap3fSGIX ( GLenum , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeformSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glDeformSGIX ( GLbitfield ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadIdentityDeformationMapSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glLoadIdentityDeformationMapSGIX ( GLbitfield ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReferencePlaneSGIX ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glReferencePlaneSGIX ( const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFlushRasterSGIX ( ) ; - -/** - * Original Function-Prototype : - *extern void glFlushRasterSGIX ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogFuncSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glFogFuncSGIS ( GLsizei , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetFogFuncSGIS ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glGetFogFuncSGIS ( GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glImageTransformParameteriHP ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glImageTransformParameteriHP ( GLenum , GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glImageTransformParameterfHP ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glImageTransformParameterfHP ( GLenum , GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glImageTransformParameterivHP ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glImageTransformParameterivHP ( GLenum , GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glImageTransformParameterfvHP ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glImageTransformParameterfvHP ( GLenum , GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetImageTransformParameterivHP ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetImageTransformParameterivHP ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetImageTransformParameterfvHP ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetImageTransformParameterfvHP ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyColorSubTableEXT ( int arg0, int arg1, @@ -11162,350 +11162,350 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glCopyColorSubTableEXT ( GLenum , GLsizei , GLint , GLint , GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glHintPGI ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glHintPGI ( GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetListParameterfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetListParameterfvSGIX ( GLuint , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetListParameterivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetListParameterivSGIX ( GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glListParameterfSGIX ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glListParameterfSGIX ( GLuint , GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glListParameterfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glListParameterfvSGIX ( GLuint , GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glListParameteriSGIX ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glListParameteriSGIX ( GLuint , GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glListParameterivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glListParameterivSGIX ( GLuint , GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexMaterialEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glIndexMaterialEXT ( GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexFuncEXT ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glIndexFuncEXT ( GLenum , GLclampf ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCullParameterdvEXT ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glCullParameterdvEXT ( GLenum , GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCullParameterfvEXT ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glCullParameterfvEXT ( GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentColorMaterialSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentColorMaterialSGIX ( GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentLightfSGIX ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentLightfSGIX ( GLenum , GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentLightfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentLightfvSGIX ( GLenum , GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentLightiSGIX ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentLightiSGIX ( GLenum , GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentLightivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentLightivSGIX ( GLenum , GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentLightModelfSGIX ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentLightModelfSGIX ( GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentLightModelfvSGIX ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentLightModelfvSGIX ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentLightModeliSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentLightModeliSGIX ( GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentLightModelivSGIX ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentLightModelivSGIX ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentMaterialfSGIX ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentMaterialfSGIX ( GLenum , GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentMaterialfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentMaterialfvSGIX ( GLenum , GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentMaterialiSGIX ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentMaterialiSGIX ( GLenum , GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentMaterialivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentMaterialivSGIX ( GLenum , GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetFragmentLightfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetFragmentLightfvSGIX ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetFragmentLightivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetFragmentLightivSGIX ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetFragmentMaterialfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetFragmentMaterialfvSGIX ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetFragmentMaterialivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetFragmentMaterialivSGIX ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLightEnviSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glLightEnviSGIX ( GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDrawRangeElementsEXT ( int arg0, int arg1, @@ -11570,105 +11570,105 @@ public final String getClassVersion ( ) int arg4, Buffer arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glDrawRangeElementsEXT ( GLenum , GLuint , GLuint , GLsizei , GLenum , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glApplyTextureEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glApplyTextureEXT ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTextureLightEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glTextureLightEXT ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTextureMaterialEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glTextureMaterialEXT ( GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glAsyncMarkerSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glAsyncMarkerSGIX ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glFinishAsyncSGIX ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLint glFinishAsyncSGIX ( GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glPollAsyncSGIX ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLint glPollAsyncSGIX ( GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glGenAsyncMarkersSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glGenAsyncMarkersSGIX ( GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeleteAsyncMarkersSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glDeleteAsyncMarkersSGIX ( GLuint , GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glIsAsyncMarkerSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glIsAsyncMarkerSGIX ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexPointervINTEL ( int arg0, int arg1, @@ -11704,13 +11704,13 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexPointervINTEL ( GLint , GLenum , const GLvoid * * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalPointervINTEL ( int arg0, byte[][] arg1 @@ -11739,13 +11739,13 @@ public final String getClassVersion ( ) int arg0, long[][] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalPointervINTEL ( GLenum , const GLvoid * * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorPointervINTEL ( int arg0, int arg1, @@ -11781,13 +11781,13 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glColorPointervINTEL ( GLint , GLenum , const GLvoid * * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoordPointervINTEL ( int arg0, int arg1, @@ -11823,237 +11823,237 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoordPointervINTEL ( GLint , GLenum , const GLvoid * * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTransformParameteriEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTransformParameteriEXT ( GLenum , GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTransformParameterfEXT ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTransformParameterfEXT ( GLenum , GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTransformParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTransformParameterivEXT ( GLenum , GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTransformParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTransformParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3bEXT ( byte arg0, byte arg1, byte arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3bEXT ( GLbyte , GLbyte , GLbyte ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3bvEXT ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3bvEXT ( const GLbyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3dEXT ( double arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3dEXT ( GLdouble , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3dvEXT ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3dvEXT ( const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3fEXT ( float arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3fEXT ( GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3fvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3fvEXT ( const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3iEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3iEXT ( GLint , GLint , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3ivEXT ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3ivEXT ( const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3sEXT ( short arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3sEXT ( GLshort , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3svEXT ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3svEXT ( const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3ubEXT ( byte arg0, byte arg1, byte arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3ubEXT ( GLubyte , GLubyte , GLubyte ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3ubvEXT ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3ubvEXT ( const GLubyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3uiEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3uiEXT ( GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3uivEXT ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3uivEXT ( const GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3usEXT ( short arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3usEXT ( GLushort , GLushort , GLushort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3usvEXT ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3usvEXT ( const GLushort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColorPointerEXT ( int arg0, int arg1, @@ -12102,36 +12102,36 @@ public final String getClassVersion ( ) int arg2, Buffer arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColorPointerEXT ( GLint , GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTextureNormalEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glTextureNormalEXT ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiDrawArraysEXT ( int arg0, int[] arg1, int[] arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glMultiDrawArraysEXT ( GLenum , GLint * , GLsizei * , GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiDrawElementsEXT ( int arg0, int[] arg1, @@ -12181,53 +12181,53 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glMultiDrawElementsEXT ( GLenum , const GLsizei * , GLenum , const GLvoid * * , GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogCoordfEXT ( float arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glFogCoordfEXT ( GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogCoordfvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glFogCoordfvEXT ( const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogCoorddEXT ( double arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glFogCoorddEXT ( GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogCoorddvEXT ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glFogCoorddvEXT ( const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogCoordPointerEXT ( int arg0, int arg1, @@ -12268,233 +12268,233 @@ public final String getClassVersion ( ) int arg1, Buffer arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glFogCoordPointerEXT ( GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3bEXT ( byte arg0, byte arg1, byte arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3bEXT ( GLbyte , GLbyte , GLbyte ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3bvEXT ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3bvEXT ( const GLbyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3dEXT ( double arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3dEXT ( GLdouble , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3dvEXT ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3dvEXT ( const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3fEXT ( float arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3fEXT ( GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3fvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3fvEXT ( const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3iEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3iEXT ( GLint , GLint , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3ivEXT ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3ivEXT ( const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3sEXT ( short arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3sEXT ( GLshort , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3svEXT ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3svEXT ( const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3bEXT ( byte arg0, byte arg1, byte arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3bEXT ( GLbyte , GLbyte , GLbyte ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3bvEXT ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3bvEXT ( const GLbyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3dEXT ( double arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3dEXT ( GLdouble , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3dvEXT ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3dvEXT ( const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3fEXT ( float arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3fEXT ( GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3fvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3fvEXT ( const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3iEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3iEXT ( GLint , GLint , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3ivEXT ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3ivEXT ( const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3sEXT ( short arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3sEXT ( GLshort , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3svEXT ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3svEXT ( const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangentPointerEXT ( int arg0, int arg1, @@ -12535,13 +12535,13 @@ public final String getClassVersion ( ) int arg1, Buffer arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glTangentPointerEXT ( GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormalPointerEXT ( int arg0, int arg1, @@ -12582,162 +12582,162 @@ public final String getClassVersion ( ) int arg1, Buffer arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormalPointerEXT ( GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFinishTextureSUNX ( ) ; - -/** - * Original Function-Prototype : - *extern void glFinishTextureSUNX ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGlobalAlphaFactorbSUN ( byte arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glGlobalAlphaFactorbSUN ( GLbyte ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGlobalAlphaFactorsSUN ( short arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glGlobalAlphaFactorsSUN ( GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGlobalAlphaFactoriSUN ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glGlobalAlphaFactoriSUN ( GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGlobalAlphaFactorfSUN ( float arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glGlobalAlphaFactorfSUN ( GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGlobalAlphaFactordSUN ( double arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glGlobalAlphaFactordSUN ( GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGlobalAlphaFactorubSUN ( byte arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glGlobalAlphaFactorubSUN ( GLubyte ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGlobalAlphaFactorusSUN ( short arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glGlobalAlphaFactorusSUN ( GLushort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGlobalAlphaFactoruiSUN ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glGlobalAlphaFactoruiSUN ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiSUN ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiSUN ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeusSUN ( short arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeusSUN ( GLushort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeubSUN ( byte arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeubSUN ( GLubyte ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuivSUN ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuivSUN ( const GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeusvSUN ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeusvSUN ( const GLushort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeubvSUN ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeubvSUN ( const GLubyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodePointerSUN ( int arg0, int arg1, @@ -12773,13 +12773,13 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodePointerSUN ( GLenum , GLsizei , const GLvoid * * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4ubVertex2fSUN ( byte arg0, byte arg1, @@ -12788,24 +12788,24 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glColor4ubVertex2fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4ubVertex2fvSUN ( byte[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glColor4ubVertex2fvSUN ( const GLubyte * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4ubVertex3fSUN ( byte arg0, byte arg1, @@ -12815,24 +12815,24 @@ public final String getClassVersion ( ) float arg5, float arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glColor4ubVertex3fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4ubVertex3fvSUN ( byte[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glColor4ubVertex3fvSUN ( const GLubyte * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3fVertex3fSUN ( float arg0, float arg1, @@ -12841,24 +12841,24 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3fVertex3fvSUN ( float[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3fVertex3fSUN ( float arg0, float arg1, @@ -12867,24 +12867,24 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3fVertex3fvSUN ( float[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4fNormal3fVertex3fSUN ( float arg0, float arg1, @@ -12897,25 +12897,25 @@ public final String getClassVersion ( ) float arg8, float arg9 ) ; - -/** - * Original Function-Prototype : - *extern void glColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4fNormal3fVertex3fvSUN ( float[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fVertex3fSUN ( float arg0, float arg1, @@ -12923,24 +12923,24 @@ public final String getClassVersion ( ) float arg3, float arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fVertex3fvSUN ( float[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4fVertex4fSUN ( float arg0, float arg1, @@ -12951,24 +12951,24 @@ public final String getClassVersion ( ) float arg6, float arg7 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4fVertex4fvSUN ( float[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4fVertex4fvSUN ( const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fColor4ubVertex3fSUN ( float arg0, float arg1, @@ -12980,25 +12980,25 @@ public final String getClassVersion ( ) float arg7, float arg8 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fColor4ubVertex3fSUN ( GLfloat , GLfloat , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fColor4ubVertex3fvSUN ( float[] arg0, byte[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fColor4ubVertex3fvSUN ( const GLfloat * , const GLubyte * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fColor3fVertex3fSUN ( float arg0, float arg1, @@ -13009,25 +13009,25 @@ public final String getClassVersion ( ) float arg6, float arg7 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fColor3fVertex3fvSUN ( float[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fNormal3fVertex3fSUN ( float arg0, float arg1, @@ -13038,25 +13038,25 @@ public final String getClassVersion ( ) float arg6, float arg7 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fNormal3fVertex3fvSUN ( float[] arg0, float[] arg1, float[] arg2 - ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ ) ; + +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fColor4fNormal3fVertex3fSUN ( float arg0, float arg1, @@ -13071,26 +13071,26 @@ public final String getClassVersion ( ) float arg10, float arg11 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fColor4fNormal3fVertex3fvSUN ( float[] arg0, float[] arg1, float[] arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4fColor4fNormal3fVertex4fSUN ( float arg0, float arg1, @@ -13108,50 +13108,50 @@ public final String getClassVersion ( ) float arg13, float arg14 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4fColor4fNormal3fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4fColor4fNormal3fVertex4fvSUN ( float[] arg0, float[] arg1, float[] arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4fColor4fNormal3fVertex4fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiVertex3fSUN ( int arg0, float arg1, float arg2, float arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiVertex3fvSUN ( int[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiVertex3fvSUN ( const GLenum * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiColor4ubVertex3fSUN ( int arg0, byte arg1, @@ -13162,25 +13162,25 @@ public final String getClassVersion ( ) float arg6, float arg7 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiColor4ubVertex3fSUN ( GLenum , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiColor4ubVertex3fvSUN ( int[] arg0, byte[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiColor4ubVertex3fvSUN ( const GLenum * , const GLubyte * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiColor3fVertex3fSUN ( int arg0, float arg1, @@ -13190,25 +13190,25 @@ public final String getClassVersion ( ) float arg5, float arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiColor3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiColor3fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiColor3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiNormal3fVertex3fSUN ( int arg0, float arg1, @@ -13218,25 +13218,25 @@ public final String getClassVersion ( ) float arg5, float arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiNormal3fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( int arg0, float arg1, @@ -13250,26 +13250,26 @@ public final String getClassVersion ( ) float arg9, float arg10 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiTexCoord2fVertex3fSUN ( int arg0, float arg1, @@ -13278,25 +13278,25 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiTexCoord2fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiTexCoord2fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiTexCoord2fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( int arg0, float arg1, @@ -13308,26 +13308,26 @@ public final String getClassVersion ( ) float arg7, float arg8 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( int arg0, float arg1, @@ -13343,13 +13343,13 @@ public final String getClassVersion ( ) float arg11, float arg12 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( int[] arg0, float[] arg1, @@ -13357,59 +13357,59 @@ public final String getClassVersion ( ) float[] arg3, float[] arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBlendFuncSeparateEXT ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glBlendFuncSeparateEXT ( GLenum , GLenum , GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBlendFuncSeparateINGR ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glBlendFuncSeparateINGR ( GLenum , GLenum , GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexWeightfEXT ( float arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexWeightfEXT ( GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexWeightfvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexWeightfvEXT ( const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexWeightPointerEXT ( int arg0, int arg1, @@ -13458,22 +13458,22 @@ public final String getClassVersion ( ) int arg2, Buffer arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexWeightPointerEXT ( GLsizei , GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFlushVertexArrayRangeNV ( ) ; - -/** - * Original Function-Prototype : - *extern void glFlushVertexArrayRangeNV ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexArrayRangeNV ( int arg0, byte[] arg1 @@ -13506,57 +13506,57 @@ public final String getClassVersion ( ) int arg0, Buffer arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexArrayRangeNV ( GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCombinerParameterfvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glCombinerParameterfvNV ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCombinerParameterfNV ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glCombinerParameterfNV ( GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCombinerParameterivNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glCombinerParameterivNV ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCombinerParameteriNV ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glCombinerParameteriNV ( GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCombinerInputNV ( int arg0, int arg1, @@ -13565,13 +13565,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glCombinerInputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCombinerOutputNV ( int arg0, int arg1, @@ -13584,26 +13584,26 @@ public final String getClassVersion ( ) boolean arg8, boolean arg9 ) ; - -/** - * Original Function-Prototype : - *extern void glCombinerOutputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLboolean , GLboolean , GLboolean ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFinalCombinerInputNV ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glFinalCombinerInputNV ( GLenum , GLenum , GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetCombinerInputParameterfvNV ( int arg0, int arg1, @@ -13611,13 +13611,13 @@ public final String getClassVersion ( ) int arg3, float[] arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glGetCombinerInputParameterfvNV ( GLenum , GLenum , GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetCombinerInputParameterivNV ( int arg0, int arg1, @@ -13625,63 +13625,63 @@ public final String getClassVersion ( ) int arg3, int[] arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glGetCombinerInputParameterivNV ( GLenum , GLenum , GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetCombinerOutputParameterfvNV ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glGetCombinerOutputParameterfvNV ( GLenum , GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetCombinerOutputParameterivNV ( int arg0, int arg1, int arg2, int[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glGetCombinerOutputParameterivNV ( GLenum , GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetFinalCombinerInputParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetFinalCombinerInputParameterfvNV ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetFinalCombinerInputParameterivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetFinalCombinerInputParameterivNV ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiModeDrawArraysIBM ( int arg0, int[] arg1, @@ -13689,13 +13689,13 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glMultiModeDrawArraysIBM ( GLenum , const GLint * , const GLsizei * , GLsizei , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiModeDrawElementsIBM ( int[] arg0, int[] arg1, @@ -13752,13 +13752,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glMultiModeDrawElementsIBM ( const GLenum * , const GLsizei * , GLenum , const GLvoid * * , GLsizei , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorPointerListIBM ( int arg0, int arg1, @@ -13808,13 +13808,13 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColorPointerListIBM ( int arg0, int arg1, @@ -13864,25 +13864,25 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEdgeFlagPointerListIBM ( int arg0, boolean[][] arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glEdgeFlagPointerListIBM ( GLint , const GLboolean * * , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogCoordPointerListIBM ( int arg0, int arg1, @@ -13925,13 +13925,13 @@ public final String getClassVersion ( ) long[][] arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glFogCoordPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexPointerListIBM ( int arg0, int arg1, @@ -13974,13 +13974,13 @@ public final String getClassVersion ( ) long[][] arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glIndexPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalPointerListIBM ( int arg0, int arg1, @@ -14023,13 +14023,13 @@ public final String getClassVersion ( ) long[][] arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoordPointerListIBM ( int arg0, int arg1, @@ -14079,13 +14079,13 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoordPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexPointerListIBM ( int arg0, int arg1, @@ -14135,57 +14135,57 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTbufferMask3DFX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glTbufferMask3DFX ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSampleMaskEXT ( float arg0, boolean arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glSampleMaskEXT ( GLclampf , GLboolean ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSamplePatternEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSamplePatternEXT ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTextureColorMaskSGIS ( boolean arg0, boolean arg1, boolean arg2, boolean arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glTextureColorMaskSGIS ( GLboolean , GLboolean , GLboolean , GLboolean ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIglooInterfaceSGIX ( int arg0, byte[] arg1 @@ -14218,88 +14218,88 @@ public final String getClassVersion ( ) int arg0, Buffer arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glIglooInterfaceSGIX ( GLenum , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGenFencesNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glGenFencesNV ( GLsizei , GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeleteFencesNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glDeleteFencesNV ( GLsizei , const GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSetFenceNV ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glSetFenceNV ( GLuint , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glTestFenceNV ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glTestFenceNV ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFinishFenceNV ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glFinishFenceNV ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glIsFenceNV ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glIsFenceNV ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetFenceivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetFenceivNV ( GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMapControlPointsNV ( int arg0, int arg1, @@ -14388,37 +14388,37 @@ public final String getClassVersion ( ) boolean arg7, Buffer arg8 ) ; - -/** - * Original Function-Prototype : - *extern void glMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLint , GLint , GLboolean , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMapParameterivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glMapParameterivNV ( GLenum , GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMapParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glMapParameterfvNV ( GLenum , GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMapControlPointsNV ( int arg0, int arg1, @@ -14491,265 +14491,265 @@ public final String getClassVersion ( ) boolean arg5, Buffer arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glGetMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLboolean , GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMapParameterivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetMapParameterivNV ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMapParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetMapParameterfvNV ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMapAttribParameterivNV ( int arg0, int arg1, int arg2, int[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glGetMapAttribParameterivNV ( GLenum , GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMapAttribParameterfvNV ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glGetMapAttribParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalMapsNV ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glEvalMapsNV ( GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCombinerStageParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glCombinerStageParameterfvNV ( GLenum , GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetCombinerStageParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetCombinerStageParameterfvNV ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBindProgramNV ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glBindProgramNV ( GLenum , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeleteProgramsNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glDeleteProgramsNV ( GLsizei , const GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glExecuteProgramNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glExecuteProgramNV ( GLenum , GLuint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGenProgramsNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glGenProgramsNV ( GLsizei , GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glAreProgramsResidentNV ( int arg0, int[] arg1, boolean[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glAreProgramsResidentNV ( GLsizei , const GLuint * , GLboolean * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRequestResidentProgramsNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glRequestResidentProgramsNV ( GLsizei , const GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetProgramParameterfvNV ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glGetProgramParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetProgramParameterdvNV ( int arg0, int arg1, int arg2, double[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glGetProgramParameterdvNV ( GLenum , GLuint , GLenum , GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetProgramivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetProgramivNV ( GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetProgramStringNV ( int arg0, int arg1, byte[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetProgramStringNV ( GLuint , GLenum , GLubyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTrackMatrixivNV ( int arg0, int arg1, int arg2, int[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glGetTrackMatrixivNV ( GLenum , GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVertexAttribdvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVertexAttribdvNV ( GLuint , GLenum , GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVertexAttribfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVertexAttribfvNV ( GLuint , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVertexAttribivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVertexAttribivNV ( GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVertexAttribPointervNV ( int arg0, int arg1, @@ -14785,36 +14785,36 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVertexAttribPointervNV ( GLuint , GLenum , GLvoid * * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glIsProgramNV ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glIsProgramNV ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadProgramNV ( int arg0, int arg1, int arg2, byte[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glLoadProgramNV ( GLenum , GLuint , GLsizei , const GLubyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glProgramParameter4fNV ( int arg0, int arg1, @@ -14823,13 +14823,13 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glProgramParameter4fNV ( GLenum , GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glProgramParameter4dNV ( int arg0, int arg1, @@ -14838,76 +14838,76 @@ public final String getClassVersion ( ) double arg4, double arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glProgramParameter4dNV ( GLenum , GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glProgramParameter4dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glProgramParameter4dvNV ( GLenum , GLuint , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glProgramParameter4fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glProgramParameter4fvNV ( GLenum , GLuint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glProgramParameters4dvNV ( int arg0, int arg1, int arg2, double[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glProgramParameters4dvNV ( GLenum , GLuint , GLuint , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glProgramParameters4fvNV ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glProgramParameters4fvNV ( GLenum , GLuint , GLuint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTrackMatrixNV ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glTrackMatrixNV ( GLenum , GLuint , GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribPointerNV ( int arg0, int arg1, @@ -14964,121 +14964,121 @@ public final String getClassVersion ( ) int arg3, Buffer arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribPointerNV ( GLuint , GLint , GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib1sNV ( int arg0, short arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib1sNV ( GLuint , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib1fNV ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib1fNV ( GLuint , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib1dNV ( int arg0, double arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib1dNV ( GLuint , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib2sNV ( int arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib2sNV ( GLuint , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib2fNV ( int arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib2fNV ( GLuint , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib2dNV ( int arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib2dNV ( GLuint , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib3sNV ( int arg0, short arg1, short arg2, short arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib3sNV ( GLuint , GLshort , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib3fNV ( int arg0, float arg1, float arg2, float arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib3fNV ( GLuint , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib3dNV ( int arg0, double arg1, double arg2, double arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib3dNV ( GLuint , GLdouble , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib4sNV ( int arg0, short arg1, @@ -15086,13 +15086,13 @@ public final String getClassVersion ( ) short arg3, short arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib4sNV ( GLuint , GLshort , GLshort , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib4fNV ( int arg0, float arg1, @@ -15100,13 +15100,13 @@ public final String getClassVersion ( ) float arg3, float arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib4fNV ( GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib4dNV ( int arg0, double arg1, @@ -15114,13 +15114,13 @@ public final String getClassVersion ( ) double arg3, double arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib4dNV ( GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib4ubNV ( int arg0, byte arg1, @@ -15128,428 +15128,428 @@ public final String getClassVersion ( ) byte arg3, byte arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib4ubNV ( GLuint , GLubyte , GLubyte , GLubyte , GLubyte ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib1svNV ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib1svNV ( GLuint , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib1fvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib1fvNV ( GLuint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib1dvNV ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib1dvNV ( GLuint , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib2svNV ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib2svNV ( GLuint , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib2fvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib2fvNV ( GLuint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib2dvNV ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib2dvNV ( GLuint , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib3svNV ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib3svNV ( GLuint , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib3fvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib3fvNV ( GLuint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib3dvNV ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib3dvNV ( GLuint , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib4svNV ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib4svNV ( GLuint , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib4fvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib4fvNV ( GLuint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib4dvNV ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib4dvNV ( GLuint , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib4ubvNV ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib4ubvNV ( GLuint , const GLubyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs1svNV ( int arg0, int arg1, short[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs1svNV ( GLuint , GLsizei , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs1fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs1fvNV ( GLuint , GLsizei , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs1dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs1dvNV ( GLuint , GLsizei , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs2svNV ( int arg0, int arg1, short[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs2svNV ( GLuint , GLsizei , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs2fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs2fvNV ( GLuint , GLsizei , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs2dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs2dvNV ( GLuint , GLsizei , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs3svNV ( int arg0, int arg1, short[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs3svNV ( GLuint , GLsizei , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs3fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs3fvNV ( GLuint , GLsizei , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs3dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs3dvNV ( GLuint , GLsizei , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs4svNV ( int arg0, int arg1, short[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs4svNV ( GLuint , GLsizei , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs4fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs4fvNV ( GLuint , GLsizei , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs4dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs4dvNV ( GLuint , GLsizei , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs4ubvNV ( int arg0, int arg1, byte[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs4ubvNV ( GLuint , GLsizei , const GLubyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexBumpParameterivATI ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glTexBumpParameterivATI ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexBumpParameterfvATI ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glTexBumpParameterfvATI ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexBumpParameterivATI ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexBumpParameterivATI ( GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexBumpParameterfvATI ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexBumpParameterfvATI ( GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glGenFragmentShadersATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glGenFragmentShadersATI ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBindFragmentShaderATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glBindFragmentShaderATI ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeleteFragmentShaderATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glDeleteFragmentShaderATI ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBeginFragmentShaderATI ( ) ; - -/** - * Original Function-Prototype : - *extern void glBeginFragmentShaderATI ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEndFragmentShaderATI ( ) ; - -/** - * Original Function-Prototype : - *extern void glEndFragmentShaderATI ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPassTexCoordATI ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glPassTexCoordATI ( GLuint , GLuint , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSampleMapATI ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSampleMapATI ( GLuint , GLuint , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorFragmentOp1ATI ( int arg0, int arg1, @@ -15559,13 +15559,13 @@ public final String getClassVersion ( ) int arg5, int arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glColorFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorFragmentOp2ATI ( int arg0, int arg1, @@ -15578,13 +15578,13 @@ public final String getClassVersion ( ) int arg8, int arg9 ) ; - -/** - * Original Function-Prototype : - *extern void glColorFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorFragmentOp3ATI ( int arg0, int arg1, @@ -15600,13 +15600,13 @@ public final String getClassVersion ( ) int arg11, int arg12 ) ; - -/** - * Original Function-Prototype : - *extern void glColorFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glAlphaFragmentOp1ATI ( int arg0, int arg1, @@ -15615,13 +15615,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glAlphaFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glAlphaFragmentOp2ATI ( int arg0, int arg1, @@ -15633,13 +15633,13 @@ public final String getClassVersion ( ) int arg7, int arg8 ) ; - -/** - * Original Function-Prototype : - *extern void glAlphaFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glAlphaFragmentOp3ATI ( int arg0, int arg1, @@ -15654,46 +15654,46 @@ public final String getClassVersion ( ) int arg10, int arg11 ) ; - -/** - * Original Function-Prototype : - *extern void glAlphaFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSetFragmentShaderConstantATI ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glSetFragmentShaderConstantATI ( GLuint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPNTrianglesiATI ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glPNTrianglesiATI ( GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPNTrianglesfATI ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glPNTrianglesfATI ( GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glNewObjectBufferATI ( int arg0, byte[] arg1, @@ -15734,23 +15734,23 @@ public final String getClassVersion ( ) Buffer arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glNewObjectBufferATI ( GLsizei , const GLvoid * , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glIsObjectBufferATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glIsObjectBufferATI ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glUpdateObjectBufferATI ( int arg0, int arg1, @@ -15807,47 +15807,47 @@ public final String getClassVersion ( ) Buffer arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glUpdateObjectBufferATI ( GLuint , GLuint , GLsizei , const GLvoid * , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetObjectBufferfvATI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetObjectBufferfvATI ( GLuint , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetObjectBufferivATI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetObjectBufferivATI ( GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeleteObjectBufferATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glDeleteObjectBufferATI ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glArrayObjectATI ( int arg0, int arg1, @@ -15856,37 +15856,37 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glArrayObjectATI ( GLenum , GLint , GLenum , GLsizei , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetArrayObjectfvATI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetArrayObjectfvATI ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetArrayObjectivATI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetArrayObjectivATI ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantArrayObjectATI ( int arg0, int arg1, @@ -15894,110 +15894,110 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantArrayObjectATI ( GLuint , GLenum , GLsizei , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVariantArrayObjectfvATI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVariantArrayObjectfvATI ( GLuint , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVariantArrayObjectivATI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVariantArrayObjectivATI ( GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBeginVertexShaderEXT ( ) ; - -/** - * Original Function-Prototype : - *extern void glBeginVertexShaderEXT ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEndVertexShaderEXT ( ) ; - -/** - * Original Function-Prototype : - *extern void glEndVertexShaderEXT ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBindVertexShaderEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glBindVertexShaderEXT ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glGenVertexShadersEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glGenVertexShadersEXT ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeleteVertexShaderEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glDeleteVertexShaderEXT ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glShaderOp1EXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glShaderOp1EXT ( GLenum , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glShaderOp2EXT ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glShaderOp2EXT ( GLenum , GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glShaderOp3EXT ( int arg0, int arg1, @@ -16005,13 +16005,13 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glShaderOp3EXT ( GLenum , GLuint , GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSwizzleEXT ( int arg0, int arg1, @@ -16020,13 +16020,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glSwizzleEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWriteMaskEXT ( int arg0, int arg1, @@ -16035,50 +16035,50 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glWriteMaskEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glInsertComponentEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glInsertComponentEXT ( GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glExtractComponentEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glExtractComponentEXT ( GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glGenSymbolsEXT ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glGenSymbolsEXT ( GLenum , GLenum , GLenum , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSetInvariantEXT ( int arg0, int arg1, @@ -16119,13 +16119,13 @@ public final String getClassVersion ( ) int arg1, Buffer arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSetInvariantEXT ( GLuint , GLenum , const void * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSetLocalConstantEXT ( int arg0, int arg1, @@ -16166,101 +16166,101 @@ public final String getClassVersion ( ) int arg1, Buffer arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSetLocalConstantEXT ( GLuint , GLenum , const void * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantbvEXT ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantbvEXT ( GLuint , const GLbyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantsvEXT ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantsvEXT ( GLuint , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantivEXT ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantivEXT ( GLuint , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantfvEXT ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantfvEXT ( GLuint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantdvEXT ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantdvEXT ( GLuint , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantubvEXT ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantubvEXT ( GLuint , const GLubyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantusvEXT ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantusvEXT ( GLuint , const GLushort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantuivEXT ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantuivEXT ( GLuint , const GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantPointerEXT ( int arg0, int arg1, @@ -16309,135 +16309,135 @@ public final String getClassVersion ( ) int arg2, Buffer arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantPointerEXT ( GLuint , GLenum , GLuint , const void * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEnableVariantClientStateEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glEnableVariantClientStateEXT ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDisableVariantClientStateEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glDisableVariantClientStateEXT ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glBindLightParameterEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glBindLightParameterEXT ( GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glBindMaterialParameterEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glBindMaterialParameterEXT ( GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glBindTexGenParameterEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glBindTexGenParameterEXT ( GLenum , GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glBindTextureUnitParameterEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glBindTextureUnitParameterEXT ( GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glBindParameterEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glBindParameterEXT ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glIsVariantEnabledEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glIsVariantEnabledEXT ( GLuint , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVariantBooleanvEXT ( int arg0, int arg1, boolean[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVariantIntegervEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVariantIntegervEXT ( GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVariantFloatvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVariantPointervEXT ( int arg0, int arg1, @@ -16473,361 +16473,361 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVariantPointervEXT ( GLuint , GLenum , GLvoid * * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetInvariantBooleanvEXT ( int arg0, int arg1, boolean[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetInvariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetInvariantIntegervEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetInvariantIntegervEXT ( GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetInvariantFloatvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetInvariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetLocalConstantBooleanvEXT ( int arg0, int arg1, boolean[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetLocalConstantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetLocalConstantIntegervEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetLocalConstantIntegervEXT ( GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetLocalConstantFloatvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetLocalConstantFloatvEXT ( GLuint , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream1s ( int arg0, short arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream1s ( GLenum , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream1sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream1sv ( GLenum , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream1i ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream1i ( GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream1iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream1iv ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream1f ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream1f ( GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream1fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream1fv ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream1d ( int arg0, double arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream1d ( GLenum , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream1dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream1dv ( GLenum , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream2s ( int arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream2s ( GLenum , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream2sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream2sv ( GLenum , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream2i ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream2i ( GLenum , GLint , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream2iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream2iv ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream2f ( int arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream2f ( GLenum , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream2fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream2fv ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream2d ( int arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream2d ( GLenum , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream2dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream2dv ( GLenum , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream3s ( int arg0, short arg1, short arg2, short arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream3s ( GLenum , GLshort , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream3sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream3sv ( GLenum , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream3i ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream3i ( GLenum , GLint , GLint , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream3iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream3iv ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream3f ( int arg0, float arg1, float arg2, float arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream3fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream3fv ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream3d ( int arg0, double arg1, double arg2, double arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream3dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream3dv ( GLenum , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream4s ( int arg0, short arg1, @@ -16835,24 +16835,24 @@ public final String getClassVersion ( ) short arg3, short arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream4s ( GLenum , GLshort , GLshort , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream4sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream4sv ( GLenum , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream4i ( int arg0, int arg1, @@ -16860,24 +16860,24 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream4i ( GLenum , GLint , GLint , GLint , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream4iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream4iv ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream4f ( int arg0, float arg1, @@ -16885,24 +16885,24 @@ public final String getClassVersion ( ) float arg3, float arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream4f ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream4fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream4fv ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream4d ( int arg0, double arg1, @@ -16910,171 +16910,171 @@ public final String getClassVersion ( ) double arg3, double arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream4d ( GLenum , GLdouble , GLdouble , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream4dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream4dv ( GLenum , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3b ( int arg0, byte arg1, byte arg2, byte arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3b ( GLenum , GLbyte , GLbyte , GLbyte ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3bv ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3bv ( GLenum , const GLbyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3s ( int arg0, short arg1, short arg2, short arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3s ( GLenum , GLshort , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3sv ( GLenum , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3i ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3i ( GLenum , GLint , GLint , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3iv ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3f ( int arg0, float arg1, float arg2, float arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3fv ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3d ( int arg0, double arg1, double arg2, double arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3dv ( GLenum , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClientActiveVertexStream ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glClientActiveVertexStream ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexBlendEnvi ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexBlendEnvi ( GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void glVertexBlendEnvf ( GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClearIndex ( float c ) ; - -/** - * Original Function-Prototype : - *extern void glClearIndex ( GLfloat c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClearColor ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - *extern void glClearColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClear ( int mask ) ; - -/** - * Original Function-Prototype : - *extern void glClear ( GLbitfield mask ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexMask ( int mask ) ; - -/** - * Original Function-Prototype : - *extern void glIndexMask ( GLuint mask ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorMask ( boolean red, boolean green, boolean blue, boolean alpha ) ; - -/** - * Original Function-Prototype : - *extern void glColorMask ( GLboolean red , GLboolean green , GLboolean blue , GLboolean alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glAlphaFunc ( int func, float ref ) ; - -/** - * Original Function-Prototype : - *extern void glAlphaFunc ( GLenum func , GLclampf ref ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBlendFunc ( int sfactor, int dfactor ) ; - -/** - * Original Function-Prototype : - *extern void glBlendFunc ( GLenum sfactor , GLenum dfactor ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLogicOp ( int opcode ) ; - -/** - * Original Function-Prototype : - *extern void glLogicOp ( GLenum opcode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCullFace ( int mode ) ; - -/** - * Original Function-Prototype : - *extern void glCullFace ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFrontFace ( int mode ) ; - -/** - * Original Function-Prototype : - *extern void glFrontFace ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPointSize ( float size ) ; - -/** - * Original Function-Prototype : - *extern void glPointSize ( GLfloat size ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLineWidth ( float width ) ; - -/** - * Original Function-Prototype : - *extern void glLineWidth ( GLfloat width ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLineStipple ( int factor, short pattern ) ; - -/** - * Original Function-Prototype : - *extern void glLineStipple ( GLint factor , GLushort pattern ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPolygonMode ( int face, int mode ) ; - -/** - * Original Function-Prototype : - *extern void glPolygonMode ( GLenum face , GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPolygonOffset ( float factor, float units ) ; - -/** - * Original Function-Prototype : - *extern void glPolygonOffset ( GLfloat factor , GLfloat units ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPolygonStipple ( byte[] mask ) ; - -/** - * Original Function-Prototype : - *extern void glPolygonStipple ( const GLubyte * mask ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetPolygonStipple ( byte[] mask ) ; - -/** - * Original Function-Prototype : - *extern void glGetPolygonStipple ( GLubyte * mask ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEdgeFlag ( boolean flag ) ; - -/** - * Original Function-Prototype : - *extern void glEdgeFlag ( GLboolean flag ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEdgeFlagv ( boolean[] flag ) ; - -/** - * Original Function-Prototype : - *extern void glEdgeFlagv ( const GLboolean * flag ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glScissor ( int x, int y, int width, int height ) ; - -/** - * Original Function-Prototype : - *extern void glScissor ( GLint x , GLint y , GLsizei width , GLsizei height ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClipPlane ( int plane, double[] equation ) ; - -/** - * Original Function-Prototype : - *extern void glClipPlane ( GLenum plane , const GLdouble * equation ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetClipPlane ( int plane, double[] equation ) ; - -/** - * Original Function-Prototype : - *extern void glGetClipPlane ( GLenum plane , GLdouble * equation ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDrawBuffer ( int mode ) ; - -/** - * Original Function-Prototype : - *extern void glDrawBuffer ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReadBuffer ( int mode ) ; - -/** - * Original Function-Prototype : - *extern void glReadBuffer ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEnable ( int cap ) ; - -/** - * Original Function-Prototype : - *extern void glEnable ( GLenum cap ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDisable ( int cap ) ; - -/** - * Original Function-Prototype : - *extern void glDisable ( GLenum cap ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glIsEnabled ( int cap ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glIsEnabled ( GLenum cap ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEnableClientState ( int cap ) ; - -/** - * Original Function-Prototype : - *extern void glEnableClientState ( GLenum cap ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDisableClientState ( int cap ) ; - -/** - * Original Function-Prototype : - *extern void glDisableClientState ( GLenum cap ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetBooleanv ( int pname, boolean[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetBooleanv ( GLenum pname , GLboolean * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetDoublev ( int pname, double[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetDoublev ( GLenum pname , GLdouble * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetFloatv ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetFloatv ( GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetIntegerv ( int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetIntegerv ( GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPushAttrib ( int mask ) ; - -/** - * Original Function-Prototype : - *extern void glPushAttrib ( GLbitfield mask ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPopAttrib ( ) ; - -/** - * Original Function-Prototype : - *extern void glPopAttrib ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPushClientAttrib ( int mask ) ; - -/** - * Original Function-Prototype : - *extern void glPushClientAttrib ( GLbitfield mask ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPopClientAttrib ( ) ; - -/** - * Original Function-Prototype : - *extern void glPopClientAttrib ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glRenderMode ( int mode ) ; - -/** - * Original Function-Prototype : - *extern GLint glRenderMode ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glGetError ( ) ; - -/** - * Original Function-Prototype : - *extern GLenum glGetError ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFinish ( ) ; - -/** - * Original Function-Prototype : - *extern void glFinish ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFlush ( ) ; - -/** - * Original Function-Prototype : - *extern void glFlush ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glHint ( int target, int mode ) ; - -/** - * Original Function-Prototype : - *extern void glHint ( GLenum target , GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClearDepth ( double depth ) ; - -/** - * Original Function-Prototype : - *extern void glClearDepth ( GLclampd depth ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDepthFunc ( int func ) ; - -/** - * Original Function-Prototype : - *extern void glDepthFunc ( GLenum func ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDepthMask ( boolean flag ) ; - -/** - * Original Function-Prototype : - *extern void glDepthMask ( GLboolean flag ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDepthRange ( double near_val, double far_val ) ; - -/** - * Original Function-Prototype : - *extern void glDepthRange ( GLclampd near_val , GLclampd far_val ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClearAccum ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - *extern void glClearAccum ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glAccum ( int op, float value ) ; - -/** - * Original Function-Prototype : - *extern void glAccum ( GLenum op , GLfloat value ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMatrixMode ( int mode ) ; - -/** - * Original Function-Prototype : - *extern void glMatrixMode ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void glOrtho ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void glFrustum ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top , GLdouble near_val , GLdouble far_val ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glViewport ( int x, int y, int width, int height ) ; - -/** - * Original Function-Prototype : - *extern void glViewport ( GLint x , GLint y , GLsizei width , GLsizei height ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPushMatrix ( ) ; - -/** - * Original Function-Prototype : - *extern void glPushMatrix ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPopMatrix ( ) ; - -/** - * Original Function-Prototype : - *extern void glPopMatrix ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadIdentity ( ) ; - -/** - * Original Function-Prototype : - *extern void glLoadIdentity ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadMatrixd ( double[] m ) ; - -/** - * Original Function-Prototype : - *extern void glLoadMatrixd ( const GLdouble * m ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadMatrixf ( float[] m ) ; - -/** - * Original Function-Prototype : - *extern void glLoadMatrixf ( const GLfloat * m ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultMatrixd ( double[] m ) ; - -/** - * Original Function-Prototype : - *extern void glMultMatrixd ( const GLdouble * m ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultMatrixf ( float[] m ) ; - -/** - * Original Function-Prototype : - *extern void glMultMatrixf ( const GLfloat * m ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRotated ( double angle, double x, double y, double z ) ; - -/** - * Original Function-Prototype : - *extern void glRotated ( GLdouble angle , GLdouble x , GLdouble y , GLdouble z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRotatef ( float angle, float x, float y, float z ) ; - -/** - * Original Function-Prototype : - *extern void glRotatef ( GLfloat angle , GLfloat x , GLfloat y , GLfloat z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glScaled ( double x, double y, double z ) ; - -/** - * Original Function-Prototype : - *extern void glScaled ( GLdouble x , GLdouble y , GLdouble z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glScalef ( float x, float y, float z ) ; - -/** - * Original Function-Prototype : - *extern void glScalef ( GLfloat x , GLfloat y , GLfloat z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTranslated ( double x, double y, double z ) ; - -/** - * Original Function-Prototype : - *extern void glTranslated ( GLdouble x , GLdouble y , GLdouble z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTranslatef ( float x, float y, float z ) ; - -/** - * Original Function-Prototype : - *extern void glTranslatef ( GLfloat x , GLfloat y , GLfloat z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glIsList ( int list ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glIsList ( GLuint list ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeleteLists ( int list, int range ) ; - -/** - * Original Function-Prototype : - *extern void glDeleteLists ( GLuint list , GLsizei range ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glGenLists ( int range ) ; - -/** - * Original Function-Prototype : - *extern GLuint glGenLists ( GLsizei range ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNewList ( int list, int mode ) ; - -/** - * Original Function-Prototype : - *extern void glNewList ( GLuint list , GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEndList ( ) ; - -/** - * Original Function-Prototype : - *extern void glEndList ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCallList ( int list ) ; - -/** - * Original Function-Prototype : - *extern void glCallList ( GLuint list ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCallLists ( int n, int type, @@ -840,1580 +840,1580 @@ public final String getClassVersion ( ) int type, long[] lists ) ; - -/** - * Original Function-Prototype : - *extern void glCallLists ( GLsizei n , GLenum type , const GLvoid * lists ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glListBase ( int base ) ; - -/** - * Original Function-Prototype : - *extern void glListBase ( GLuint base ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBegin ( int mode ) ; - -/** - * Original Function-Prototype : - *extern void glBegin ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEnd ( ) ; - -/** - * Original Function-Prototype : - *extern void glEnd ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex2d ( double x, double y ) ; - -/** - * Original Function-Prototype : - *extern void glVertex2d ( GLdouble x , GLdouble y ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex2f ( float x, float y ) ; - -/** - * Original Function-Prototype : - *extern void glVertex2f ( GLfloat x , GLfloat y ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex2i ( int x, int y ) ; - -/** - * Original Function-Prototype : - *extern void glVertex2i ( GLint x , GLint y ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex2s ( short x, short y ) ; - -/** - * Original Function-Prototype : - *extern void glVertex2s ( GLshort x , GLshort y ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex3d ( double x, double y, double z ) ; - -/** - * Original Function-Prototype : - *extern void glVertex3d ( GLdouble x , GLdouble y , GLdouble z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex3f ( float x, float y, float z ) ; - -/** - * Original Function-Prototype : - *extern void glVertex3f ( GLfloat x , GLfloat y , GLfloat z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex3i ( int x, int y, int z ) ; - -/** - * Original Function-Prototype : - *extern void glVertex3i ( GLint x , GLint y , GLint z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex3s ( short x, short y, short z ) ; - -/** - * Original Function-Prototype : - *extern void glVertex3s ( GLshort x , GLshort y , GLshort z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex4d ( double x, double y, double z, double w ) ; - -/** - * Original Function-Prototype : - *extern void glVertex4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex4f ( float x, float y, float z, float w ) ; - -/** - * Original Function-Prototype : - *extern void glVertex4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex4i ( int x, int y, int z, int w ) ; - -/** - * Original Function-Prototype : - *extern void glVertex4i ( GLint x , GLint y , GLint z , GLint w ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex4s ( short x, short y, short z, short w ) ; - -/** - * Original Function-Prototype : - *extern void glVertex4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex2dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex2dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex2fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex2fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex2iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex2iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex2sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex2sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex3dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex3fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex3iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex3sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex4dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex4dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex4fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex4fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex4iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex4iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertex4sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glVertex4sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3b ( byte nx, byte ny, byte nz ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3b ( GLbyte nx , GLbyte ny , GLbyte nz ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3d ( double nx, double ny, double nz ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3d ( GLdouble nx , GLdouble ny , GLdouble nz ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3f ( float nx, float ny, float nz ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3f ( GLfloat nx , GLfloat ny , GLfloat nz ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3i ( int nx, int ny, int nz ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3i ( GLint nx , GLint ny , GLint nz ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3s ( short nx, short ny, short nz ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3s ( GLshort nx , GLshort ny , GLshort nz ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3bv ( byte[] v ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3bv ( const GLbyte * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexd ( double c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexd ( GLdouble c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexf ( float c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexf ( GLfloat c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexi ( int c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexi ( GLint c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexs ( short c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexs ( GLshort c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexub ( byte c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexub ( GLubyte c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexdv ( double[] c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexdv ( const GLdouble * c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexfv ( float[] c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexfv ( const GLfloat * c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexiv ( int[] c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexiv ( const GLint * c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexsv ( short[] c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexsv ( const GLshort * c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexubv ( byte[] c ) ; - -/** - * Original Function-Prototype : - *extern void glIndexubv ( const GLubyte * c ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3b ( byte red, byte green, byte blue ) ; - -/** - * Original Function-Prototype : - *extern void glColor3b ( GLbyte red , GLbyte green , GLbyte blue ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3d ( double red, double green, double blue ) ; - -/** - * Original Function-Prototype : - *extern void glColor3d ( GLdouble red , GLdouble green , GLdouble blue ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3f ( float red, float green, float blue ) ; - -/** - * Original Function-Prototype : - *extern void glColor3f ( GLfloat red , GLfloat green , GLfloat blue ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3i ( int red, int green, int blue ) ; - -/** - * Original Function-Prototype : - *extern void glColor3i ( GLint red , GLint green , GLint blue ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3s ( short red, short green, short blue ) ; - -/** - * Original Function-Prototype : - *extern void glColor3s ( GLshort red , GLshort green , GLshort blue ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3ub ( byte red, byte green, byte blue ) ; - -/** - * Original Function-Prototype : - *extern void glColor3ub ( GLubyte red , GLubyte green , GLubyte blue ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3ui ( int red, int green, int blue ) ; - -/** - * Original Function-Prototype : - *extern void glColor3ui ( GLuint red , GLuint green , GLuint blue ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3us ( short red, short green, short blue ) ; - -/** - * Original Function-Prototype : - *extern void glColor3us ( GLushort red , GLushort green , GLushort blue ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4b ( byte red, byte green, byte blue, byte alpha ) ; - -/** - * Original Function-Prototype : - *extern void glColor4b ( GLbyte red , GLbyte green , GLbyte blue , GLbyte alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4d ( double red, double green, double blue, double alpha ) ; - -/** - * Original Function-Prototype : - *extern void glColor4d ( GLdouble red , GLdouble green , GLdouble blue , GLdouble alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4f ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - *extern void glColor4f ( GLfloat red , GLfloat green , GLfloat blue , GLfloat alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4i ( int red, int green, int blue, int alpha ) ; - -/** - * Original Function-Prototype : - *extern void glColor4i ( GLint red , GLint green , GLint blue , GLint alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4s ( short red, short green, short blue, short alpha ) ; - -/** - * Original Function-Prototype : - *extern void glColor4s ( GLshort red , GLshort green , GLshort blue , GLshort alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4ub ( byte red, byte green, byte blue, byte alpha ) ; - -/** - * Original Function-Prototype : - *extern void glColor4ub ( GLubyte red , GLubyte green , GLubyte blue , GLubyte alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4ui ( int red, int green, int blue, int alpha ) ; - -/** - * Original Function-Prototype : - *extern void glColor4ui ( GLuint red , GLuint green , GLuint blue , GLuint alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4us ( short red, short green, short blue, short alpha ) ; - -/** - * Original Function-Prototype : - *extern void glColor4us ( GLushort red , GLushort green , GLushort blue , GLushort alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3bv ( byte[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor3bv ( const GLbyte * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor3dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor3fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor3iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor3sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3ubv ( byte[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor3ubv ( const GLubyte * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3uiv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor3uiv ( const GLuint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3usv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor3usv ( const GLushort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4bv ( byte[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor4bv ( const GLbyte * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor4dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor4fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor4iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor4sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4ubv ( byte[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor4ubv ( const GLubyte * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4uiv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor4uiv ( const GLuint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4usv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glColor4usv ( const GLushort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord1d ( double s ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord1d ( GLdouble s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord1f ( float s ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord1f ( GLfloat s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord1i ( int s ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord1i ( GLint s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord1s ( short s ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord1s ( GLshort s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2d ( double s, double t ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2d ( GLdouble s , GLdouble t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2f ( float s, float t ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2f ( GLfloat s , GLfloat t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2i ( int s, int t ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2i ( GLint s , GLint t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2s ( short s, short t ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2s ( GLshort s , GLshort t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord3d ( double s, double t, double r ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord3d ( GLdouble s , GLdouble t , GLdouble r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord3f ( float s, float t, float r ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord3f ( GLfloat s , GLfloat t , GLfloat r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord3i ( int s, int t, int r ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord3i ( GLint s , GLint t , GLint r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord3s ( short s, short t, short r ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord3s ( GLshort s , GLshort t , GLshort r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4d ( double s, double t, double r, double q ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4d ( GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4f ( float s, float t, float r, float q ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4f ( GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4i ( int s, int t, int r, int q ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4i ( GLint s , GLint t , GLint r , GLint q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4s ( short s, short t, short r, short q ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4s ( GLshort s , GLshort t , GLshort r , GLshort q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord1dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord1dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord1fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord1fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord1iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord1iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord1sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord1sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord3dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord3fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord3iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord3sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos2d ( double x, double y ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos2d ( GLdouble x , GLdouble y ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos2f ( float x, float y ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos2f ( GLfloat x , GLfloat y ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos2i ( int x, int y ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos2i ( GLint x , GLint y ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos2s ( short x, short y ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos2s ( GLshort x , GLshort y ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos3d ( double x, double y, double z ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos3d ( GLdouble x , GLdouble y , GLdouble z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos3f ( float x, float y, float z ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos3f ( GLfloat x , GLfloat y , GLfloat z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos3i ( int x, int y, int z ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos3i ( GLint x , GLint y , GLint z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos3s ( short x, short y, short z ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos3s ( GLshort x , GLshort y , GLshort z ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos4d ( double x, double y, double z, double w ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos4d ( GLdouble x , GLdouble y , GLdouble z , GLdouble w ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos4f ( float x, float y, float z, float w ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos4f ( GLfloat x , GLfloat y , GLfloat z , GLfloat w ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos4i ( int x, int y, int z, int w ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos4i ( GLint x , GLint y , GLint z , GLint w ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos4s ( short x, short y, short z, short w ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos4s ( GLshort x , GLshort y , GLshort z , GLshort w ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos2dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos2dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos2fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos2fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos2iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos2iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos2sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos2sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos3dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos3dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos3fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos3fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos3iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos3iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos3sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos3sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos4dv ( double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos4dv ( const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos4fv ( float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos4fv ( const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos4iv ( int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos4iv ( const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRasterPos4sv ( short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glRasterPos4sv ( const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRectd ( double x1, double y1, double x2, double y2 ) ; - -/** - * Original Function-Prototype : - *extern void glRectd ( GLdouble x1 , GLdouble y1 , GLdouble x2 , GLdouble y2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRectf ( float x1, float y1, float x2, float y2 ) ; - -/** - * Original Function-Prototype : - *extern void glRectf ( GLfloat x1 , GLfloat y1 , GLfloat x2 , GLfloat y2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRecti ( int x1, int y1, int x2, int y2 ) ; - -/** - * Original Function-Prototype : - *extern void glRecti ( GLint x1 , GLint y1 , GLint x2 , GLint y2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRects ( short x1, short y1, short x2, short y2 ) ; - -/** - * Original Function-Prototype : - *extern void glRects ( GLshort x1 , GLshort y1 , GLshort x2 , GLshort y2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRectdv ( double[] v1, double[] v2 ) ; - -/** - * Original Function-Prototype : - *extern void glRectdv ( const GLdouble * v1 , const GLdouble * v2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRectfv ( float[] v1, float[] v2 ) ; - -/** - * Original Function-Prototype : - *extern void glRectfv ( const GLfloat * v1 , const GLfloat * v2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRectiv ( int[] v1, int[] v2 ) ; - -/** - * Original Function-Prototype : - *extern void glRectiv ( const GLint * v1 , const GLint * v2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRectsv ( short[] v1, short[] v2 - ) ; - -/** - * Original Function-Prototype : - *extern void glRectsv ( const GLshort * v1 , const GLshort * v2 ) ; - *- */ + *
+ ) ; + +/** + * Original Function-Prototype : + *+ */ public final native void glVertexPointer ( int size, int type, @@ -2456,13 +2456,13 @@ public final String getClassVersion ( ) int stride, long[] ptr ) ; - -/** - * Original Function-Prototype : - *extern void glVertexPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalPointer ( int type, int stride, @@ -2498,13 +2498,13 @@ public final String getClassVersion ( ) int stride, long[] ptr ) ; - -/** - * Original Function-Prototype : - *extern void glNormalPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorPointer ( int size, int type, @@ -2547,13 +2547,13 @@ public final String getClassVersion ( ) int stride, long[] ptr ) ; - -/** - * Original Function-Prototype : - *extern void glColorPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexPointer ( int type, int stride, @@ -2589,13 +2589,13 @@ public final String getClassVersion ( ) int stride, long[] ptr ) ; - -/** - * Original Function-Prototype : - *extern void glIndexPointer ( GLenum type , GLsizei stride , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoordPointer ( int size, int type, @@ -2638,13 +2638,13 @@ public final String getClassVersion ( ) int stride, long[] ptr ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoordPointer ( GLint size , GLenum type , GLsizei stride , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEdgeFlagPointer ( int stride, byte[] ptr @@ -2673,13 +2673,13 @@ public final String getClassVersion ( ) int stride, long[] ptr ) ; - -/** - * Original Function-Prototype : - *extern void glEdgeFlagPointer ( GLsizei stride , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetPointerv ( int pname, byte[][] params @@ -2708,35 +2708,35 @@ public final String getClassVersion ( ) int pname, long[][] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetPointerv ( GLenum pname , GLvoid * * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glArrayElement ( int i ) ; - -/** - * Original Function-Prototype : - *extern void glArrayElement ( GLint i ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDrawArrays ( int mode, int first, int count ) ; - -/** - * Original Function-Prototype : - *extern void glDrawArrays ( GLenum mode , GLint first , GLsizei count ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDrawElements ( int mode, int count, @@ -2779,13 +2779,13 @@ public final String getClassVersion ( ) int type, long[] indices ) ; - -/** - * Original Function-Prototype : - *extern void glDrawElements ( GLenum mode , GLsizei count , GLenum type , const GLvoid * indices ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glInterleavedArrays ( int format, int stride, @@ -2821,346 +2821,346 @@ public final String getClassVersion ( ) int stride, long[] pointer ) ; - -/** - * Original Function-Prototype : - *extern void glInterleavedArrays ( GLenum format , GLsizei stride , const GLvoid * pointer ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glShadeModel ( int mode ) ; - -/** - * Original Function-Prototype : - *extern void glShadeModel ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLightf ( int light, int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glLightf ( GLenum light , GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLighti ( int light, int pname, int param ) ; - -/** - * Original Function-Prototype : - *extern void glLighti ( GLenum light , GLenum pname , GLint param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLightfv ( int light, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glLightfv ( GLenum light , GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLightiv ( int light, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glLightiv ( GLenum light , GLenum pname , const GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetLightfv ( int light, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetLightfv ( GLenum light , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetLightiv ( int light, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetLightiv ( GLenum light , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLightModelf ( int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glLightModelf ( GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLightModeli ( int pname, int param ) ; - -/** - * Original Function-Prototype : - *extern void glLightModeli ( GLenum pname , GLint param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLightModelfv ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glLightModelfv ( GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLightModeliv ( int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glLightModeliv ( GLenum pname , const GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMaterialf ( int face, int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glMaterialf ( GLenum face , GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMateriali ( int face, int pname, int param ) ; - -/** - * Original Function-Prototype : - *extern void glMateriali ( GLenum face , GLenum pname , GLint param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMaterialfv ( int face, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glMaterialfv ( GLenum face , GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMaterialiv ( int face, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glMaterialiv ( GLenum face , GLenum pname , const GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMaterialfv ( int face, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetMaterialfv ( GLenum face , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMaterialiv ( int face, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetMaterialiv ( GLenum face , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorMaterial ( int face, int mode ) ; - -/** - * Original Function-Prototype : - *extern void glColorMaterial ( GLenum face , GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelZoom ( float xfactor, float yfactor ) ; - -/** - * Original Function-Prototype : - *extern void glPixelZoom ( GLfloat xfactor , GLfloat yfactor ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelStoref ( int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glPixelStoref ( GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelStorei ( int pname, int param ) ; - -/** - * Original Function-Prototype : - *extern void glPixelStorei ( GLenum pname , GLint param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTransferf ( int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTransferf ( GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTransferi ( int pname, int param ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTransferi ( GLenum pname , GLint param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelMapfv ( int map, int mapsize, float[] values ) ; - -/** - * Original Function-Prototype : - *extern void glPixelMapfv ( GLenum map , GLint mapsize , const GLfloat * values ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelMapuiv ( int map, int mapsize, int[] values ) ; - -/** - * Original Function-Prototype : - *extern void glPixelMapuiv ( GLenum map , GLint mapsize , const GLuint * values ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelMapusv ( int map, int mapsize, short[] values ) ; - -/** - * Original Function-Prototype : - *extern void glPixelMapusv ( GLenum map , GLint mapsize , const GLushort * values ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetPixelMapfv ( int map, float[] values ) ; - -/** - * Original Function-Prototype : - *extern void glGetPixelMapfv ( GLenum map , GLfloat * values ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetPixelMapuiv ( int map, int[] values ) ; - -/** - * Original Function-Prototype : - *extern void glGetPixelMapuiv ( GLenum map , GLuint * values ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetPixelMapusv ( int map, short[] values ) ; - -/** - * Original Function-Prototype : - *extern void glGetPixelMapusv ( GLenum map , GLushort * values ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBitmap ( int width, int height, @@ -3170,13 +3170,13 @@ public final String getClassVersion ( ) float ymove, byte[] bitmap ) ; - -/** - * Original Function-Prototype : - *extern void glBitmap ( GLsizei width , GLsizei height , GLfloat xorig , GLfloat yorig , GLfloat xmove , GLfloat ymove , const GLubyte * bitmap ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReadPixels ( int x, int y, @@ -3240,13 +3240,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - *extern void glReadPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum format , GLenum type , GLvoid * pixels ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDrawPixels ( int width, int height, @@ -3296,13 +3296,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - *extern void glDrawPixels ( GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyPixels ( int x, int y, @@ -3310,335 +3310,335 @@ public final String getClassVersion ( ) int height, int type ) ; - -/** - * Original Function-Prototype : - *extern void glCopyPixels ( GLint x , GLint y , GLsizei width , GLsizei height , GLenum type ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glStencilFunc ( int func, int ref, int mask ) ; - -/** - * Original Function-Prototype : - *extern void glStencilFunc ( GLenum func , GLint ref , GLuint mask ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glStencilMask ( int mask ) ; - -/** - * Original Function-Prototype : - *extern void glStencilMask ( GLuint mask ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glStencilOp ( int fail, int zfail, int zpass ) ; - -/** - * Original Function-Prototype : - *extern void glStencilOp ( GLenum fail , GLenum zfail , GLenum zpass ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClearStencil ( int s ) ; - -/** - * Original Function-Prototype : - *extern void glClearStencil ( GLint s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexGend ( int coord, int pname, double param ) ; - -/** - * Original Function-Prototype : - *extern void glTexGend ( GLenum coord , GLenum pname , GLdouble param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexGenf ( int coord, int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glTexGenf ( GLenum coord , GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexGeni ( int coord, int pname, int param ) ; - -/** - * Original Function-Prototype : - *extern void glTexGeni ( GLenum coord , GLenum pname , GLint param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexGendv ( int coord, int pname, double[] params ) ; - -/** - * Original Function-Prototype : - *extern void glTexGendv ( GLenum coord , GLenum pname , const GLdouble * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexGenfv ( int coord, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glTexGenfv ( GLenum coord , GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexGeniv ( int coord, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glTexGeniv ( GLenum coord , GLenum pname , const GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexGendv ( int coord, int pname, double[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexGendv ( GLenum coord , GLenum pname , GLdouble * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexGenfv ( int coord, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexGenfv ( GLenum coord , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexGeniv ( int coord, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexGeniv ( GLenum coord , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexEnvf ( int target, int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glTexEnvf ( GLenum target , GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexEnvi ( int target, int pname, int param ) ; - -/** - * Original Function-Prototype : - *extern void glTexEnvi ( GLenum target , GLenum pname , GLint param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexEnvfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glTexEnvfv ( GLenum target , GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexEnviv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glTexEnviv ( GLenum target , GLenum pname , const GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexEnvfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexEnvfv ( GLenum target , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexEnviv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexEnviv ( GLenum target , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexParameterf ( int target, int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glTexParameterf ( GLenum target , GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexParameteri ( int target, int pname, int param ) ; - -/** - * Original Function-Prototype : - *extern void glTexParameteri ( GLenum target , GLenum pname , GLint param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glTexParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glTexParameteriv ( GLenum target , GLenum pname , const GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexLevelParameterfv ( int target, int level, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexLevelParameterfv ( GLenum target , GLint level , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexLevelParameteriv ( int target, int level, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexLevelParameteriv ( GLenum target , GLint level , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexImage1D ( int target, int level, @@ -3709,13 +3709,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - *extern void glTexImage1D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexImage2D ( int target, int level, @@ -3793,13 +3793,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - *extern void glTexImage2D ( GLenum target , GLint level , GLint internalFormat , GLsizei width , GLsizei height , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexImage ( int target, int level, @@ -3849,80 +3849,80 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexImage ( GLenum target , GLint level , GLenum format , GLenum type , GLvoid * pixels ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGenTextures ( int n, int[] textures ) ; - -/** - * Original Function-Prototype : - *extern void glGenTextures ( GLsizei n , GLuint * textures ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeleteTextures ( int n, int[] textures ) ; - -/** - * Original Function-Prototype : - *extern void glDeleteTextures ( GLsizei n , const GLuint * textures ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBindTexture ( int target, int texture ) ; - -/** - * Original Function-Prototype : - *extern void glBindTexture ( GLenum target , GLuint texture ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPrioritizeTextures ( int n, int[] textures, float[] priorities ) ; - -/** - * Original Function-Prototype : - *extern void glPrioritizeTextures ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glAreTexturesResident ( int n, int[] textures, boolean[] residences ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glAreTexturesResident ( GLsizei n , const GLuint * textures , GLboolean * residences ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glIsTexture ( int texture ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glIsTexture ( GLuint texture ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexSubImage1D ( int target, int level, @@ -3986,13 +3986,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - *extern void glTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLenum type , const GLvoid * pixels ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexSubImage2D ( int target, int level, @@ -4070,13 +4070,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - *extern void glTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * pixels ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexImage1D ( int target, int level, @@ -4086,13 +4086,13 @@ public final String getClassVersion ( ) int width, int border ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLint border ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexImage2D ( int target, int level, @@ -4103,13 +4103,13 @@ public final String getClassVersion ( ) int height, int border ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height , GLint border ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexSubImage1D ( int target, int level, @@ -4118,13 +4118,13 @@ public final String getClassVersion ( ) int y, int width ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLint x , GLint y , GLsizei width ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexSubImage2D ( int target, int level, @@ -4135,13 +4135,13 @@ public final String getClassVersion ( ) int width, int height ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMap1d ( int target, double u1, @@ -4150,13 +4150,13 @@ public final String getClassVersion ( ) int order, double[] points ) ; - -/** - * Original Function-Prototype : - *extern void glMap1d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint stride , GLint order , const GLdouble * points ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMap1f ( int target, float u1, @@ -4165,13 +4165,13 @@ public final String getClassVersion ( ) int order, float[] points ) ; - -/** - * Original Function-Prototype : - *extern void glMap1f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint stride , GLint order , const GLfloat * points ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMap2d ( int target, double u1, @@ -4184,13 +4184,13 @@ public final String getClassVersion ( ) int vorder, double[] points ) ; - -/** - * Original Function-Prototype : - *extern void glMap2d ( GLenum target , GLdouble u1 , GLdouble u2 , GLint ustride , GLint uorder , GLdouble v1 , GLdouble v2 , GLint vstride , GLint vorder , const GLdouble * points ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMap2f ( int target, float u1, @@ -4203,155 +4203,155 @@ public final String getClassVersion ( ) int vorder, float[] points ) ; - -/** - * Original Function-Prototype : - *extern void glMap2f ( GLenum target , GLfloat u1 , GLfloat u2 , GLint ustride , GLint uorder , GLfloat v1 , GLfloat v2 , GLint vstride , GLint vorder , const GLfloat * points ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMapdv ( int target, int query, double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glGetMapdv ( GLenum target , GLenum query , GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMapfv ( int target, int query, float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glGetMapfv ( GLenum target , GLenum query , GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMapiv ( int target, int query, int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glGetMapiv ( GLenum target , GLenum query , GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalCoord1d ( double u ) ; - -/** - * Original Function-Prototype : - *extern void glEvalCoord1d ( GLdouble u ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalCoord1f ( float u ) ; - -/** - * Original Function-Prototype : - *extern void glEvalCoord1f ( GLfloat u ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalCoord1dv ( double[] u ) ; - -/** - * Original Function-Prototype : - *extern void glEvalCoord1dv ( const GLdouble * u ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalCoord1fv ( float[] u ) ; - -/** - * Original Function-Prototype : - *extern void glEvalCoord1fv ( const GLfloat * u ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalCoord2d ( double u, double v ) ; - -/** - * Original Function-Prototype : - *extern void glEvalCoord2d ( GLdouble u , GLdouble v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalCoord2f ( float u, float v ) ; - -/** - * Original Function-Prototype : - *extern void glEvalCoord2f ( GLfloat u , GLfloat v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalCoord2dv ( double[] u ) ; - -/** - * Original Function-Prototype : - *extern void glEvalCoord2dv ( const GLdouble * u ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalCoord2fv ( float[] u ) ; - -/** - * Original Function-Prototype : - *extern void glEvalCoord2fv ( const GLfloat * u ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMapGrid1d ( int un, double u1, double u2 ) ; - -/** - * Original Function-Prototype : - *extern void glMapGrid1d ( GLint un , GLdouble u1 , GLdouble u2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMapGrid1f ( int un, float u1, float u2 ) ; - -/** - * Original Function-Prototype : - *extern void glMapGrid1f ( GLint un , GLfloat u1 , GLfloat u2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMapGrid2d ( int un, double u1, @@ -4360,13 +4360,13 @@ public final String getClassVersion ( ) double v1, double v2 ) ; - -/** - * Original Function-Prototype : - *extern void glMapGrid2d ( GLint un , GLdouble u1 , GLdouble u2 , GLint vn , GLdouble v1 , GLdouble v2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMapGrid2f ( int un, float u1, @@ -4375,46 +4375,46 @@ public final String getClassVersion ( ) float v1, float v2 ) ; - -/** - * Original Function-Prototype : - *extern void glMapGrid2f ( GLint un , GLfloat u1 , GLfloat u2 , GLint vn , GLfloat v1 , GLfloat v2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalPoint1 ( int i ) ; - -/** - * Original Function-Prototype : - *extern void glEvalPoint1 ( GLint i ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalPoint2 ( int i, int j ) ; - -/** - * Original Function-Prototype : - *extern void glEvalPoint2 ( GLint i , GLint j ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalMesh1 ( int mode, int i1, int i2 ) ; - -/** - * Original Function-Prototype : - *extern void glEvalMesh1 ( GLenum mode , GLint i1 , GLint i2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalMesh2 ( int mode, int i1, @@ -4422,128 +4422,128 @@ public final String getClassVersion ( ) int j1, int j2 ) ; - -/** - * Original Function-Prototype : - *extern void glEvalMesh2 ( GLenum mode , GLint i1 , GLint i2 , GLint j1 , GLint j2 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogf ( int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glFogf ( GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogi ( int pname, int param ) ; - -/** - * Original Function-Prototype : - *extern void glFogi ( GLenum pname , GLint param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogfv ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glFogfv ( GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogiv ( int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glFogiv ( GLenum pname , const GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFeedbackBuffer ( int size, int type, float[] buffer ) ; - -/** - * Original Function-Prototype : - *extern void glFeedbackBuffer ( GLsizei size , GLenum type , GLfloat * buffer ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPassThrough ( float token ) ; - -/** - * Original Function-Prototype : - *extern void glPassThrough ( GLfloat token ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSelectBuffer ( int size, int[] buffer ) ; - -/** - * Original Function-Prototype : - *extern void glSelectBuffer ( GLsizei size , GLuint * buffer ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glInitNames ( ) ; - -/** - * Original Function-Prototype : - *extern void glInitNames ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadName ( int name ) ; - -/** - * Original Function-Prototype : - *extern void glLoadName ( GLuint name ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPushName ( int name ) ; - -/** - * Original Function-Prototype : - *extern void glPushName ( GLuint name ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPopName ( ) ; - -/** - * Original Function-Prototype : - *extern void glPopName ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDrawRangeElements ( int mode, int start, @@ -4600,13 +4600,13 @@ public final String getClassVersion ( ) int type, long[] indices ) ; - -/** - * Original Function-Prototype : - *extern void glDrawRangeElements ( GLenum mode , GLuint start , GLuint end , GLsizei count , GLenum type , const GLvoid * indices ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexImage3D ( int target, int level, @@ -4691,13 +4691,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - *extern void glTexImage3D ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexSubImage3D ( int target, int level, @@ -4789,13 +4789,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - *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 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexSubImage3D ( int target, int level, @@ -4807,13 +4807,13 @@ public final String getClassVersion ( ) int width, int height ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexSubImage3D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorTable ( int target, int internalformat, @@ -4870,13 +4870,13 @@ public final String getClassVersion ( ) int type, long[] table ) ; - -/** - * Original Function-Prototype : - *extern void glColorTable ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorSubTable ( int target, int start, @@ -4933,37 +4933,37 @@ public final String getClassVersion ( ) int type, long[] data ) ; - -/** - * Original Function-Prototype : - *extern void glColorSubTable ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorTableParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glColorTableParameteriv ( GLenum target , GLenum pname , const GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorTableParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glColorTableParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyColorSubTable ( int target, int start, @@ -4971,13 +4971,13 @@ public final String getClassVersion ( ) int y, int width ) ; - -/** - * Original Function-Prototype : - *extern void glCopyColorSubTable ( GLenum target , GLsizei start , GLint x , GLint y , GLsizei width ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyColorTable ( int target, int internalformat, @@ -4985,13 +4985,13 @@ public final String getClassVersion ( ) int y, int width ) ; - -/** - * Original Function-Prototype : - *extern void glCopyColorTable ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetColorTable ( int target, int format, @@ -5034,83 +5034,83 @@ public final String getClassVersion ( ) int type, long[] table ) ; - -/** - * Original Function-Prototype : - *extern void glGetColorTable ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetColorTableParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetColorTableParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetColorTableParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetColorTableParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBlendEquation ( int mode ) ; - -/** - * Original Function-Prototype : - *extern void glBlendEquation ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBlendColor ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - *extern void glBlendColor ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glHistogram ( int target, int width, int internalformat, boolean sink ) ; - -/** - * Original Function-Prototype : - *extern void glHistogram ( GLenum target , GLsizei width , GLenum internalformat , GLboolean sink ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glResetHistogram ( int target ) ; - -/** - * Original Function-Prototype : - *extern void glResetHistogram ( GLenum target ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetHistogram ( int target, boolean reset, @@ -5160,59 +5160,59 @@ public final String getClassVersion ( ) int type, long[] values ) ; - -/** - * Original Function-Prototype : - *extern void glGetHistogram ( GLenum target , GLboolean reset , GLenum format , GLenum type , GLvoid * values ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetHistogramParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetHistogramParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetHistogramParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetHistogramParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMinmax ( int target, int internalformat, boolean sink ) ; - -/** - * Original Function-Prototype : - *extern void glMinmax ( GLenum target , GLenum internalformat , GLboolean sink ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glResetMinmax ( int target ) ; - -/** - * Original Function-Prototype : - *extern void glResetMinmax ( GLenum target ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMinmax ( int target, boolean reset, @@ -5262,37 +5262,37 @@ public final String getClassVersion ( ) int types, long[] values ) ; - -/** - * Original Function-Prototype : - *extern void glGetMinmax ( GLenum target , GLboolean reset , GLenum format , GLenum types , GLvoid * values ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMinmaxParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetMinmaxParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMinmaxParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetMinmaxParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionFilter1D ( int target, int internalformat, @@ -5349,13 +5349,13 @@ public final String getClassVersion ( ) int type, long[] image ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionFilter1D ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * image ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionFilter2D ( int target, int internalformat, @@ -5419,61 +5419,61 @@ public final String getClassVersion ( ) int type, long[] image ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * image ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionParameterf ( int target, int pname, float params ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionParameterf ( GLenum target , GLenum pname , GLfloat params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionParameterfv ( GLenum target , GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionParameteri ( int target, int pname, int params ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionParameteri ( GLenum target , GLenum pname , GLint params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionParameteriv ( GLenum target , GLenum pname , const GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyConvolutionFilter1D ( int target, int internalformat, @@ -5481,13 +5481,13 @@ public final String getClassVersion ( ) int y, int width ) ; - -/** - * Original Function-Prototype : - *extern void glCopyConvolutionFilter1D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyConvolutionFilter2D ( int target, int internalformat, @@ -5496,13 +5496,13 @@ public final String getClassVersion ( ) int width, int height ) ; - -/** - * Original Function-Prototype : - *extern void glCopyConvolutionFilter2D ( GLenum target , GLenum internalformat , GLint x , GLint y , GLsizei width , GLsizei height ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetConvolutionFilter ( int target, int format, @@ -5545,37 +5545,37 @@ public final String getClassVersion ( ) int type, long[] image ) ; - -/** - * Original Function-Prototype : - *extern void glGetConvolutionFilter ( GLenum target , GLenum format , GLenum type , GLvoid * image ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetConvolutionParameterfv ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetConvolutionParameterfv ( GLenum target , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetConvolutionParameteriv ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetConvolutionParameteriv ( GLenum target , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSeparableFilter2D ( int target, int internalformat, @@ -5646,13 +5646,13 @@ public final String getClassVersion ( ) long[] row, long[] column ) ; - -/** - * Original Function-Prototype : - *extern void glSeparableFilter2D ( GLenum target , GLenum internalformat , GLsizei width , GLsizei height , GLenum format , GLenum type , const GLvoid * row , const GLvoid * column ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetSeparableFilter ( int target, int format, @@ -5709,33 +5709,33 @@ public final String getClassVersion ( ) long[] column, long[] span ) ; - -/** - * Original Function-Prototype : - *extern void glGetSeparableFilter ( GLenum target , GLenum format , GLenum type , GLvoid * row , GLvoid * column , GLvoid * span ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glActiveTexture ( int texture ) ; - -/** - * Original Function-Prototype : - *extern void glActiveTexture ( GLenum texture ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClientActiveTexture ( int texture ) ; - -/** - * Original Function-Prototype : - *extern void glClientActiveTexture ( GLenum texture ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexImage1D ( int target, int level, @@ -5799,13 +5799,13 @@ public final String getClassVersion ( ) int imageSize, long[] data ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexImage1D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLint border , GLsizei imageSize , const GLvoid * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexImage2D ( int target, int level, @@ -5876,13 +5876,13 @@ public final String getClassVersion ( ) int imageSize, long[] data ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexImage2D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLint border , GLsizei imageSize , const GLvoid * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexImage3D ( int target, int level, @@ -5960,13 +5960,13 @@ public final String getClassVersion ( ) int imageSize, long[] data ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexImage3D ( GLenum target , GLint level , GLenum internalformat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLsizei imageSize , const GLvoid * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexSubImage1D ( int target, int level, @@ -6030,13 +6030,13 @@ public final String getClassVersion ( ) int imageSize, long[] data ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexSubImage1D ( GLenum target , GLint level , GLint xoffset , GLsizei width , GLenum format , GLsizei imageSize , const GLvoid * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexSubImage2D ( int target, int level, @@ -6114,13 +6114,13 @@ public final String getClassVersion ( ) int imageSize, long[] data ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexSubImage2D ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLsizei width , GLsizei height , GLenum format , GLsizei imageSize , const GLvoid * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexSubImage3D ( int target, int level, @@ -6212,13 +6212,13 @@ public final String getClassVersion ( ) int imageSize, long[] data ) ; - -/** - * Original Function-Prototype : - *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 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetCompressedTexImage ( int target, int lod, @@ -6254,289 +6254,289 @@ public final String getClassVersion ( ) int lod, long[] img ) ; - -/** - * Original Function-Prototype : - *extern void glGetCompressedTexImage ( GLenum target , GLint lod , GLvoid * img ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1d ( int target, double s ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1d ( GLenum target , GLdouble s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1dv ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1dv ( GLenum target , const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1f ( int target, float s - ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1f ( GLenum target , GLfloat s ) ; - *- */ + *
+ ) ; + +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1fv ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1fv ( GLenum target , const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1i ( int target, int s ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1i ( GLenum target , GLint s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1iv ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1iv ( GLenum target , const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1s ( int target, short s ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1s ( GLenum target , GLshort s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1sv ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1sv ( GLenum target , const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2d ( int target, double s, double t ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2d ( GLenum target , GLdouble s , GLdouble t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2dv ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2dv ( GLenum target , const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2f ( int target, float s, float t ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2f ( GLenum target , GLfloat s , GLfloat t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2fv ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2fv ( GLenum target , const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2i ( int target, int s, int t ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2i ( GLenum target , GLint s , GLint t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2iv ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2iv ( GLenum target , const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2s ( int target, short s, short t ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2s ( GLenum target , GLshort s , GLshort t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2sv ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2sv ( GLenum target , const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3d ( int target, double s, double t, double r ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3d ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3dv ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3dv ( GLenum target , const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3f ( int target, float s, float t, float r ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3f ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3fv ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3fv ( GLenum target , const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3i ( int target, int s, int t, int r ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3i ( GLenum target , GLint s , GLint t , GLint r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3iv ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3iv ( GLenum target , const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3s ( int target, short s, short t, short r ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3s ( GLenum target , GLshort s , GLshort t , GLshort r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3sv ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3sv ( GLenum target , const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4d ( int target, double s, @@ -6544,24 +6544,24 @@ public final String getClassVersion ( ) double r, double q ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4d ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4dv ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4dv ( GLenum target , const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4f ( int target, float s, @@ -6569,24 +6569,24 @@ public final String getClassVersion ( ) float r, float q ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4f ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4fv ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4fv ( GLenum target , const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4i ( int target, int s, @@ -6594,24 +6594,24 @@ public final String getClassVersion ( ) int r, int q ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4i ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4iv ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4iv ( GLenum target , const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4s ( int target, short s, @@ -6619,381 +6619,381 @@ public final String getClassVersion ( ) short r, short q ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4s ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4sv ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4sv ( GLenum target , const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadTransposeMatrixd ( double[] m ) ; - -/** - * Original Function-Prototype : - *extern void glLoadTransposeMatrixd ( const GLdouble m [ 16 ] ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadTransposeMatrixf ( float[] m ) ; - -/** - * Original Function-Prototype : - *extern void glLoadTransposeMatrixf ( const GLfloat m [ 16 ] ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultTransposeMatrixd ( double[] m ) ; - -/** - * Original Function-Prototype : - *extern void glMultTransposeMatrixd ( const GLdouble m [ 16 ] ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultTransposeMatrixf ( float[] m ) ; - -/** - * Original Function-Prototype : - *extern void glMultTransposeMatrixf ( const GLfloat m [ 16 ] ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSampleCoverage ( float value, boolean invert ) ; - -/** - * Original Function-Prototype : - *extern void glSampleCoverage ( GLclampf value , GLboolean invert ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSamplePass ( int pass ) ; - -/** - * Original Function-Prototype : - *extern void glSamplePass ( GLenum pass ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glActiveTextureARB ( int texture ) ; - -/** - * Original Function-Prototype : - *extern void glActiveTextureARB ( GLenum texture ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClientActiveTextureARB ( int texture ) ; - -/** - * Original Function-Prototype : - *extern void glClientActiveTextureARB ( GLenum texture ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1dARB ( int target, double s ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1dARB ( GLenum target , GLdouble s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1dvARB ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1dvARB ( GLenum target , const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1fARB ( int target, float s ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1fARB ( GLenum target , GLfloat s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1fvARB ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1fvARB ( GLenum target , const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1iARB ( int target, int s ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1iARB ( GLenum target , GLint s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1ivARB ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1ivARB ( GLenum target , const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1sARB ( int target, short s ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1sARB ( GLenum target , GLshort s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord1svARB ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord1svARB ( GLenum target , const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2dARB ( int target, double s, double t ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2dARB ( GLenum target , GLdouble s , GLdouble t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2dvARB ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2dvARB ( GLenum target , const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2fARB ( int target, float s, float t ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2fARB ( GLenum target , GLfloat s , GLfloat t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2fvARB ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2fvARB ( GLenum target , const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2iARB ( int target, int s, int t ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2iARB ( GLenum target , GLint s , GLint t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2ivARB ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2ivARB ( GLenum target , const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2sARB ( int target, short s, short t ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2sARB ( GLenum target , GLshort s , GLshort t ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord2svARB ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord2svARB ( GLenum target , const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3dARB ( int target, double s, double t, double r ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3dvARB ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3dvARB ( GLenum target , const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3fARB ( int target, float s, float t, float r ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3fvARB ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3fvARB ( GLenum target , const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3iARB ( int target, int s, int t, int r ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3iARB ( GLenum target , GLint s , GLint t , GLint r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3ivARB ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3ivARB ( GLenum target , const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3sARB ( int target, short s, short t, short r ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3sARB ( GLenum target , GLshort s , GLshort t , GLshort r ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord3svARB ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord3svARB ( GLenum target , const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4dARB ( int target, double s, @@ -7001,24 +7001,24 @@ public final String getClassVersion ( ) double r, double q ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4dARB ( GLenum target , GLdouble s , GLdouble t , GLdouble r , GLdouble q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4dvARB ( int target, double[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4dvARB ( GLenum target , const GLdouble * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4fARB ( int target, float s, @@ -7026,24 +7026,24 @@ public final String getClassVersion ( ) float r, float q ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4fARB ( GLenum target , GLfloat s , GLfloat t , GLfloat r , GLfloat q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4fvARB ( int target, float[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4fvARB ( GLenum target , const GLfloat * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4iARB ( int target, int s, @@ -7051,24 +7051,24 @@ public final String getClassVersion ( ) int r, int q ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4iARB ( GLenum target , GLint s , GLint t , GLint r , GLint q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4ivARB ( int target, int[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4ivARB ( GLenum target , const GLint * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4sARB ( int target, short s, @@ -7076,48 +7076,48 @@ public final String getClassVersion ( ) short r, short q ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4sARB ( GLenum target , GLshort s , GLshort t , GLshort r , GLshort q ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiTexCoord4svARB ( int target, short[] v ) ; - -/** - * Original Function-Prototype : - *extern void glMultiTexCoord4svARB ( GLenum target , const GLshort * v ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBlendColorEXT ( float red, float green, float blue, float alpha ) ; - -/** - * Original Function-Prototype : - *extern void glBlendColorEXT ( GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPolygonOffsetEXT ( float factor, float bias ) ; - -/** - * Original Function-Prototype : - *extern void glPolygonOffsetEXT ( GLfloat factor , GLfloat bias ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexImage3DEXT ( int target, int level, @@ -7202,13 +7202,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - *extern void glTexImage3DEXT ( GLenum target , GLint level , GLenum internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLint border , GLenum format , GLenum type , const GLvoid * pixels ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexSubImage3DEXT ( int target, int level, @@ -7300,13 +7300,13 @@ public final String getClassVersion ( ) int type, long[] pixels ) ; - -/** - * Original Function-Prototype : - *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 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexSubImage3DEXT ( int target, int level, @@ -7318,80 +7318,80 @@ public final String getClassVersion ( ) int width, int height ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexSubImage3DEXT ( GLenum target , GLint level , GLint xoffset , GLint yoffset , GLint zoffset , GLint x , GLint y , GLsizei width , GLsizei height ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGenTexturesEXT ( int n, int[] textures ) ; - -/** - * Original Function-Prototype : - *extern void glGenTexturesEXT ( GLsizei n , GLuint * textures ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeleteTexturesEXT ( int n, int[] textures ) ; - -/** - * Original Function-Prototype : - *extern void glDeleteTexturesEXT ( GLsizei n , const GLuint * textures ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBindTextureEXT ( int target, int texture ) ; - -/** - * Original Function-Prototype : - *extern void glBindTextureEXT ( GLenum target , GLuint texture ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPrioritizeTexturesEXT ( int n, int[] textures, float[] priorities ) ; - -/** - * Original Function-Prototype : - *extern void glPrioritizeTexturesEXT ( GLsizei n , const GLuint * textures , const GLclampf * priorities ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glAreTexturesResidentEXT ( int n, int[] textures, boolean[] residences ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glAreTexturesResidentEXT ( GLsizei n , const GLuint * textures , GLboolean * residences ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glIsTextureEXT ( int texture ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glIsTextureEXT ( GLuint texture ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexPointerEXT ( int size, int type, @@ -7441,13 +7441,13 @@ public final String getClassVersion ( ) int count, long[] ptr ) ; - -/** - * Original Function-Prototype : - *extern void glVertexPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalPointerEXT ( int type, int stride, @@ -7490,13 +7490,13 @@ public final String getClassVersion ( ) int count, long[] ptr ) ; - -/** - * Original Function-Prototype : - *extern void glNormalPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorPointerEXT ( int size, int type, @@ -7546,13 +7546,13 @@ public final String getClassVersion ( ) int count, long[] ptr ) ; - -/** - * Original Function-Prototype : - *extern void glColorPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexPointerEXT ( int type, int stride, @@ -7595,13 +7595,13 @@ public final String getClassVersion ( ) int count, long[] ptr ) ; - -/** - * Original Function-Prototype : - *extern void glIndexPointerEXT ( GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoordPointerEXT ( int size, int type, @@ -7651,25 +7651,25 @@ public final String getClassVersion ( ) int count, long[] ptr ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoordPointerEXT ( GLint size , GLenum type , GLsizei stride , GLsizei count , const GLvoid * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEdgeFlagPointerEXT ( int stride, int count, boolean[] ptr ) ; - -/** - * Original Function-Prototype : - *extern void glEdgeFlagPointerEXT ( GLsizei stride , GLsizei count , const GLboolean * ptr ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetPointervEXT ( int pname, byte[][] params @@ -7698,89 +7698,89 @@ public final String getClassVersion ( ) int pname, long[][] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetPointervEXT ( GLenum pname , GLvoid * * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glArrayElementEXT ( int i ) ; - -/** - * Original Function-Prototype : - *extern void glArrayElementEXT ( GLint i ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDrawArraysEXT ( int mode, int first, int count ) ; - -/** - * Original Function-Prototype : - *extern void glDrawArraysEXT ( GLenum mode , GLint first , GLsizei count ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBlendEquationEXT ( int mode ) ; - -/** - * Original Function-Prototype : - *extern void glBlendEquationEXT ( GLenum mode ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPointParameterfEXT ( int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glPointParameterfEXT ( GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPointParameterfvEXT ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glPointParameterfvEXT ( GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPointParameterfSGIS ( int pname, float param ) ; - -/** - * Original Function-Prototype : - *extern void glPointParameterfSGIS ( GLenum pname , GLfloat param ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPointParameterfvSGIS ( int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glPointParameterfvSGIS ( GLenum pname , const GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorTableEXT ( int target, int internalformat, @@ -7837,13 +7837,13 @@ public final String getClassVersion ( ) int type, long[] table ) ; - -/** - * Original Function-Prototype : - *extern void glColorTableEXT ( GLenum target , GLenum internalformat , GLsizei width , GLenum format , GLenum type , const GLvoid * table ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorSubTableEXT ( int target, int start, @@ -7900,13 +7900,13 @@ public final String getClassVersion ( ) int type, long[] data ) ; - -/** - * Original Function-Prototype : - *extern void glColorSubTableEXT ( GLenum target , GLsizei start , GLsizei count , GLenum format , GLenum type , const GLvoid * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetColorTableEXT ( int target, int format, @@ -7949,108 +7949,108 @@ public final String getClassVersion ( ) int type, long[] table ) ; - -/** - * Original Function-Prototype : - *extern void glGetColorTableEXT ( GLenum target , GLenum format , GLenum type , GLvoid * table ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetColorTableParameterfvEXT ( int target, int pname, float[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetColorTableParameterfvEXT ( GLenum target , GLenum pname , GLfloat * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetColorTableParameterivEXT ( int target, int pname, int[] params ) ; - -/** - * Original Function-Prototype : - *extern void glGetColorTableParameterivEXT ( GLenum target , GLenum pname , GLint * params ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLockArraysEXT ( int first, int count ) ; - -/** - * Original Function-Prototype : - *extern void glLockArraysEXT ( GLint first , GLsizei count ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glUnlockArraysEXT ( ) ; - -/** - * Original Function-Prototype : - *extern void glUnlockArraysEXT ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadTransposeMatrixfARB ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glLoadTransposeMatrixfARB ( const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadTransposeMatrixdARB ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glLoadTransposeMatrixdARB ( const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultTransposeMatrixfARB ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glMultTransposeMatrixfARB ( const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultTransposeMatrixdARB ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glMultTransposeMatrixdARB ( const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSampleCoverageARB ( float arg0, boolean arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glSampleCoverageARB ( GLclampf , GLboolean ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexImage3DARB ( int arg0, int arg1, @@ -8128,13 +8128,13 @@ public final String getClassVersion ( ) int arg7, long[] arg8 ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexImage3DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexImage2DARB ( int arg0, int arg1, @@ -8205,13 +8205,13 @@ public final String getClassVersion ( ) int arg6, long[] arg7 ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexImage2DARB ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLint , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexImage1DARB ( int arg0, int arg1, @@ -8275,13 +8275,13 @@ public final String getClassVersion ( ) int arg5, long[] arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexImage1DARB ( GLenum , GLint , GLenum , GLsizei , GLint , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexSubImage3DARB ( int arg0, int arg1, @@ -8373,13 +8373,13 @@ public final String getClassVersion ( ) int arg9, long[] arg10 ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexSubImage3DARB ( GLenum , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexSubImage2DARB ( int arg0, int arg1, @@ -8457,13 +8457,13 @@ public final String getClassVersion ( ) int arg7, long[] arg8 ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexSubImage2DARB ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCompressedTexSubImage1DARB ( int arg0, int arg1, @@ -8527,13 +8527,13 @@ public final String getClassVersion ( ) int arg5, long[] arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glCompressedTexSubImage1DARB ( GLenum , GLint , GLint , GLsizei , GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetCompressedTexImageARB ( int arg0, int arg1, @@ -8569,101 +8569,101 @@ public final String getClassVersion ( ) int arg1, long[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetCompressedTexImageARB ( GLenum , GLint , void * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWeightbvARB ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glWeightbvARB ( GLint , const GLbyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWeightsvARB ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glWeightsvARB ( GLint , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWeightivARB ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glWeightivARB ( GLint , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWeightfvARB ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glWeightfvARB ( GLint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWeightdvARB ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glWeightdvARB ( GLint , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWeightubvARB ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glWeightubvARB ( GLint , const GLubyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWeightusvARB ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glWeightusvARB ( GLint , const GLushort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWeightuivARB ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glWeightuivARB ( GLint , const GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWeightPointerARB ( int arg0, int arg1, @@ -8706,66 +8706,66 @@ public final String getClassVersion ( ) int arg2, long[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glWeightPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexBlendARB ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexBlendARB ( GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCurrentPaletteMatrixARB ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glCurrentPaletteMatrixARB ( GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMatrixIndexubvARB ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glMatrixIndexubvARB ( GLint , const GLubyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMatrixIndexusvARB ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glMatrixIndexusvARB ( GLint , const GLushort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMatrixIndexuivARB ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glMatrixIndexuivARB ( GLint , const GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMatrixIndexPointerARB ( int arg0, int arg1, @@ -8808,38 +8808,38 @@ public final String getClassVersion ( ) int arg2, long[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glMatrixIndexPointerARB ( GLint , GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexFilterFuncSGIS ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexFilterFuncSGIS ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexFilterFuncSGIS ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glTexFilterFuncSGIS ( GLenum , GLenum , GLsizei , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexSubImage1DEXT ( int arg0, int arg1, @@ -8903,13 +8903,13 @@ public final String getClassVersion ( ) int arg5, long[] arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glTexSubImage1DEXT ( GLenum , GLint , GLint , GLsizei , GLenum , GLenum , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexSubImage2DEXT ( int arg0, int arg1, @@ -8987,13 +8987,13 @@ public final String getClassVersion ( ) int arg7, long[] arg8 ) ; - -/** - * Original Function-Prototype : - *extern void glTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexImage1DEXT ( int arg0, int arg1, @@ -9003,13 +9003,13 @@ public final String getClassVersion ( ) int arg5, int arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexImage1DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexImage2DEXT ( int arg0, int arg1, @@ -9020,13 +9020,13 @@ public final String getClassVersion ( ) int arg6, int arg7 ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexImage2DEXT ( GLenum , GLint , GLenum , GLint , GLint , GLsizei , GLsizei , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexSubImage1DEXT ( int arg0, int arg1, @@ -9035,13 +9035,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexSubImage1DEXT ( GLenum , GLint , GLint , GLint , GLint , GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyTexSubImage2DEXT ( int arg0, int arg1, @@ -9052,13 +9052,13 @@ public final String getClassVersion ( ) int arg6, int arg7 ) ; - -/** - * Original Function-Prototype : - *extern void glCopyTexSubImage2DEXT ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetHistogramEXT ( int arg0, boolean arg1, @@ -9108,37 +9108,37 @@ public final String getClassVersion ( ) int arg3, long[] arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glGetHistogramEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetHistogramParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetHistogramParameterfvEXT ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetHistogramParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetHistogramParameterivEXT ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMinmaxEXT ( int arg0, boolean arg1, @@ -9188,82 +9188,82 @@ public final String getClassVersion ( ) int arg3, long[] arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glGetMinmaxEXT ( GLenum , GLboolean , GLenum , GLenum , GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMinmaxParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetMinmaxParameterfvEXT ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMinmaxParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetMinmaxParameterivEXT ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glHistogramEXT ( int arg0, int arg1, int arg2, boolean arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glHistogramEXT ( GLenum , GLsizei , GLenum , GLboolean ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMinmaxEXT ( int arg0, int arg1, boolean arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glMinmaxEXT ( GLenum , GLenum , GLboolean ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glResetHistogramEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glResetHistogramEXT ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glResetMinmaxEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glResetMinmaxEXT ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionFilter1DEXT ( int arg0, int arg1, @@ -9320,13 +9320,13 @@ public final String getClassVersion ( ) int arg4, long[] arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionFilter1DEXT ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionFilter2DEXT ( int arg0, int arg1, @@ -9390,61 +9390,61 @@ public final String getClassVersion ( ) int arg5, long[] arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionParameterfEXT ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionParameterfEXT ( GLenum , GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionParameteriEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionParameteriEXT ( GLenum , GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glConvolutionParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glConvolutionParameterivEXT ( GLenum , GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyConvolutionFilter1DEXT ( int arg0, int arg1, @@ -9452,13 +9452,13 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glCopyConvolutionFilter1DEXT ( GLenum , GLenum , GLint , GLint , GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyConvolutionFilter2DEXT ( int arg0, int arg1, @@ -9467,13 +9467,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glCopyConvolutionFilter2DEXT ( GLenum , GLenum , GLint , GLint , GLsizei , GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetConvolutionFilterEXT ( int arg0, int arg1, @@ -9516,37 +9516,37 @@ public final String getClassVersion ( ) int arg2, long[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glGetConvolutionFilterEXT ( GLenum , GLenum , GLenum , GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetConvolutionParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetConvolutionParameterfvEXT ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetConvolutionParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetConvolutionParameterivEXT ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetSeparableFilterEXT ( int arg0, int arg1, @@ -9603,13 +9603,13 @@ public final String getClassVersion ( ) long[] arg4, long[] arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glGetSeparableFilterEXT ( GLenum , GLenum , GLenum , GLvoid * , GLvoid * , GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSeparableFilter2DEXT ( int arg0, int arg1, @@ -9680,13 +9680,13 @@ public final String getClassVersion ( ) long[] arg6, long[] arg7 ) ; - -/** - * Original Function-Prototype : - *extern void glSeparableFilter2DEXT ( GLenum , GLenum , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorTableSGI ( int arg0, int arg1, @@ -9743,37 +9743,37 @@ public final String getClassVersion ( ) int arg4, long[] arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glColorTableSGI ( GLenum , GLenum , GLsizei , GLenum , GLenum , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorTableParameterfvSGI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glColorTableParameterfvSGI ( GLenum , GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorTableParameterivSGI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glColorTableParameterivSGI ( GLenum , GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyColorTableSGI ( int arg0, int arg1, @@ -9781,13 +9781,13 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glCopyColorTableSGI ( GLenum , GLenum , GLint , GLint , GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetColorTableSGI ( int arg0, int arg1, @@ -9830,113 +9830,113 @@ public final String getClassVersion ( ) int arg2, long[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glGetColorTableSGI ( GLenum , GLenum , GLenum , GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetColorTableParameterfvSGI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetColorTableParameterfvSGI ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetColorTableParameterivSGI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetColorTableParameterivSGI ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTexGenSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTexGenSGIX ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTexGenParameteriSGIS ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTexGenParameteriSGIS ( GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTexGenParameterivSGIS ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTexGenParameterivSGIS ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTexGenParameterfSGIS ( int arg0, float arg1 - ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTexGenParameterfSGIS ( GLenum , GLfloat ) ; - *- */ + *
+ ) ; + +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTexGenParameterfvSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTexGenParameterfvSGIS ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetPixelTexGenParameterivSGIS ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glGetPixelTexGenParameterivSGIS ( GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetPixelTexGenParameterfvSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glGetPixelTexGenParameterfvSGIS ( GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexImage4DSGIS ( int arg0, int arg1, @@ -10028,13 +10028,13 @@ public final String getClassVersion ( ) int arg9, long[] arg10 ) ; - -/** - * Original Function-Prototype : - *extern void glTexImage4DSGIS ( GLenum , GLint , GLenum , GLsizei , GLsizei , GLsizei , GLsizei , GLint , GLenum , GLenum , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexSubImage4DSGIS ( int arg0, int arg1, @@ -10140,224 +10140,224 @@ public final String getClassVersion ( ) int arg11, long[] arg12 ) ; - -/** - * Original Function-Prototype : - *extern void glTexSubImage4DSGIS ( GLenum , GLint , GLint , GLint , GLint , GLint , GLsizei , GLsizei , GLsizei , GLsizei , GLenum , GLenum , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDetailTexFuncSGIS ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glDetailTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetDetailTexFuncSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glGetDetailTexFuncSGIS ( GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSharpenTexFuncSGIS ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSharpenTexFuncSGIS ( GLenum , GLsizei , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetSharpenTexFuncSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glGetSharpenTexFuncSGIS ( GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSampleMaskSGIS ( float arg0, boolean arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glSampleMaskSGIS ( GLclampf , GLboolean ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSamplePatternSGIS ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSamplePatternSGIS ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSpriteParameterfSGIX ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glSpriteParameterfSGIX ( GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSpriteParameterfvSGIX ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glSpriteParameterfvSGIX ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSpriteParameteriSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glSpriteParameteriSGIX ( GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSpriteParameterivSGIX ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glSpriteParameterivSGIX ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPointParameterfARB ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glPointParameterfARB ( GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPointParameterfvARB ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glPointParameterfvARB ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glGetInstrumentsSGIX ( ) ; - -/** - * Original Function-Prototype : - *extern GLint glGetInstrumentsSGIX ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glInstrumentsBufferSGIX ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glInstrumentsBufferSGIX ( GLsizei , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glPollInstrumentsSGIX ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLint glPollInstrumentsSGIX ( GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReadInstrumentsSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glReadInstrumentsSGIX ( GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glStartInstrumentsSGIX ( ) ; - -/** - * Original Function-Prototype : - *extern void glStartInstrumentsSGIX ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glStopInstrumentsSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glStopInstrumentsSGIX ( GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFrameZoomSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glFrameZoomSGIX ( GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTagSampleBufferSGIX ( ) ; - -/** - * Original Function-Prototype : - *extern void glTagSampleBufferSGIX ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeformationMap3dSGIX ( int arg0, double arg1, @@ -10374,13 +10374,13 @@ public final String getClassVersion ( ) int arg12, double[] arg13 ) ; - -/** - * Original Function-Prototype : - *extern void glDeformationMap3dSGIX ( GLenum , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , GLdouble , GLdouble , GLint , GLint , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeformationMap3fSGIX ( int arg0, float arg1, @@ -10397,145 +10397,145 @@ public final String getClassVersion ( ) int arg12, float[] arg13 ) ; - -/** - * Original Function-Prototype : - *extern void glDeformationMap3fSGIX ( GLenum , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , GLfloat , GLfloat , GLint , GLint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeformSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glDeformSGIX ( GLbitfield ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadIdentityDeformationMapSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glLoadIdentityDeformationMapSGIX ( GLbitfield ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReferencePlaneSGIX ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glReferencePlaneSGIX ( const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFlushRasterSGIX ( ) ; - -/** - * Original Function-Prototype : - *extern void glFlushRasterSGIX ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogFuncSGIS ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glFogFuncSGIS ( GLsizei , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetFogFuncSGIS ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glGetFogFuncSGIS ( GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glImageTransformParameteriHP ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glImageTransformParameteriHP ( GLenum , GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glImageTransformParameterfHP ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glImageTransformParameterfHP ( GLenum , GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glImageTransformParameterivHP ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glImageTransformParameterivHP ( GLenum , GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glImageTransformParameterfvHP ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glImageTransformParameterfvHP ( GLenum , GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetImageTransformParameterivHP ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetImageTransformParameterivHP ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetImageTransformParameterfvHP ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetImageTransformParameterfvHP ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCopyColorSubTableEXT ( int arg0, int arg1, @@ -10543,350 +10543,350 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glCopyColorSubTableEXT ( GLenum , GLsizei , GLint , GLint , GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glHintPGI ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glHintPGI ( GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetListParameterfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetListParameterfvSGIX ( GLuint , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetListParameterivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetListParameterivSGIX ( GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glListParameterfSGIX ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glListParameterfSGIX ( GLuint , GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glListParameterfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glListParameterfvSGIX ( GLuint , GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glListParameteriSGIX ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glListParameteriSGIX ( GLuint , GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glListParameterivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glListParameterivSGIX ( GLuint , GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexMaterialEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glIndexMaterialEXT ( GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexFuncEXT ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glIndexFuncEXT ( GLenum , GLclampf ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCullParameterdvEXT ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glCullParameterdvEXT ( GLenum , GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCullParameterfvEXT ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glCullParameterfvEXT ( GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentColorMaterialSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentColorMaterialSGIX ( GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentLightfSGIX ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentLightfSGIX ( GLenum , GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentLightfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentLightfvSGIX ( GLenum , GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentLightiSGIX ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentLightiSGIX ( GLenum , GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentLightivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentLightivSGIX ( GLenum , GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentLightModelfSGIX ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentLightModelfSGIX ( GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentLightModelfvSGIX ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentLightModelfvSGIX ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentLightModeliSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentLightModeliSGIX ( GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentLightModelivSGIX ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentLightModelivSGIX ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentMaterialfSGIX ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentMaterialfSGIX ( GLenum , GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentMaterialfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentMaterialfvSGIX ( GLenum , GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentMaterialiSGIX ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentMaterialiSGIX ( GLenum , GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFragmentMaterialivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glFragmentMaterialivSGIX ( GLenum , GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetFragmentLightfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetFragmentLightfvSGIX ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetFragmentLightivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetFragmentLightivSGIX ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetFragmentMaterialfvSGIX ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetFragmentMaterialfvSGIX ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetFragmentMaterialivSGIX ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetFragmentMaterialivSGIX ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLightEnviSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glLightEnviSGIX ( GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDrawRangeElementsEXT ( int arg0, int arg1, @@ -10943,105 +10943,105 @@ public final String getClassVersion ( ) int arg4, long[] arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glDrawRangeElementsEXT ( GLenum , GLuint , GLuint , GLsizei , GLenum , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glApplyTextureEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glApplyTextureEXT ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTextureLightEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glTextureLightEXT ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTextureMaterialEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glTextureMaterialEXT ( GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glAsyncMarkerSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glAsyncMarkerSGIX ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glFinishAsyncSGIX ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLint glFinishAsyncSGIX ( GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glPollAsyncSGIX ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLint glPollAsyncSGIX ( GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glGenAsyncMarkersSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glGenAsyncMarkersSGIX ( GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeleteAsyncMarkersSGIX ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glDeleteAsyncMarkersSGIX ( GLuint , GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glIsAsyncMarkerSGIX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glIsAsyncMarkerSGIX ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexPointervINTEL ( int arg0, int arg1, @@ -11077,13 +11077,13 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexPointervINTEL ( GLint , GLenum , const GLvoid * * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalPointervINTEL ( int arg0, byte[][] arg1 @@ -11112,13 +11112,13 @@ public final String getClassVersion ( ) int arg0, long[][] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalPointervINTEL ( GLenum , const GLvoid * * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorPointervINTEL ( int arg0, int arg1, @@ -11154,13 +11154,13 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glColorPointervINTEL ( GLint , GLenum , const GLvoid * * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoordPointervINTEL ( int arg0, int arg1, @@ -11196,237 +11196,237 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoordPointervINTEL ( GLint , GLenum , const GLvoid * * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTransformParameteriEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTransformParameteriEXT ( GLenum , GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTransformParameterfEXT ( int arg0, int arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTransformParameterfEXT ( GLenum , GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTransformParameterivEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTransformParameterivEXT ( GLenum , GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPixelTransformParameterfvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glPixelTransformParameterfvEXT ( GLenum , GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3bEXT ( byte arg0, byte arg1, byte arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3bEXT ( GLbyte , GLbyte , GLbyte ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3bvEXT ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3bvEXT ( const GLbyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3dEXT ( double arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3dEXT ( GLdouble , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3dvEXT ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3dvEXT ( const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3fEXT ( float arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3fEXT ( GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3fvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3fvEXT ( const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3iEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3iEXT ( GLint , GLint , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3ivEXT ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3ivEXT ( const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3sEXT ( short arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3sEXT ( GLshort , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3svEXT ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3svEXT ( const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3ubEXT ( byte arg0, byte arg1, byte arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3ubEXT ( GLubyte , GLubyte , GLubyte ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3ubvEXT ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3ubvEXT ( const GLubyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3uiEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3uiEXT ( GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3uivEXT ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3uivEXT ( const GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3usEXT ( short arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3usEXT ( GLushort , GLushort , GLushort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColor3usvEXT ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColor3usvEXT ( const GLushort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColorPointerEXT ( int arg0, int arg1, @@ -11469,36 +11469,36 @@ public final String getClassVersion ( ) int arg2, long[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColorPointerEXT ( GLint , GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTextureNormalEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glTextureNormalEXT ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiDrawArraysEXT ( int arg0, int[] arg1, int[] arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glMultiDrawArraysEXT ( GLenum , GLint * , GLsizei * , GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiDrawElementsEXT ( int arg0, int[] arg1, @@ -11548,53 +11548,53 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glMultiDrawElementsEXT ( GLenum , const GLsizei * , GLenum , const GLvoid * * , GLsizei ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogCoordfEXT ( float arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glFogCoordfEXT ( GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogCoordfvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glFogCoordfvEXT ( const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogCoorddEXT ( double arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glFogCoorddEXT ( GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogCoorddvEXT ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glFogCoorddvEXT ( const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogCoordPointerEXT ( int arg0, int arg1, @@ -11630,233 +11630,233 @@ public final String getClassVersion ( ) int arg1, long[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glFogCoordPointerEXT ( GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3bEXT ( byte arg0, byte arg1, byte arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3bEXT ( GLbyte , GLbyte , GLbyte ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3bvEXT ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3bvEXT ( const GLbyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3dEXT ( double arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3dEXT ( GLdouble , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3dvEXT ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3dvEXT ( const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3fEXT ( float arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3fEXT ( GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3fvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3fvEXT ( const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3iEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3iEXT ( GLint , GLint , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3ivEXT ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3ivEXT ( const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3sEXT ( short arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3sEXT ( GLshort , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangent3svEXT ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glTangent3svEXT ( const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3bEXT ( byte arg0, byte arg1, byte arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3bEXT ( GLbyte , GLbyte , GLbyte ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3bvEXT ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3bvEXT ( const GLbyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3dEXT ( double arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3dEXT ( GLdouble , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3dvEXT ( double[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3dvEXT ( const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3fEXT ( float arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3fEXT ( GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3fvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3fvEXT ( const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3iEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3iEXT ( GLint , GLint , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3ivEXT ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3ivEXT ( const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3sEXT ( short arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3sEXT ( GLshort , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormal3svEXT ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormal3svEXT ( const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTangentPointerEXT ( int arg0, int arg1, @@ -11892,13 +11892,13 @@ public final String getClassVersion ( ) int arg1, long[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glTangentPointerEXT ( GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBinormalPointerEXT ( int arg0, int arg1, @@ -11934,162 +11934,162 @@ public final String getClassVersion ( ) int arg1, long[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glBinormalPointerEXT ( GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFinishTextureSUNX ( ) ; - -/** - * Original Function-Prototype : - *extern void glFinishTextureSUNX ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGlobalAlphaFactorbSUN ( byte arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glGlobalAlphaFactorbSUN ( GLbyte ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGlobalAlphaFactorsSUN ( short arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glGlobalAlphaFactorsSUN ( GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGlobalAlphaFactoriSUN ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glGlobalAlphaFactoriSUN ( GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGlobalAlphaFactorfSUN ( float arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glGlobalAlphaFactorfSUN ( GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGlobalAlphaFactordSUN ( double arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glGlobalAlphaFactordSUN ( GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGlobalAlphaFactorubSUN ( byte arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glGlobalAlphaFactorubSUN ( GLubyte ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGlobalAlphaFactorusSUN ( short arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glGlobalAlphaFactorusSUN ( GLushort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGlobalAlphaFactoruiSUN ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glGlobalAlphaFactoruiSUN ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiSUN ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiSUN ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeusSUN ( short arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeusSUN ( GLushort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeubSUN ( byte arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeubSUN ( GLubyte ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuivSUN ( int[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuivSUN ( const GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeusvSUN ( short[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeusvSUN ( const GLushort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeubvSUN ( byte[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeubvSUN ( const GLubyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodePointerSUN ( int arg0, int arg1, @@ -12125,13 +12125,13 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodePointerSUN ( GLenum , GLsizei , const GLvoid * * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4ubVertex2fSUN ( byte arg0, byte arg1, @@ -12140,24 +12140,24 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glColor4ubVertex2fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4ubVertex2fvSUN ( byte[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glColor4ubVertex2fvSUN ( const GLubyte * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4ubVertex3fSUN ( byte arg0, byte arg1, @@ -12167,24 +12167,24 @@ public final String getClassVersion ( ) float arg5, float arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glColor4ubVertex3fSUN ( GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4ubVertex3fvSUN ( byte[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glColor4ubVertex3fvSUN ( const GLubyte * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3fVertex3fSUN ( float arg0, float arg1, @@ -12193,24 +12193,24 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor3fVertex3fvSUN ( float[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3fVertex3fSUN ( float arg0, float arg1, @@ -12219,24 +12219,24 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormal3fVertex3fvSUN ( float[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4fNormal3fVertex3fSUN ( float arg0, float arg1, @@ -12249,25 +12249,25 @@ public final String getClassVersion ( ) float arg8, float arg9 ) ; - -/** - * Original Function-Prototype : - *extern void glColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColor4fNormal3fVertex3fvSUN ( float[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fVertex3fSUN ( float arg0, float arg1, @@ -12275,24 +12275,24 @@ public final String getClassVersion ( ) float arg3, float arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fVertex3fvSUN ( float[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fVertex3fvSUN ( const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4fVertex4fSUN ( float arg0, float arg1, @@ -12303,24 +12303,24 @@ public final String getClassVersion ( ) float arg6, float arg7 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4fVertex4fvSUN ( float[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4fVertex4fvSUN ( const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fColor4ubVertex3fSUN ( float arg0, float arg1, @@ -12332,25 +12332,25 @@ public final String getClassVersion ( ) float arg7, float arg8 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fColor4ubVertex3fSUN ( GLfloat , GLfloat , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fColor4ubVertex3fvSUN ( float[] arg0, byte[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fColor4ubVertex3fvSUN ( const GLfloat * , const GLubyte * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fColor3fVertex3fSUN ( float arg0, float arg1, @@ -12361,25 +12361,25 @@ public final String getClassVersion ( ) float arg6, float arg7 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fColor3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fColor3fVertex3fvSUN ( float[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fColor3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fNormal3fVertex3fSUN ( float arg0, float arg1, @@ -12390,25 +12390,25 @@ public final String getClassVersion ( ) float arg6, float arg7 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fNormal3fVertex3fvSUN ( float[] arg0, float[] arg1, float[] arg2 - ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ ) ; + +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fColor4fNormal3fVertex3fSUN ( float arg0, float arg1, @@ -12423,26 +12423,26 @@ public final String getClassVersion ( ) float arg10, float arg11 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fColor4fNormal3fVertex3fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord2fColor4fNormal3fVertex3fvSUN ( float[] arg0, float[] arg1, float[] arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4fColor4fNormal3fVertex4fSUN ( float arg0, float arg1, @@ -12460,50 +12460,50 @@ public final String getClassVersion ( ) float arg13, float arg14 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4fColor4fNormal3fVertex4fSUN ( GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoord4fColor4fNormal3fVertex4fvSUN ( float[] arg0, float[] arg1, float[] arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoord4fColor4fNormal3fVertex4fvSUN ( const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiVertex3fSUN ( int arg0, float arg1, float arg2, float arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiVertex3fvSUN ( int[] arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiVertex3fvSUN ( const GLenum * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiColor4ubVertex3fSUN ( int arg0, byte arg1, @@ -12514,25 +12514,25 @@ public final String getClassVersion ( ) float arg6, float arg7 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiColor4ubVertex3fSUN ( GLenum , GLubyte , GLubyte , GLubyte , GLubyte , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiColor4ubVertex3fvSUN ( int[] arg0, byte[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiColor4ubVertex3fvSUN ( const GLenum * , const GLubyte * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiColor3fVertex3fSUN ( int arg0, float arg1, @@ -12542,25 +12542,25 @@ public final String getClassVersion ( ) float arg5, float arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiColor3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiColor3fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiColor3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiNormal3fVertex3fSUN ( int arg0, float arg1, @@ -12570,25 +12570,25 @@ public final String getClassVersion ( ) float arg5, float arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiNormal3fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( int arg0, float arg1, @@ -12602,26 +12602,26 @@ public final String getClassVersion ( ) float arg9, float arg10 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiTexCoord2fVertex3fSUN ( int arg0, float arg1, @@ -12630,25 +12630,25 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiTexCoord2fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiTexCoord2fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiTexCoord2fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( int arg0, float arg1, @@ -12660,26 +12660,26 @@ public final String getClassVersion ( ) float arg7, float arg8 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( int[] arg0, float[] arg1, float[] arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( int arg0, float arg1, @@ -12695,13 +12695,13 @@ public final String getClassVersion ( ) float arg11, float arg12 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( int[] arg0, float[] arg1, @@ -12709,59 +12709,59 @@ public final String getClassVersion ( ) float[] arg3, float[] arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN ( const GLenum * , const GLfloat * , const GLfloat * , const GLfloat * , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBlendFuncSeparateEXT ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glBlendFuncSeparateEXT ( GLenum , GLenum , GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBlendFuncSeparateINGR ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glBlendFuncSeparateINGR ( GLenum , GLenum , GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexWeightfEXT ( float arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexWeightfEXT ( GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexWeightfvEXT ( float[] arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexWeightfvEXT ( const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexWeightPointerEXT ( int arg0, int arg1, @@ -12804,22 +12804,22 @@ public final String getClassVersion ( ) int arg2, long[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexWeightPointerEXT ( GLsizei , GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFlushVertexArrayRangeNV ( ) ; - -/** - * Original Function-Prototype : - *extern void glFlushVertexArrayRangeNV ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexArrayRangeNV ( int arg0, byte[] arg1 @@ -12848,57 +12848,57 @@ public final String getClassVersion ( ) int arg0, long[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexArrayRangeNV ( GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCombinerParameterfvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glCombinerParameterfvNV ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCombinerParameterfNV ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glCombinerParameterfNV ( GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCombinerParameterivNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glCombinerParameterivNV ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCombinerParameteriNV ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glCombinerParameteriNV ( GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCombinerInputNV ( int arg0, int arg1, @@ -12907,13 +12907,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glCombinerInputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCombinerOutputNV ( int arg0, int arg1, @@ -12926,26 +12926,26 @@ public final String getClassVersion ( ) boolean arg8, boolean arg9 ) ; - -/** - * Original Function-Prototype : - *extern void glCombinerOutputNV ( GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLenum , GLboolean , GLboolean , GLboolean ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFinalCombinerInputNV ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glFinalCombinerInputNV ( GLenum , GLenum , GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetCombinerInputParameterfvNV ( int arg0, int arg1, @@ -12953,13 +12953,13 @@ public final String getClassVersion ( ) int arg3, float[] arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glGetCombinerInputParameterfvNV ( GLenum , GLenum , GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetCombinerInputParameterivNV ( int arg0, int arg1, @@ -12967,63 +12967,63 @@ public final String getClassVersion ( ) int arg3, int[] arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glGetCombinerInputParameterivNV ( GLenum , GLenum , GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetCombinerOutputParameterfvNV ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glGetCombinerOutputParameterfvNV ( GLenum , GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetCombinerOutputParameterivNV ( int arg0, int arg1, int arg2, int[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glGetCombinerOutputParameterivNV ( GLenum , GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetFinalCombinerInputParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetFinalCombinerInputParameterfvNV ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetFinalCombinerInputParameterivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetFinalCombinerInputParameterivNV ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiModeDrawArraysIBM ( int arg0, int[] arg1, @@ -13031,13 +13031,13 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glMultiModeDrawArraysIBM ( GLenum , const GLint * , const GLsizei * , GLsizei , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMultiModeDrawElementsIBM ( int[] arg0, int[] arg1, @@ -13094,13 +13094,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glMultiModeDrawElementsIBM ( const GLenum * , const GLsizei * , GLenum , const GLvoid * * , GLsizei , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorPointerListIBM ( int arg0, int arg1, @@ -13150,13 +13150,13 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSecondaryColorPointerListIBM ( int arg0, int arg1, @@ -13206,25 +13206,25 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glSecondaryColorPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEdgeFlagPointerListIBM ( int arg0, boolean[][] arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glEdgeFlagPointerListIBM ( GLint , const GLboolean * * , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFogCoordPointerListIBM ( int arg0, int arg1, @@ -13267,13 +13267,13 @@ public final String getClassVersion ( ) long[][] arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glFogCoordPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIndexPointerListIBM ( int arg0, int arg1, @@ -13316,13 +13316,13 @@ public final String getClassVersion ( ) long[][] arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glIndexPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalPointerListIBM ( int arg0, int arg1, @@ -13365,13 +13365,13 @@ public final String getClassVersion ( ) long[][] arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalPointerListIBM ( GLenum , GLint , const GLvoid * * , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexCoordPointerListIBM ( int arg0, int arg1, @@ -13421,13 +13421,13 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glTexCoordPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexPointerListIBM ( int arg0, int arg1, @@ -13477,57 +13477,57 @@ public final String getClassVersion ( ) long[][] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexPointerListIBM ( GLint , GLenum , GLint , const GLvoid * * , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTbufferMask3DFX ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glTbufferMask3DFX ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSampleMaskEXT ( float arg0, boolean arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glSampleMaskEXT ( GLclampf , GLboolean ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSamplePatternEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glSamplePatternEXT ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTextureColorMaskSGIS ( boolean arg0, boolean arg1, boolean arg2, boolean arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glTextureColorMaskSGIS ( GLboolean , GLboolean , GLboolean , GLboolean ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glIglooInterfaceSGIX ( int arg0, byte[] arg1 @@ -13556,88 +13556,88 @@ public final String getClassVersion ( ) int arg0, long[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glIglooInterfaceSGIX ( GLenum , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGenFencesNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glGenFencesNV ( GLsizei , GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeleteFencesNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glDeleteFencesNV ( GLsizei , const GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSetFenceNV ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glSetFenceNV ( GLuint , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glTestFenceNV ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glTestFenceNV ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glFinishFenceNV ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glFinishFenceNV ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glIsFenceNV ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glIsFenceNV ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetFenceivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetFenceivNV ( GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMapControlPointsNV ( int arg0, int arg1, @@ -13715,37 +13715,37 @@ public final String getClassVersion ( ) boolean arg7, long[] arg8 ) ; - -/** - * Original Function-Prototype : - *extern void glMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLint , GLint , GLboolean , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMapParameterivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glMapParameterivNV ( GLenum , GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glMapParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glMapParameterfvNV ( GLenum , GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMapControlPointsNV ( int arg0, int arg1, @@ -13809,265 +13809,265 @@ public final String getClassVersion ( ) boolean arg5, long[] arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glGetMapControlPointsNV ( GLenum , GLuint , GLenum , GLsizei , GLsizei , GLboolean , GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMapParameterivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetMapParameterivNV ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMapParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetMapParameterfvNV ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMapAttribParameterivNV ( int arg0, int arg1, int arg2, int[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glGetMapAttribParameterivNV ( GLenum , GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetMapAttribParameterfvNV ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glGetMapAttribParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEvalMapsNV ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glEvalMapsNV ( GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glCombinerStageParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glCombinerStageParameterfvNV ( GLenum , GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetCombinerStageParameterfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetCombinerStageParameterfvNV ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBindProgramNV ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glBindProgramNV ( GLenum , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeleteProgramsNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glDeleteProgramsNV ( GLsizei , const GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glExecuteProgramNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glExecuteProgramNV ( GLenum , GLuint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGenProgramsNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glGenProgramsNV ( GLsizei , GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glAreProgramsResidentNV ( int arg0, int[] arg1, boolean[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glAreProgramsResidentNV ( GLsizei , const GLuint * , GLboolean * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glRequestResidentProgramsNV ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glRequestResidentProgramsNV ( GLsizei , const GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetProgramParameterfvNV ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glGetProgramParameterfvNV ( GLenum , GLuint , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetProgramParameterdvNV ( int arg0, int arg1, int arg2, double[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glGetProgramParameterdvNV ( GLenum , GLuint , GLenum , GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetProgramivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetProgramivNV ( GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetProgramStringNV ( int arg0, int arg1, byte[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetProgramStringNV ( GLuint , GLenum , GLubyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTrackMatrixivNV ( int arg0, int arg1, int arg2, int[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glGetTrackMatrixivNV ( GLenum , GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVertexAttribdvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVertexAttribdvNV ( GLuint , GLenum , GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVertexAttribfvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVertexAttribfvNV ( GLuint , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVertexAttribivNV ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVertexAttribivNV ( GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVertexAttribPointervNV ( int arg0, int arg1, @@ -14103,36 +14103,36 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVertexAttribPointervNV ( GLuint , GLenum , GLvoid * * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glIsProgramNV ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glIsProgramNV ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glLoadProgramNV ( int arg0, int arg1, int arg2, byte[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glLoadProgramNV ( GLenum , GLuint , GLsizei , const GLubyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glProgramParameter4fNV ( int arg0, int arg1, @@ -14141,13 +14141,13 @@ public final String getClassVersion ( ) float arg4, float arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glProgramParameter4fNV ( GLenum , GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glProgramParameter4dNV ( int arg0, int arg1, @@ -14156,76 +14156,76 @@ public final String getClassVersion ( ) double arg4, double arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glProgramParameter4dNV ( GLenum , GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glProgramParameter4dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glProgramParameter4dvNV ( GLenum , GLuint , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glProgramParameter4fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glProgramParameter4fvNV ( GLenum , GLuint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glProgramParameters4dvNV ( int arg0, int arg1, int arg2, double[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glProgramParameters4dvNV ( GLenum , GLuint , GLuint , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glProgramParameters4fvNV ( int arg0, int arg1, int arg2, float[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glProgramParameters4fvNV ( GLenum , GLuint , GLuint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTrackMatrixNV ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glTrackMatrixNV ( GLenum , GLuint , GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribPointerNV ( int arg0, int arg1, @@ -14275,121 +14275,121 @@ public final String getClassVersion ( ) int arg3, long[] arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribPointerNV ( GLuint , GLint , GLenum , GLsizei , const GLvoid * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib1sNV ( int arg0, short arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib1sNV ( GLuint , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib1fNV ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib1fNV ( GLuint , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib1dNV ( int arg0, double arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib1dNV ( GLuint , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib2sNV ( int arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib2sNV ( GLuint , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib2fNV ( int arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib2fNV ( GLuint , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib2dNV ( int arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib2dNV ( GLuint , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib3sNV ( int arg0, short arg1, short arg2, short arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib3sNV ( GLuint , GLshort , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib3fNV ( int arg0, float arg1, float arg2, float arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib3fNV ( GLuint , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib3dNV ( int arg0, double arg1, double arg2, double arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib3dNV ( GLuint , GLdouble , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib4sNV ( int arg0, short arg1, @@ -14397,13 +14397,13 @@ public final String getClassVersion ( ) short arg3, short arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib4sNV ( GLuint , GLshort , GLshort , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib4fNV ( int arg0, float arg1, @@ -14411,13 +14411,13 @@ public final String getClassVersion ( ) float arg3, float arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib4fNV ( GLuint , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib4dNV ( int arg0, double arg1, @@ -14425,13 +14425,13 @@ public final String getClassVersion ( ) double arg3, double arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib4dNV ( GLuint , GLdouble , GLdouble , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib4ubNV ( int arg0, byte arg1, @@ -14439,428 +14439,428 @@ public final String getClassVersion ( ) byte arg3, byte arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib4ubNV ( GLuint , GLubyte , GLubyte , GLubyte , GLubyte ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib1svNV ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib1svNV ( GLuint , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib1fvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib1fvNV ( GLuint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib1dvNV ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib1dvNV ( GLuint , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib2svNV ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib2svNV ( GLuint , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib2fvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib2fvNV ( GLuint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib2dvNV ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib2dvNV ( GLuint , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib3svNV ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib3svNV ( GLuint , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib3fvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib3fvNV ( GLuint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib3dvNV ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib3dvNV ( GLuint , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib4svNV ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib4svNV ( GLuint , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib4fvNV ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib4fvNV ( GLuint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib4dvNV ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib4dvNV ( GLuint , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttrib4ubvNV ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttrib4ubvNV ( GLuint , const GLubyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs1svNV ( int arg0, int arg1, short[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs1svNV ( GLuint , GLsizei , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs1fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs1fvNV ( GLuint , GLsizei , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs1dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs1dvNV ( GLuint , GLsizei , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs2svNV ( int arg0, int arg1, short[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs2svNV ( GLuint , GLsizei , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs2fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs2fvNV ( GLuint , GLsizei , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs2dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs2dvNV ( GLuint , GLsizei , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs3svNV ( int arg0, int arg1, short[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs3svNV ( GLuint , GLsizei , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs3fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs3fvNV ( GLuint , GLsizei , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs3dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs3dvNV ( GLuint , GLsizei , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs4svNV ( int arg0, int arg1, short[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs4svNV ( GLuint , GLsizei , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs4fvNV ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs4fvNV ( GLuint , GLsizei , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs4dvNV ( int arg0, int arg1, double[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs4dvNV ( GLuint , GLsizei , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexAttribs4ubvNV ( int arg0, int arg1, byte[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexAttribs4ubvNV ( GLuint , GLsizei , const GLubyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexBumpParameterivATI ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glTexBumpParameterivATI ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glTexBumpParameterfvATI ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glTexBumpParameterfvATI ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexBumpParameterivATI ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexBumpParameterivATI ( GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetTexBumpParameterfvATI ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glGetTexBumpParameterfvATI ( GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glGenFragmentShadersATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glGenFragmentShadersATI ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBindFragmentShaderATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glBindFragmentShaderATI ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeleteFragmentShaderATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glDeleteFragmentShaderATI ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBeginFragmentShaderATI ( ) ; - -/** - * Original Function-Prototype : - *extern void glBeginFragmentShaderATI ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEndFragmentShaderATI ( ) ; - -/** - * Original Function-Prototype : - *extern void glEndFragmentShaderATI ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPassTexCoordATI ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glPassTexCoordATI ( GLuint , GLuint , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSampleMapATI ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSampleMapATI ( GLuint , GLuint , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorFragmentOp1ATI ( int arg0, int arg1, @@ -14870,13 +14870,13 @@ public final String getClassVersion ( ) int arg5, int arg6 ) ; - -/** - * Original Function-Prototype : - *extern void glColorFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorFragmentOp2ATI ( int arg0, int arg1, @@ -14889,13 +14889,13 @@ public final String getClassVersion ( ) int arg8, int arg9 ) ; - -/** - * Original Function-Prototype : - *extern void glColorFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glColorFragmentOp3ATI ( int arg0, int arg1, @@ -14911,13 +14911,13 @@ public final String getClassVersion ( ) int arg11, int arg12 ) ; - -/** - * Original Function-Prototype : - *extern void glColorFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glAlphaFragmentOp1ATI ( int arg0, int arg1, @@ -14926,13 +14926,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glAlphaFragmentOp1ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glAlphaFragmentOp2ATI ( int arg0, int arg1, @@ -14944,13 +14944,13 @@ public final String getClassVersion ( ) int arg7, int arg8 ) ; - -/** - * Original Function-Prototype : - *extern void glAlphaFragmentOp2ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glAlphaFragmentOp3ATI ( int arg0, int arg1, @@ -14965,46 +14965,46 @@ public final String getClassVersion ( ) int arg10, int arg11 ) ; - -/** - * Original Function-Prototype : - *extern void glAlphaFragmentOp3ATI ( GLenum , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSetFragmentShaderConstantATI ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glSetFragmentShaderConstantATI ( GLuint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPNTrianglesiATI ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glPNTrianglesiATI ( GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glPNTrianglesfATI ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glPNTrianglesfATI ( GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glNewObjectBufferATI ( int arg0, byte[] arg1, @@ -15040,23 +15040,23 @@ public final String getClassVersion ( ) long[] arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glNewObjectBufferATI ( GLsizei , const GLvoid * , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glIsObjectBufferATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glIsObjectBufferATI ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glUpdateObjectBufferATI ( int arg0, int arg1, @@ -15106,47 +15106,47 @@ public final String getClassVersion ( ) long[] arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glUpdateObjectBufferATI ( GLuint , GLuint , GLsizei , const GLvoid * , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetObjectBufferfvATI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetObjectBufferfvATI ( GLuint , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetObjectBufferivATI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetObjectBufferivATI ( GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeleteObjectBufferATI ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glDeleteObjectBufferATI ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glArrayObjectATI ( int arg0, int arg1, @@ -15155,37 +15155,37 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glArrayObjectATI ( GLenum , GLint , GLenum , GLsizei , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetArrayObjectfvATI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetArrayObjectfvATI ( GLenum , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetArrayObjectivATI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetArrayObjectivATI ( GLenum , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantArrayObjectATI ( int arg0, int arg1, @@ -15193,110 +15193,110 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantArrayObjectATI ( GLuint , GLenum , GLsizei , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVariantArrayObjectfvATI ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVariantArrayObjectfvATI ( GLuint , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVariantArrayObjectivATI ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVariantArrayObjectivATI ( GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBeginVertexShaderEXT ( ) ; - -/** - * Original Function-Prototype : - *extern void glBeginVertexShaderEXT ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEndVertexShaderEXT ( ) ; - -/** - * Original Function-Prototype : - *extern void glEndVertexShaderEXT ( void ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glBindVertexShaderEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glBindVertexShaderEXT ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glGenVertexShadersEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glGenVertexShadersEXT ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDeleteVertexShaderEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glDeleteVertexShaderEXT ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glShaderOp1EXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glShaderOp1EXT ( GLenum , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glShaderOp2EXT ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glShaderOp2EXT ( GLenum , GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glShaderOp3EXT ( int arg0, int arg1, @@ -15304,13 +15304,13 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glShaderOp3EXT ( GLenum , GLuint , GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSwizzleEXT ( int arg0, int arg1, @@ -15319,13 +15319,13 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glSwizzleEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glWriteMaskEXT ( int arg0, int arg1, @@ -15334,50 +15334,50 @@ public final String getClassVersion ( ) int arg4, int arg5 ) ; - -/** - * Original Function-Prototype : - *extern void glWriteMaskEXT ( GLuint , GLuint , GLenum , GLenum , GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glInsertComponentEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glInsertComponentEXT ( GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glExtractComponentEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glExtractComponentEXT ( GLuint , GLuint , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glGenSymbolsEXT ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glGenSymbolsEXT ( GLenum , GLenum , GLenum , GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSetInvariantEXT ( int arg0, int arg1, @@ -15413,13 +15413,13 @@ public final String getClassVersion ( ) int arg1, long[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSetInvariantEXT ( GLuint , GLenum , const void * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glSetLocalConstantEXT ( int arg0, int arg1, @@ -15455,101 +15455,101 @@ public final String getClassVersion ( ) int arg1, long[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glSetLocalConstantEXT ( GLuint , GLenum , const void * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantbvEXT ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantbvEXT ( GLuint , const GLbyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantsvEXT ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantsvEXT ( GLuint , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantivEXT ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantivEXT ( GLuint , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantfvEXT ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantfvEXT ( GLuint , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantdvEXT ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantdvEXT ( GLuint , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantubvEXT ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantubvEXT ( GLuint , const GLubyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantusvEXT ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantusvEXT ( GLuint , const GLushort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantuivEXT ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantuivEXT ( GLuint , const GLuint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVariantPointerEXT ( int arg0, int arg1, @@ -15592,135 +15592,135 @@ public final String getClassVersion ( ) int arg2, long[] arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glVariantPointerEXT ( GLuint , GLenum , GLuint , const void * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glEnableVariantClientStateEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glEnableVariantClientStateEXT ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glDisableVariantClientStateEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glDisableVariantClientStateEXT ( GLuint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glBindLightParameterEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glBindLightParameterEXT ( GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glBindMaterialParameterEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glBindMaterialParameterEXT ( GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glBindTexGenParameterEXT ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glBindTexGenParameterEXT ( GLenum , GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glBindTextureUnitParameterEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glBindTextureUnitParameterEXT ( GLenum , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glBindParameterEXT ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern GLuint glBindParameterEXT ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glIsVariantEnabledEXT ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern GLboolean glIsVariantEnabledEXT ( GLuint , GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVariantBooleanvEXT ( int arg0, int arg1, boolean[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVariantIntegervEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVariantIntegervEXT ( GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVariantFloatvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetVariantPointervEXT ( int arg0, int arg1, @@ -15756,361 +15756,361 @@ public final String getClassVersion ( ) int arg1, long[][] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetVariantPointervEXT ( GLuint , GLenum , GLvoid * * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetInvariantBooleanvEXT ( int arg0, int arg1, boolean[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetInvariantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetInvariantIntegervEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetInvariantIntegervEXT ( GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetInvariantFloatvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetInvariantFloatvEXT ( GLuint , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetLocalConstantBooleanvEXT ( int arg0, int arg1, boolean[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetLocalConstantBooleanvEXT ( GLuint , GLenum , GLboolean * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetLocalConstantIntegervEXT ( int arg0, int arg1, int[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetLocalConstantIntegervEXT ( GLuint , GLenum , GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glGetLocalConstantFloatvEXT ( int arg0, int arg1, float[] arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glGetLocalConstantFloatvEXT ( GLuint , GLenum , GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream1s ( int arg0, short arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream1s ( GLenum , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream1sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream1sv ( GLenum , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream1i ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream1i ( GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream1iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream1iv ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream1f ( int arg0, float arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream1f ( GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream1fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream1fv ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream1d ( int arg0, double arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream1d ( GLenum , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream1dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream1dv ( GLenum , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream2s ( int arg0, short arg1, short arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream2s ( GLenum , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream2sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream2sv ( GLenum , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream2i ( int arg0, int arg1, int arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream2i ( GLenum , GLint , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream2iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream2iv ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream2f ( int arg0, float arg1, float arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream2f ( GLenum , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream2fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream2fv ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream2d ( int arg0, double arg1, double arg2 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream2d ( GLenum , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream2dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream2dv ( GLenum , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream3s ( int arg0, short arg1, short arg2, short arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream3s ( GLenum , GLshort , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream3sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream3sv ( GLenum , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream3i ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream3i ( GLenum , GLint , GLint , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream3iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream3iv ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream3f ( int arg0, float arg1, float arg2, float arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream3fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream3fv ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream3d ( int arg0, double arg1, double arg2, double arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream3dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream3dv ( GLenum , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream4s ( int arg0, short arg1, @@ -16118,24 +16118,24 @@ public final String getClassVersion ( ) short arg3, short arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream4s ( GLenum , GLshort , GLshort , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream4sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream4sv ( GLenum , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream4i ( int arg0, int arg1, @@ -16143,24 +16143,24 @@ public final String getClassVersion ( ) int arg3, int arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream4i ( GLenum , GLint , GLint , GLint , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream4iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream4iv ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream4f ( int arg0, float arg1, @@ -16168,24 +16168,24 @@ public final String getClassVersion ( ) float arg3, float arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream4f ( GLenum , GLfloat , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream4fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream4fv ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream4d ( int arg0, double arg1, @@ -16193,171 +16193,171 @@ public final String getClassVersion ( ) double arg3, double arg4 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream4d ( GLenum , GLdouble , GLdouble , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexStream4dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexStream4dv ( GLenum , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3b ( int arg0, byte arg1, byte arg2, byte arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3b ( GLenum , GLbyte , GLbyte , GLbyte ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3bv ( int arg0, byte[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3bv ( GLenum , const GLbyte * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3s ( int arg0, short arg1, short arg2, short arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3s ( GLenum , GLshort , GLshort , GLshort ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3sv ( int arg0, short[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3sv ( GLenum , const GLshort * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3i ( int arg0, int arg1, int arg2, int arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3i ( GLenum , GLint , GLint , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3iv ( int arg0, int[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3iv ( GLenum , const GLint * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3f ( int arg0, float arg1, float arg2, float arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3f ( GLenum , GLfloat , GLfloat , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3fv ( int arg0, float[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3fv ( GLenum , const GLfloat * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3d ( int arg0, double arg1, double arg2, double arg3 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3d ( GLenum , GLdouble , GLdouble , GLdouble ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glNormalStream3dv ( int arg0, double[] arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glNormalStream3dv ( GLenum , const GLdouble * ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glClientActiveVertexStream ( int arg0 ) ; - -/** - * Original Function-Prototype : - *extern void glClientActiveVertexStream ( GLenum ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glVertexBlendEnvi ( int arg0, int arg1 ) ; - -/** - * Original Function-Prototype : - *extern void glVertexBlendEnvi ( GLenum , GLint ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void glVertexBlendEnvf ( GLenum , GLfloat ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluBeginCurve ( long nurb ) ; - -/** - * Original Function-Prototype : - *extern void gluBeginCurve ( GLUnurbs * nurb ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluBeginPolygon ( long tess ) ; - -/** - * Original Function-Prototype : - *extern void gluBeginPolygon ( GLUtesselator * tess ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluBeginSurface ( long nurb ) ; - -/** - * Original Function-Prototype : - *extern void gluBeginSurface ( GLUnurbs * nurb ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluBeginTrim ( long nurb ) ; - -/** - * Original Function-Prototype : - *extern void gluBeginTrim ( GLUnurbs * nurb ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern GLint gluBuild1DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern GLint gluBuild1DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , const void * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern GLint gluBuild2DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern GLint gluBuild2DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , const void * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *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 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern GLint gluBuild3DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const void * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean gluCheckExtension ( byte[] extName, byte[] extString ) ; - -/** - * Original Function-Prototype : - *extern GLboolean gluCheckExtension ( const GLubyte * extName , const GLubyte * extString ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void gluCylinder ( GLUquadric * quad , GLdouble base , GLdouble top , GLdouble height , GLint slices , GLint stacks ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void gluDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluEndCurve ( long nurb ) ; - -/** - * Original Function-Prototype : - *extern void gluEndCurve ( GLUnurbs * nurb ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluEndPolygon ( long tess ) ; - -/** - * Original Function-Prototype : - *extern void gluEndPolygon ( GLUtesselator * tess ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluEndSurface ( long nurb ) ; - -/** - * Original Function-Prototype : - *extern void gluEndSurface ( GLUnurbs * nurb ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluEndTrim ( long nurb ) ; - -/** - * Original Function-Prototype : - *extern void gluEndTrim ( GLUnurbs * nurb ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluGetNurbsProperty ( long nurb, int property, float[] data ) ; - -/** - * Original Function-Prototype : - *extern void gluGetNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluGetTessProperty ( long tess, int which, double[] data ) ; - -/** - * Original Function-Prototype : - *extern void gluGetTessProperty ( GLUtesselator * tess , GLenum which , GLdouble * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluLoadSamplingMatrices ( long nurb, float[] model, float[] perspective, int[] view ) ; - -/** - * Original Function-Prototype : - *extern void gluLoadSamplingMatrices ( GLUnurbs * nurb , const GLfloat * model , const GLfloat * perspective , const GLint * view ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void gluLookAt ( GLdouble eyeX , GLdouble eyeY , GLdouble eyeZ , GLdouble centerX , GLdouble centerY , GLdouble centerZ , GLdouble upX , GLdouble upY , GLdouble upZ ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluNextContour ( long tess, int type ) ; - -/** - * Original Function-Prototype : - *extern void gluNextContour ( GLUtesselator * tess , GLenum type ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void gluNurbsCurve ( GLUnurbs * nurb , GLint knotCount , GLfloat * knots , GLint stride , GLfloat * control , GLint order , GLenum type ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluNurbsProperty ( long nurb, int property, float value ) ; - -/** - * Original Function-Prototype : - *extern void gluNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat value ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *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 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluOrtho2D ( double left, double right, double bottom, double top ) ; - -/** - * Original Function-Prototype : - *extern void gluOrtho2D ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void gluPartialDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops , GLdouble start , GLdouble sweep ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluPerspective ( double fovy, double aspect, double zNear, double zFar ) ; - -/** - * Original Function-Prototype : - *extern void gluPerspective ( GLdouble fovy , GLdouble aspect , GLdouble zNear , GLdouble zFar ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void gluPickMatrix ( GLdouble x , GLdouble y , GLdouble delX , GLdouble delY , GLint * viewport ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern GLint gluProject ( GLdouble objX , GLdouble objY , GLdouble objZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * winX , GLdouble * winY , GLdouble * winZ ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void gluPwlCurve ( GLUnurbs * nurb , GLint count , GLfloat * data , GLint stride , GLenum type ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluQuadricDrawStyle ( long quad, int draw ) ; - -/** - * Original Function-Prototype : - *extern void gluQuadricDrawStyle ( GLUquadric * quad , GLenum draw ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluQuadricNormals ( long quad, int normal ) ; - -/** - * Original Function-Prototype : - *extern void gluQuadricNormals ( GLUquadric * quad , GLenum normal ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluQuadricOrientation ( long quad, int orientation ) ; - -/** - * Original Function-Prototype : - *extern void gluQuadricOrientation ( GLUquadric * quad , GLenum orientation ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluQuadricTexture ( long quad, boolean texture ) ; - -/** - * Original Function-Prototype : - *extern void gluQuadricTexture ( GLUquadric * quad , GLboolean texture ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern GLint gluScaleImage ( GLenum format , GLsizei wIn , GLsizei hIn , GLenum typeIn , const void * dataIn , GLsizei wOut , GLsizei hOut , GLenum typeOut , GLvoid * dataOut ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluSphere ( long quad, double radius, int slices, int stacks ) ; - -/** - * Original Function-Prototype : - *extern void gluSphere ( GLUquadric * quad , GLdouble radius , GLint slices , GLint stacks ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluTessBeginContour ( long tess ) ; - -/** - * Original Function-Prototype : - *extern void gluTessBeginContour ( GLUtesselator * tess ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluTessEndContour ( long tess ) ; - -/** - * Original Function-Prototype : - *extern void gluTessEndContour ( GLUtesselator * tess ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluTessEndPolygon ( long tess ) ; - -/** - * Original Function-Prototype : - *extern void gluTessEndPolygon ( GLUtesselator * tess ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluTessNormal ( long tess, double valueX, double valueY, double valueZ ) ; - -/** - * Original Function-Prototype : - *extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluTessProperty ( long tess, int which, double data ) ; - -/** - * Original Function-Prototype : - *extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *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 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluBeginCurve ( long nurb ) ; - -/** - * Original Function-Prototype : - *extern void gluBeginCurve ( GLUnurbs * nurb ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluBeginPolygon ( long tess ) ; - -/** - * Original Function-Prototype : - *extern void gluBeginPolygon ( GLUtesselator * tess ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluBeginSurface ( long nurb ) ; - -/** - * Original Function-Prototype : - *extern void gluBeginSurface ( GLUnurbs * nurb ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluBeginTrim ( long nurb ) ; - -/** - * Original Function-Prototype : - *extern void gluBeginTrim ( GLUnurbs * nurb ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern GLint gluBuild1DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern GLint gluBuild1DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLenum format , GLenum type , const void * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern GLint gluBuild2DMipmapLevels ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , GLint level , GLint base , GLint max , const void * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern GLint gluBuild2DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLenum format , GLenum type , const void * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *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 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern GLint gluBuild3DMipmaps ( GLenum target , GLint internalFormat , GLsizei width , GLsizei height , GLsizei depth , GLenum format , GLenum type , const void * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean gluCheckExtension ( byte[] extName, byte[] extString ) ; - -/** - * Original Function-Prototype : - *extern GLboolean gluCheckExtension ( const GLubyte * extName , const GLubyte * extString ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void gluCylinder ( GLUquadric * quad , GLdouble base , GLdouble top , GLdouble height , GLint slices , GLint stacks ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void gluDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluEndCurve ( long nurb ) ; - -/** - * Original Function-Prototype : - *extern void gluEndCurve ( GLUnurbs * nurb ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluEndPolygon ( long tess ) ; - -/** - * Original Function-Prototype : - *extern void gluEndPolygon ( GLUtesselator * tess ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluEndSurface ( long nurb ) ; - -/** - * Original Function-Prototype : - *extern void gluEndSurface ( GLUnurbs * nurb ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluEndTrim ( long nurb ) ; - -/** - * Original Function-Prototype : - *extern void gluEndTrim ( GLUnurbs * nurb ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluGetNurbsProperty ( long nurb, int property, float[] data ) ; - -/** - * Original Function-Prototype : - *extern void gluGetNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluGetTessProperty ( long tess, int which, double[] data ) ; - -/** - * Original Function-Prototype : - *extern void gluGetTessProperty ( GLUtesselator * tess , GLenum which , GLdouble * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluLoadSamplingMatrices ( long nurb, float[] model, float[] perspective, int[] view ) ; - -/** - * Original Function-Prototype : - *extern void gluLoadSamplingMatrices ( GLUnurbs * nurb , const GLfloat * model , const GLfloat * perspective , const GLint * view ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void gluLookAt ( GLdouble eyeX , GLdouble eyeY , GLdouble eyeZ , GLdouble centerX , GLdouble centerY , GLdouble centerZ , GLdouble upX , GLdouble upY , GLdouble upZ ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluNextContour ( long tess, int type ) ; - -/** - * Original Function-Prototype : - *extern void gluNextContour ( GLUtesselator * tess , GLenum type ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void gluNurbsCurve ( GLUnurbs * nurb , GLint knotCount , GLfloat * knots , GLint stride , GLfloat * control , GLint order , GLenum type ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluNurbsProperty ( long nurb, int property, float value ) ; - -/** - * Original Function-Prototype : - *extern void gluNurbsProperty ( GLUnurbs * nurb , GLenum property , GLfloat value ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *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 ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluOrtho2D ( double left, double right, double bottom, double top ) ; - -/** - * Original Function-Prototype : - *extern void gluOrtho2D ( GLdouble left , GLdouble right , GLdouble bottom , GLdouble top ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void gluPartialDisk ( GLUquadric * quad , GLdouble inner , GLdouble outer , GLint slices , GLint loops , GLdouble start , GLdouble sweep ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluPerspective ( double fovy, double aspect, double zNear, double zFar ) ; - -/** - * Original Function-Prototype : - *extern void gluPerspective ( GLdouble fovy , GLdouble aspect , GLdouble zNear , GLdouble zFar ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void gluPickMatrix ( GLdouble x , GLdouble y , GLdouble delX , GLdouble delY , GLint * viewport ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern GLint gluProject ( GLdouble objX , GLdouble objY , GLdouble objZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * winX , GLdouble * winY , GLdouble * winZ ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void gluPwlCurve ( GLUnurbs * nurb , GLint count , GLfloat * data , GLint stride , GLenum type ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluQuadricDrawStyle ( long quad, int draw ) ; - -/** - * Original Function-Prototype : - *extern void gluQuadricDrawStyle ( GLUquadric * quad , GLenum draw ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluQuadricNormals ( long quad, int normal ) ; - -/** - * Original Function-Prototype : - *extern void gluQuadricNormals ( GLUquadric * quad , GLenum normal ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluQuadricOrientation ( long quad, int orientation ) ; - -/** - * Original Function-Prototype : - *extern void gluQuadricOrientation ( GLUquadric * quad , GLenum orientation ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluQuadricTexture ( long quad, boolean texture ) ; - -/** - * Original Function-Prototype : - *extern void gluQuadricTexture ( GLUquadric * quad , GLboolean texture ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern GLint gluScaleImage ( GLenum format , GLsizei wIn , GLsizei hIn , GLenum typeIn , const void * dataIn , GLsizei wOut , GLsizei hOut , GLenum typeOut , GLvoid * dataOut ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluSphere ( long quad, double radius, int slices, int stacks ) ; - -/** - * Original Function-Prototype : - *extern void gluSphere ( GLUquadric * quad , GLdouble radius , GLint slices , GLint stacks ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluTessBeginContour ( long tess ) ; - -/** - * Original Function-Prototype : - *extern void gluTessBeginContour ( GLUtesselator * tess ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluTessEndContour ( long tess ) ; - -/** - * Original Function-Prototype : - *extern void gluTessEndContour ( GLUtesselator * tess ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluTessEndPolygon ( long tess ) ; - -/** - * Original Function-Prototype : - *extern void gluTessEndPolygon ( GLUtesselator * tess ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluTessNormal ( long tess, double valueX, double valueY, double valueZ ) ; - -/** - * Original Function-Prototype : - *extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void gluTessProperty ( long tess, int which, double data ) ; - -/** - * Original Function-Prototype : - *extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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. + * + *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 ) ; - *- */ + *
+ * + * If you are interessting in further Documentation and/or + * the history of GL4Java follow the following link. + * + *
+ The GL4Java Documentation + *+ *
+ * + * 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. + * + *
+ * If using the subclassing model, you should override the following + * methods for your needs: + *
+ preInit - initialisation before creating GLContext + init - 1st initialisation after creating GLContext + doCleanup - OGL cleanup prior to context deletion + display - render your frame + reshape - to reshape (window resize), gljResize() is allready invoked ! + *+ * + * To check if you can use the GLContext and GL and GLU methods, + * use the function + *
+ cvsIsInit + *+ *
+ * IF you remove/release a GLOffScreenDrawable, + * e.g. you want to close/dispose it´s Window (which contains this GLOffScreenDrawable), + * you HAVE TO call: + * + *
+ cvsDispose + *+ * 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 ! + * + *
+ * We do offer the following Canvas methods. + * + *
+ repaint + *+ *
+ * + * @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 + * + *
+ * 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. + * + *
} + * If you use the subclassing model (as opposed to the + * GLEventListener model), your subclass will redefine this to + * perform its OpenGL drawing. + * + *
+ * 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. + * + *
+ * 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. + * + *
+ * 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. + * + *
+ * 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; @@ -97,6 +98,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 : - *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfInit ( ) ; - -/** - * Original Function-Prototype : - *void glfInit ( ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfClose ( ) ; - -/** - * Original Function-Prototype : - *void glfClose ( ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glfUnloadFont ( ) ; - -/** - * Original Function-Prototype : - *int glfUnloadFont ( ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glfUnloadBFont ( ) ; - -/** - * Original Function-Prototype : - *int glfUnloadBFont ( ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glfUnloadFontD ( int font_descriptor ) ; - -/** - * Original Function-Prototype : - *int glfUnloadFontD ( int font_descriptor ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glfUnloadBFontD ( int bmf_descriptor ) ; - -/** - * Original Function-Prototype : - *int glfUnloadBFontD ( int bmf_descriptor ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDrawWiredSymbol ( byte s ) ; - -/** - * Original Function-Prototype : - *void glfDrawWiredSymbol ( char s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDrawWiredString ( String s ) ; - -/** - * Original Function-Prototype : - *void glfDrawWiredString ( const char * s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDrawSolidSymbol ( byte s ) ; - -/** - * Original Function-Prototype : - *void glfDrawSolidSymbol ( char s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDrawSolidString ( String s ) ; - -/** - * Original Function-Prototype : - *void glfDrawSolidString ( const char * s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDraw3DWiredSymbol ( byte s ) ; - -/** - * Original Function-Prototype : - *void glfDraw3DWiredSymbol ( char s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDraw3DWiredString ( String s ) ; - -/** - * Original Function-Prototype : - *void glfDraw3DWiredString ( const char * s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDraw3DSolidSymbol ( byte s ) ; - -/** - * Original Function-Prototype : - *void glfDraw3DSolidSymbol ( char s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDraw3DSolidString ( String s ) ; - -/** - * Original Function-Prototype : - *void glfDraw3DSolidString ( const char * s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glfBeginBFont ( int Font_Descriptor ) ; - -/** - * Original Function-Prototype : - *int glfBeginBFont ( int Font_Descriptor ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfEndBFont ( ) ; - -/** - * Original Function-Prototype : - *void glfEndBFont ( ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDrawBSymbol ( byte s ) ; - -/** - * Original Function-Prototype : - *void glfDrawBSymbol ( char s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDrawBString ( String s ) ; - -/** - * Original Function-Prototype : - *void glfDrawBString ( const char * s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDrawBMaskSymbol ( byte s ) ; - -/** - * Original Function-Prototype : - *void glfDrawBMaskSymbol ( char s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDrawBMaskString ( String s ) ; - -/** - * Original Function-Prototype : - *void glfDrawBMaskString ( const char * s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDrawWiredSymbolF ( int font_descriptor, byte s ) ; - -/** - * Original Function-Prototype : - *void glfDrawWiredSymbolF ( int font_descriptor , char s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDrawWiredStringF ( int font_descriptor, String s ) ; - -/** - * Original Function-Prototype : - *void glfDrawWiredStringF ( int font_descriptor , const char * s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDrawSolidSymbolF ( int font_descriptor, byte s ) ; - -/** - * Original Function-Prototype : - *void glfDrawSolidSymbolF ( int font_descriptor , char s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDrawSolidStringF ( int font_descriptor, String s ) ; - -/** - * Original Function-Prototype : - *void glfDrawSolidStringF ( int font_descriptor , const char * s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDraw3DWiredSymbolF ( int font_descriptor, byte s ) ; - -/** - * Original Function-Prototype : - *void glfDraw3DWiredSymbolF ( int font_descriptor , char s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDraw3DWiredStringF ( int font_descriptor, String s ) ; - -/** - * Original Function-Prototype : - *void glfDraw3DWiredStringF ( int font_descriptor , const char * s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDraw3DSolidSymbolF ( int font_descriptor, byte s ) ; - -/** - * Original Function-Prototype : - *void glfDraw3DSolidSymbolF ( int font_descriptor , char s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDraw3DSolidStringF ( int font_descriptor, String s ) ; - -/** - * Original Function-Prototype : - *void glfDraw3DSolidStringF ( int font_descriptor , const char * s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *void glfGetStringBoundsF ( int fd , const char * s , float * minx , float * miny , float * maxx , float * maxy ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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 : - *void glfGetStringBounds ( const char * s , float * minx , float * miny , float * maxx , float * maxy ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfSetSymbolSpace ( float sp ) ; - -/** - * Original Function-Prototype : - *void glfSetSymbolSpace ( float sp ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native float glfGetSymbolSpace ( ) ; - -/** - * Original Function-Prototype : - *float glfGetSymbolSpace ( ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfSetSpaceSize ( float sp ) ; - -/** - * Original Function-Prototype : - *void glfSetSpaceSize ( float sp ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native float glfGetSpaceSize ( ) ; - -/** - * Original Function-Prototype : - *float glfGetSpaceSize ( ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfSetSymbolDepth ( float dpth ) ; - -/** - * Original Function-Prototype : - *void glfSetSymbolDepth ( float dpth ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native float glfGetSymbolDepth ( ) ; - -/** - * Original Function-Prototype : - *float glfGetSymbolDepth ( ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glfSetCurrentFont ( int Font_Descriptor ) ; - -/** - * Original Function-Prototype : - *int glfSetCurrentFont ( int Font_Descriptor ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glfSetCurrentBFont ( int Font_Descriptor ) ; - -/** - * Original Function-Prototype : - *int glfSetCurrentBFont ( int Font_Descriptor ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glfGetCurrentFont ( ) ; - -/** - * Original Function-Prototype : - *int glfGetCurrentFont ( ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glfGetCurrentBFont ( ) ; - -/** - * Original Function-Prototype : - *int glfGetCurrentBFont ( ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfSetAnchorPoint ( int anchp ) ; - -/** - * Original Function-Prototype : - *void glfSetAnchorPoint ( int anchp ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfSetContourColor ( float r, float g, float b, float a ) ; - -/** - * Original Function-Prototype : - *void glfSetContourColor ( float r , float g , float b , float a ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfEnable ( int what ) ; - -/** - * Original Function-Prototype : - *void glfEnable ( int what ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfDisable ( int what ) ; - -/** - * Original Function-Prototype : - *void glfDisable ( int what ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfSetConsoleParam ( int width, int height ) ; - -/** - * Original Function-Prototype : - *void glfSetConsoleParam ( int width , int height ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glfSetConsoleFont ( int Font_Descriptor ) ; - -/** - * Original Function-Prototype : - *int glfSetConsoleFont ( int Font_Descriptor ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfConsoleClear ( ) ; - -/** - * Original Function-Prototype : - *void glfConsoleClear ( ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfPrint ( String s, int lenght ) ; - -/** - * Original Function-Prototype : - *void glfPrint ( const char * s , int lenght ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfPrintString ( String s ) ; - -/** - * Original Function-Prototype : - *void glfPrintString ( const char * s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfPrintChar ( byte s ) ; - -/** - * Original Function-Prototype : - *void glfPrintChar ( char s ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfConsoleDraw ( ) ; - -/** - * Original Function-Prototype : - *void glfConsoleDraw ( ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfSetCursorBlinkRate ( int Rate ) ; - -/** - * Original Function-Prototype : - *void glfSetCursorBlinkRate ( int Rate ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfStringCentering ( boolean center ) ; - -/** - * Original Function-Prototype : - *void glfStringCentering ( GLboolean center ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glfGetStringCentering ( ) ; - -/** - * Original Function-Prototype : - *GLboolean glfGetStringCentering ( ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfBitmapStringCentering ( boolean center ) ; - -/** - * Original Function-Prototype : - *void glfBitmapStringCentering ( GLboolean center ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native boolean glfBitmapGetStringCentering ( ) ; - -/** - * Original Function-Prototype : - *GLboolean glfBitmapGetStringCentering ( ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfStringDirection ( int direction ) ; - -/** - * Original Function-Prototype : - *void glfStringDirection ( GLuint direction ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native int glfGetStringDirection ( ) ; - -/** - * Original Function-Prototype : - *GLuint glfGetStringDirection ( ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ public final native void glfSetRotateAngle ( float angle ) ; - -/** - * Original Function-Prototype : - *void glfSetRotateAngle ( float angle ) ; - *- */ + *
+ +/** + * Original Function-Prototype : + *+ */ 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. */ } diff --git a/makefile b/makefile index 9e2b4e2..627a6b7 100644 --- a/makefile +++ b/makefile @@ -35,6 +35,11 @@ # make doxygendoc : doxygendoc # # +# to create all demos invoke +# +# make javacalldemos +# +# # to put all together as an tar-gzip archive in the archive-dir, invoke: # # make archiv @@ -42,9 +47,9 @@ # # for cleanup (without archive and binpkg !!) invoke: # -# make clean : only temp-files (java, native) +# make clean : only temp-files (native) # make cleannative : only temp-files (native) -# make cleanall : all temp-,java-,and native-files +# make cleanall : all temp-,java-,class-,and native-files # # * --------------- # * @@ -99,13 +104,13 @@ CNATIVEDIR = CNativeCode LIBMAJOR = 2 LIBMINOR = 8 -LIBBUGFIX = 0 -RELEASE = 8 +LIBBUGFIX = 1 +RELEASE = 0 # # The demo release number # -DEMORELEASE = 8 +DEMORELEASE = 9 LIBBASENAME1 = GL4JavaJauGljJNI LIBNAME1 = lib$(LIBBASENAME1) @@ -316,6 +321,7 @@ FILES_13.java = $(PACKAGEDIR)/GL4JavaInitException.java \ $(PACKAGEDIR)/awt/GLCanvas.java \ $(PACKAGEDIR)/awt/GLAnimCanvas.java \ $(PACKAGEDIR)/awt/GLImageCanvas.java \ + $(PACKAGEDIR)/awt/GLOffScreenDrawable.java \ $(PACKAGEDIR)/applet/SimpleGLApplet1.java \ $(PACKAGEDIR)/applet/SimpleGLAnimApplet1.java \ $(PACKAGEDIR)/swing/GLJPanel.java \ @@ -341,7 +347,7 @@ FILES_13.java = $(PACKAGEDIR)/GL4JavaInitException.java \ $(PACKAGEDIR)/drawable/GLDrawable.java \ $(PACKAGEDIR)/drawable/GLDrawableFactory.java \ $(PACKAGEDIR)/drawable/DummyGLDrawableFactory.java \ - $(PACKAGEDIR)/drawable/SunJDK13GLDrawableFactory.java + $(PACKAGEDIR)/drawable/SunJDK13GLDrawableFactory.java FILES_14.java = $(PACKAGEDIR)/GLFunc14.java \ $(PACKAGEDIR)/GLUFunc14.java \ @@ -677,13 +683,6 @@ $(CNATIVEDIR)/GLUCallbackJNI.o: $(CNATIVEDIR)/jnitools.h \ # ###################################################################### -cleanup: $(CHEADERDIR) archive binpkg - rm -f errors - -cleanupw32: cleanup Win32VC6/libs Win32VC6/temp - rm -rvf Win32VC6/libs/* - rm -fv `find Win32VC6 -name \*.plg -o -name \*.idb -o -name \*.opt -o -name \*.ncb` - Win32VC6/libs: mkdir -p Win32VC6/libs @@ -700,7 +699,20 @@ binpkg: $(CHEADERDIR): mkdir $(CHEADERDIR) -# clean out the *.o files and machine generated files from javah +# +# Cleanup Section +# + +cleanall: clean + rm -f $(FILES.class) $(FILES_JDK13.class) $(FILES_MSW32.class) + for i in $$(find . -name \*.class) ; do \ + rm -f $$i ; \ + done + cd demos ; make clean + cd demos/natives/x11 ; make cleanall + +clean: cleannative cleanupw32 cleanhtmldoc cleantemp + cleannative: rm -f `find . -name \*~ -o -name \*.swp -o -name \*.bak -o -name \*.obj -o -name \*.o` \ $(FILES1.o) $(FILES2.o) \ @@ -712,29 +724,33 @@ cleannative: $(CNATIVEDIR)/winstuff.h cd demos/natives/x11 ; make clean -# clean out the *.o files and machine generated files from javah -clean: cleannative cleanupw32 cleanhtmldoc cleantemp +cleanupw32: cleanup Win32VC6/libs Win32VC6/temp + rm -rvf Win32VC6/libs/* + rm -fv `find Win32VC6 -name \*.plg -o -name \*.idb -o -name \*.opt -o -name \*.ncb` + +cleanup: $(CHEADERDIR) archive binpkg + rm -f errors cleantemp: - rm -f $(CHEADERDIR)/* errors gl4java/*~ CNativeCode/*~ \ - $(FILES.gen) - rm -f `find . -name \*.class` - rm -f `find . -name discrete.log` + rm -f $(CHEADERDIR)/* errors $(FILES.gen) + rm -f `find . -name *~` + rm -f `find . -iname errors` + rm -f `find . -iname *.log` + rm -f `find . -iname *.tmp` cd demos ; make clean cleanhtmldoc: - rm -rf doxygens/html + rm -rf docs/doxygens/html rm -rf docs/html rm -f docs/*.ps + rm -f docs/*.pdf -cleanall: clean cleanhtmldoc - rm -f $(FILES.class) $(FILES_JDK13.class) $(FILES_MSW32.class) - rm -f archive/GL4Java* - for i in $$(find . -name \*.class) ; do \ - rm -f $$i ; \ - done - cd demos ; make clean - cd demos/natives/x11 ; make cleanall +archivclean: pbinpkg cleannative cleanupw32 cleantemp + if [ ! -e archive ] ; then mkdir archive ; fi + +# +# Jar Section +# # ... Copy all *.class files to DEST_CLASSES_DIR classcpy: @@ -756,7 +772,11 @@ $(DEST_CLASSES_DIR)/gl4java.jar: $(FILES.class) makeJar: $(MK_GL4JAVA_JAR) -htmldoc: cleanhtmldoc javadoc latexdoc +# +# Document Section +# + +htmldoc: cleanhtmldoc javadoc doxygendoc latexdoc cp -Rf docs-src/images docs/html/. htmldocw32: latexdoc javadocw32 @@ -809,6 +829,10 @@ javadocw32: gl4java.jau.awt.macintosh \ 2>&1 | tee -a errors +# +# BINPKG Section +# + pbinpkg: if [ ! -e binpkg ] ; then mkdir binpkg ; fi @@ -845,9 +869,9 @@ java2binpkg: pbinpkg zip -9r $(THISDIR)/binpkg/gl4java$(LIBMAJOR).$(LIBMINOR).$(LIBBUGFIX).$(RELEASE)-glutfonts-classes.zip \ gl4java/utils/glut/fonts - rm -f binpkg/gl4java$(LIBMAJOR).$(LIBMINOR).$(LIBBUGFIX).$(RELEASE)-glffonts.zip + rm -f binpkg/gl4java$(LIBMAJOR).$(LIBMINOR).$(LIBBUGFIX).$(RELEASE)-glffonts-classes.zip cd $(DEST_CLASSES_DIR) ; \ - zip -9r $(THISDIR)/binpkg/gl4java$(LIBMAJOR).$(LIBMINOR).$(LIBBUGFIX).$(RELEASE)-glffonts.zip \ + zip -9r $(THISDIR)/binpkg/gl4java$(LIBMAJOR).$(LIBMINOR).$(LIBBUGFIX).$(RELEASE)-glffonts-classes.zip \ gl4java/utils/glf/fonts rm -f binpkg/gl4java$(LIBMAJOR).$(LIBMINOR).$(LIBBUGFIX).$(RELEASE)-INSTALLER.zip @@ -887,16 +911,23 @@ win2binpkg: pbinpkg java2binpkg cd Win32VC6/libs ; zip -9 ../../binpkg/libGL4Java$(LIBMAJOR).$(LIBMINOR).$(LIBBUGFIX).$(RELEASE)-$(WIN32TYPE)-tst.zip \ GL4JavaJauGljJNI13nf.dll GL4JavaJauGljJNI13tst.dll +# +# Demos Section +# + javacalldemos: - cd demos ; javac *.java - cd demos/GLLandScape ; javac *.java - cd demos/HodglimsNeHe ; javac *.java - cd demos/MiscDemos ; javac *.java - cd demos/RonsDemos ; javac *.java - cd demos/SwingDemos ; javac *.java + cd demos ; $(JAVAC_13) *.java + cd demos/GLFDemos ; $(JAVAC_13) *.java + cd demos/GLLandScape ; $(JAVAC_13) *.java + cd demos/HodglimsNeHe ; $(JAVAC_13) *.java + cd demos/MiscDemos ; make + cd demos/NVidia ; $(JAVAC_14) *.java + cd demos/RonsDemos ; $(JAVAC_13) *.java + cd demos/SwingDemos ; $(JAVAC_13) *.java -archivclean: pbinpkg cleannative cleanupw32 cleantemp - if [ ! -e archive ] ; then mkdir archive ; fi +# +# Archiv Section +# archivdemos: rm -f archive/GL4Java$(LIBMAJOR).$(LIBMINOR).$(LIBBUGFIX).$(RELEASE)-demosV$(DEMORELEASE).zip @@ -928,7 +959,10 @@ archivdoc: rm -f archive/GL4Java$(LIBMAJOR).$(LIBMINOR).$(LIBBUGFIX).$(RELEASE)-doc.zip cd ..; \ zip -9r GL4Java/archive/GL4Java$(LIBMAJOR).$(LIBMINOR).$(LIBBUGFIX).$(RELEASE)-doc.zip \ - GL4Java/docs GL4Java/doxygens GL4Java/*.txt + GL4Java/docs GL4Java/*.txt \ + GL4Java/demos/MiscDemos \ + GL4Java/demos/NVidia \ + GL4Java/demos/RonsDemos/*.java -archiv: archivdemos archivsrc archivdoc +archiv: archivdemos archivdoc archivsrc diff --git a/symbols.mak.linux-java2-xf86-ppc-32bit b/symbols.mak.linux-java2-xf86-ppc-32bit index e98c89e..ccca745 100644 --- a/symbols.mak.linux-java2-xf86-ppc-32bit +++ b/symbols.mak.linux-java2-xf86-ppc-32bit @@ -16,6 +16,8 @@ UNIXTYPE = Linux-glibc2-xf86-ppc # JDK_HOME must point to the highest JDK being used, # e.g. to JDK14_HOME, if using JDK14, otherwise JDK13_HOME # +# AT LEAST JDK13_HOME MUST BE DEFINED ! +# JDK13_HOME = $(shell dirname $$(which java))/.. #JDK14_HOME = JDK_HOME = $(JDK13_HOME) @@ -26,7 +28,7 @@ JAVAOSLIB = $(JDK_HOME)/jre/lib/ppc JAVADOC = $(JDK_HOME)/bin/javadoc JAVAH = $(JDK_HOME)/bin/javah -JAR = $(JDK_HOME)/bin/jar +JAR = $(JDK13_HOME)/bin/jar # If MSJAVAC is specified on Win32 platforms, it will be used to # compile window system-specific files for the Microsoft VM. In order @@ -52,10 +54,6 @@ JAR_DESTS = /usr/local/lib/jdk1.3.0-FCS-blackdown/jre/lib/ext CC = gcc MKLIB = mklibs/mkslib.linux MKEXP = echo -JAVAC = $(JDK_HOME)/bin/javac -classpath ".:$(THISDIR):$(THISDIR)/capsapi_classes.zip" -JAVADOC = $(JDK_HOME)/bin/javadoc -JAVAH = $(JDK_HOME)/bin/javah -JAR = $(JDK_HOME)/bin/jar OGLINCDIR = /usr/X11/include diff --git a/symbols.mak.linux-java2-xf86-x86-32bit b/symbols.mak.linux-java2-xf86-x86-32bit index 87fd319..61c151b 100644 --- a/symbols.mak.linux-java2-xf86-x86-32bit +++ b/symbols.mak.linux-java2-xf86-x86-32bit @@ -16,6 +16,8 @@ UNIXTYPE = Linux-glibc2-xf86-x86 # JDK_HOME must point to the highest JDK being used, # e.g. to JDK14_HOME, if using JDK14, otherwise JDK13_HOME # +# AT LEAST JDK13_HOME MUST BE DEFINED ! +# JDK13_HOME = /usr/local/lib/jdk1.3.1-FCS-blackdown JDK14_HOME = /usr/local/lib/jdk1.4.0-beta-sun JDK_HOME = $(JDK14_HOME) @@ -26,7 +28,7 @@ JAVAOSLIB = $(JDK_HOME)/jre/lib/i386 JAVADOC = $(JDK13_HOME)/bin/javadoc JAVAH = $(JDK_HOME)/bin/javah -JAR = $(JDK_HOME)/bin/jar +JAR = $(JDK13_HOME)/bin/jar # If MSJAVAC is specified on Win32 platforms, it will be used to # compile window system-specific files for the Microsoft VM. In order diff --git a/symbols.mak.win32-java2-32bit b/symbols.mak.win32-java2-32bit index e65d1d4..d275a4c 100644 --- a/symbols.mak.win32-java2-32bit +++ b/symbols.mak.win32-java2-32bit @@ -18,6 +18,8 @@ WIN32TYPE = Win32-x86 # JDK_HOME must point to the highest JDK being used, # e.g. to JDK14_HOME, if using JDK14, otherwise JDK13_HOME # +# AT LEAST JDK13_HOME MUST BE DEFINED ! +# JDK13_HOME = //D/jdk1.3.1 JDK14_HOME = //D/jdk1.4 JDK_HOME = $(JDK14_HOME) @@ -28,7 +30,7 @@ JAVAOSLIB = $(JDK_HOME)/jre/lib/i386 JAVADOC = $(JDK_HOME)/bin/javadoc JAVAH = $(JDK_HOME)/bin/javah -JAR = $(JDK_HOME)/bin/jar +JAR = $(JDK13_HOME)/bin/jar # If MSJAVAC is specified on Win32 platforms, it will be used to # compile window system-specific files for the Microsoft VM. In order @@ -49,16 +51,13 @@ MSJAVAC = //D/MSJVM/Bin/jvc -nomessage -x- -cp:p .\;$(THISDIR_w32)\;$(THISDIR_ JAVAC_13 = $(JDK13_HOME)/bin/javac -classpath ".;$(THISDIR);$(THISDIR)/capsapi_classes.zip" JAVAC_14 = $(JDK14_HOME)/bin/javac -classpath ".;$(THISDIR);$(THISDIR)/capsapi_classes.zip" -JAR_DESTS = //D/jdk1.3.1/jre/lib/ext \ - //D/jdk1.4/jre/lib/ext +JAR_DESTS = //D/jdk1.2.2/jre/lib/ext \ + //D/jdk1.3.1/jre/lib/ext \ + //D/jdk1.4/jre/lib/ext CC = gcc MKLIB = mklibs/mkslib.linux MKEXP = echo -JAVAC = $(JDK_HOME)/bin/javac -classpath ".;$(THISDIR_w32);$(THISDIR_w32)/CAPSAPI_CLASSES.ZIP" -JAVADOC = $(JDK_HOME)/bin/javadoc -JAVAH = $(JDK_HOME)/bin/javah -JAR = $(JDK_HOME)/bin/jar OGLINCDIR = /usr/local/include -- cgit v1.2.3void glfSetBRotateAngle ( float angle ) ; - *- */ + *