diff options
Diffstat (limited to 'gl4java')
-rw-r--r-- | gl4java/GLFunc14JauJNI.java | 2 | ||||
-rw-r--r-- | gl4java/GLFuncJauJNI.java | 2 | ||||
-rw-r--r-- | gl4java/GLFuncJauJNInf.java | 2 | ||||
-rw-r--r-- | gl4java/GLUFunc.java | 154 | ||||
-rw-r--r-- | gl4java/GLUFunc14.java | 179 | ||||
-rw-r--r-- | gl4java/GLUFunc14JauJNI.java | 179 | ||||
-rw-r--r-- | gl4java/GLUFuncJauJNI.java | 154 | ||||
-rw-r--r-- | gl4java/GLUFuncJauJNInf.java | 154 |
8 files changed, 142 insertions, 684 deletions
diff --git a/gl4java/GLFunc14JauJNI.java b/gl4java/GLFunc14JauJNI.java index f14d31b..db96592 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.1.0"; } +{ return "2.8.3.0"; } diff --git a/gl4java/GLFuncJauJNI.java b/gl4java/GLFuncJauJNI.java index 609663a..f396425 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.1.0"; } +{ return "2.8.3.0"; } diff --git a/gl4java/GLFuncJauJNInf.java b/gl4java/GLFuncJauJNInf.java index db0cb8c..c0431bf 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.1.0"; } +{ return "2.8.3.0"; } diff --git a/gl4java/GLUFunc.java b/gl4java/GLUFunc.java index d8a4adc..4fcb77b 100644 --- a/gl4java/GLUFunc.java +++ b/gl4java/GLUFunc.java @@ -132,6 +132,28 @@ public int gluUnProject(double winx, double[] obj); +public void gluTessBeginContour (long tess) ; +public void gluTessBeginPolygon (long tess, boolean[] data) ; +public void gluTessBeginPolygon (long tess, byte[] data) ; +public void gluTessBeginPolygon (long tess, short[] data) ; +public void gluTessBeginPolygon (long tess, int[] data) ; +public void gluTessBeginPolygon (long tess, long[] data) ; +public void gluTessBeginPolygon (long tess, float[] data) ; +public void gluTessBeginPolygon (long tess, double[] data) ; + +public void gluTessEndContour (long tess) ; +public void gluTessEndPolygon (long tess) ; +public void gluTessNormal (long tess, double valueX, double valueY, double valueZ) ; +public void gluTessProperty (long tess, int which, double data) ; + +public void gluTessVertex ( long tess, double[] location, boolean[] data ) ; +public void gluTessVertex ( long tess, double[] location, byte[] data ) ; +public void gluTessVertex ( long tess, double[] location, short[] data ) ; +public void gluTessVertex ( long tess, double[] location, int[] data ) ; +public void gluTessVertex ( long tess, double[] location, long[] data ) ; +public void gluTessVertex ( long tess, double[] location, float[] data ) ; +public void gluTessVertex ( long tess, double[] location, double[] data ) ; + /** * C2J Parser Version 3.0 * Jausoft - Sven Goethel Software Development @@ -1088,138 +1110,6 @@ public int gluUnProject(double winx, /** * Original Function-Prototype : * <pre> - extern void gluTessBeginContour ( GLUtesselator * tess ) ; - * </pre> - */ - public void gluTessBeginContour ( - long tess - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ; - * </pre> - */ - public void gluTessBeginPolygon ( - long tess, - byte[] data - ) ; - public void gluTessBeginPolygon ( - long tess, - short[] data - ) ; - public void gluTessBeginPolygon ( - long tess, - int[] data - ) ; - public void gluTessBeginPolygon ( - long tess, - float[] data - ) ; - public void gluTessBeginPolygon ( - long tess, - double[] data - ) ; - public void gluTessBeginPolygon ( - long tess, - boolean[] data - ) ; - public void gluTessBeginPolygon ( - long tess, - long[] data - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessEndContour ( GLUtesselator * tess ) ; - * </pre> - */ - public void gluTessEndContour ( - long tess - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessEndPolygon ( GLUtesselator * tess ) ; - * </pre> - */ - public void gluTessEndPolygon ( - long tess - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ; - * </pre> - */ - public void gluTessNormal ( - long tess, - double valueX, - double valueY, - double valueZ - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ; - * </pre> - */ - public void gluTessProperty ( - long tess, - int which, - double data - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ; - * </pre> - */ - public void gluTessVertex ( - long tess, - double[] location, - byte[] data - ) ; - public void gluTessVertex ( - long tess, - double[] location, - short[] data - ) ; - public void gluTessVertex ( - long tess, - double[] location, - int[] data - ) ; - public void gluTessVertex ( - long tess, - double[] location, - float[] data - ) ; - public void gluTessVertex ( - long tess, - double[] location, - double[] data - ) ; - public void gluTessVertex ( - long tess, - double[] location, - boolean[] data - ) ; - public void gluTessVertex ( - long tess, - double[] location, - long[] data - ) ; - -/** - * Original Function-Prototype : - * <pre> extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ; * </pre> */ diff --git a/gl4java/GLUFunc14.java b/gl4java/GLUFunc14.java index 7ef522c..2e81dec 100644 --- a/gl4java/GLUFunc14.java +++ b/gl4java/GLUFunc14.java @@ -23,6 +23,22 @@ public interface GLUFunc14 extends GLUFunc
{
+/**
+ * Original Function-Prototype :
+ * <pre>
+ extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ;
+ * </pre>
+ */
+public void gluTessBeginPolygon ( long tess, Buffer data) ;
+
+/**
+ * Original Function-Prototype :
+ * <pre>
+ extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ;
+ * </pre>
+ */
+public void gluTessVertex ( long tess, double[] location, Buffer data) ;
+
public String gluErrorString ( int errorCode ) ; @@ -134,6 +150,28 @@ public int gluUnProject(double winx, double[] obj); +public void gluTessBeginContour (long tess) ; +public void gluTessBeginPolygon (long tess, boolean[] data) ; +public void gluTessBeginPolygon (long tess, byte[] data) ; +public void gluTessBeginPolygon (long tess, short[] data) ; +public void gluTessBeginPolygon (long tess, int[] data) ; +public void gluTessBeginPolygon (long tess, long[] data) ; +public void gluTessBeginPolygon (long tess, float[] data) ; +public void gluTessBeginPolygon (long tess, double[] data) ; + +public void gluTessEndContour (long tess) ; +public void gluTessEndPolygon (long tess) ; +public void gluTessNormal (long tess, double valueX, double valueY, double valueZ) ; +public void gluTessProperty (long tess, int which, double data) ; + +public void gluTessVertex ( long tess, double[] location, boolean[] data ) ; +public void gluTessVertex ( long tess, double[] location, byte[] data ) ; +public void gluTessVertex ( long tess, double[] location, short[] data ) ; +public void gluTessVertex ( long tess, double[] location, int[] data ) ; +public void gluTessVertex ( long tess, double[] location, long[] data ) ; +public void gluTessVertex ( long tess, double[] location, float[] data ) ; +public void gluTessVertex ( long tess, double[] location, double[] data ) ; + /** * C2J Parser Version 3.0 * Jausoft - Sven Goethel Software Development @@ -1164,147 +1202,6 @@ public int gluUnProject(double winx, /** * Original Function-Prototype : * <pre> - extern void gluTessBeginContour ( GLUtesselator * tess ) ; - * </pre> - */ - public void gluTessBeginContour ( - long tess - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ; - * </pre> - */ - public void gluTessBeginPolygon ( - long tess, - byte[] data - ) ; - public void gluTessBeginPolygon ( - long tess, - short[] data - ) ; - public void gluTessBeginPolygon ( - long tess, - int[] data - ) ; - public void gluTessBeginPolygon ( - long tess, - float[] data - ) ; - public void gluTessBeginPolygon ( - long tess, - double[] data - ) ; - public void gluTessBeginPolygon ( - long tess, - boolean[] data - ) ; - public void gluTessBeginPolygon ( - long tess, - long[] data - ) ; - public void gluTessBeginPolygon ( - long tess, - Buffer data - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessEndContour ( GLUtesselator * tess ) ; - * </pre> - */ - public void gluTessEndContour ( - long tess - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessEndPolygon ( GLUtesselator * tess ) ; - * </pre> - */ - public void gluTessEndPolygon ( - long tess - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ; - * </pre> - */ - public void gluTessNormal ( - long tess, - double valueX, - double valueY, - double valueZ - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ; - * </pre> - */ - public void gluTessProperty ( - long tess, - int which, - double data - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ; - * </pre> - */ - public void gluTessVertex ( - long tess, - double[] location, - byte[] data - ) ; - public void gluTessVertex ( - long tess, - double[] location, - short[] data - ) ; - public void gluTessVertex ( - long tess, - double[] location, - int[] data - ) ; - public void gluTessVertex ( - long tess, - double[] location, - float[] data - ) ; - public void gluTessVertex ( - long tess, - double[] location, - double[] data - ) ; - public void gluTessVertex ( - long tess, - double[] location, - boolean[] data - ) ; - public void gluTessVertex ( - long tess, - double[] location, - long[] data - ) ; - public void gluTessVertex ( - long tess, - double[] location, - Buffer data - ) ; - -/** - * Original Function-Prototype : - * <pre> extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ; * </pre> */ diff --git a/gl4java/GLUFunc14JauJNI.java b/gl4java/GLUFunc14JauJNI.java index 09037c5..5d24f22 100644 --- a/gl4java/GLUFunc14JauJNI.java +++ b/gl4java/GLUFunc14JauJNI.java @@ -23,6 +23,22 @@ public class GLUFunc14JauJNI implements GLUFunc14
{
+/**
+ * Original Function-Prototype :
+ * <pre>
+ extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ;
+ * </pre>
+ */
+public final native void gluTessBeginPolygon ( long tess, Buffer data) ;
+
+/**
+ * Original Function-Prototype :
+ * <pre>
+ extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ;
+ * </pre>
+ */
+public final native void gluTessVertex ( long tess, double[] location, Buffer data) ;
+
public final native String gluErrorString ( int errorCode ) ; public final native String gluGetString ( int name ) ; @@ -34,7 +50,7 @@ public final String getClassVendor ( ) { return "Jausoft - Sven Goethel Software Development"; } public final String getClassVersion ( ) -{ return "2.8.1.0"; } +{ return "2.8.3.0"; } /** @@ -249,6 +265,26 @@ public final int gluUnProject(double winx, return r; } +public final native void gluTessBeginContour (long tess); +public final native void gluTessBeginPolygon (long tess, boolean[] data); +public final native void gluTessBeginPolygon (long tess, short[] data); +public final native void gluTessBeginPolygon (long tess, byte[] data); +public final native void gluTessBeginPolygon (long tess, int[] data); +public final native void gluTessBeginPolygon (long tess, long[] data); +public final native void gluTessBeginPolygon (long tess, float[] data); +public final native void gluTessBeginPolygon (long tess, double[] data); +public final native void gluTessEndContour (long tess); +public final native void gluTessEndPolygon (long tess); +public final native void gluTessNormal (long tess, double valueX, double valueY, double valueZ); +public final native void gluTessProperty (long tess, int which, double data); +public final native void gluTessVertex ( long tess, double[] location, boolean[] data ); +public final native void gluTessVertex ( long tess, double[] location, byte[] data ); +public final native void gluTessVertex ( long tess, double[] location, short[] data ); +public final native void gluTessVertex ( long tess, double[] location, int[] data ); +public final native void gluTessVertex ( long tess, double[] location, long[] data ); +public final native void gluTessVertex ( long tess, double[] location, float[] data ); +public final native void gluTessVertex ( long tess, double[] location, double[] data ); + /** * C2J Parser Version 3.0 * Jausoft - Sven Goethel Software Development @@ -1279,147 +1315,6 @@ public final int gluUnProject(double winx, /** * Original Function-Prototype : * <pre> - extern void gluTessBeginContour ( GLUtesselator * tess ) ; - * </pre> - */ - public final native void gluTessBeginContour ( - long tess - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ; - * </pre> - */ - public final native void gluTessBeginPolygon ( - long tess, - byte[] data - ) ; - public final native void gluTessBeginPolygon ( - long tess, - short[] data - ) ; - public final native void gluTessBeginPolygon ( - long tess, - int[] data - ) ; - public final native void gluTessBeginPolygon ( - long tess, - float[] data - ) ; - public final native void gluTessBeginPolygon ( - long tess, - double[] data - ) ; - public final native void gluTessBeginPolygon ( - long tess, - boolean[] data - ) ; - public final native void gluTessBeginPolygon ( - long tess, - long[] data - ) ; - public final native void gluTessBeginPolygon ( - long tess, - Buffer data - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessEndContour ( GLUtesselator * tess ) ; - * </pre> - */ - public final native void gluTessEndContour ( - long tess - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessEndPolygon ( GLUtesselator * tess ) ; - * </pre> - */ - public final native void gluTessEndPolygon ( - long tess - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ; - * </pre> - */ - public final native void gluTessNormal ( - long tess, - double valueX, - double valueY, - double valueZ - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ; - * </pre> - */ - public final native void gluTessProperty ( - long tess, - int which, - double data - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ; - * </pre> - */ - public final native void gluTessVertex ( - long tess, - double[] location, - byte[] data - ) ; - public final native void gluTessVertex ( - long tess, - double[] location, - short[] data - ) ; - public final native void gluTessVertex ( - long tess, - double[] location, - int[] data - ) ; - public final native void gluTessVertex ( - long tess, - double[] location, - float[] data - ) ; - public final native void gluTessVertex ( - long tess, - double[] location, - double[] data - ) ; - public final native void gluTessVertex ( - long tess, - double[] location, - boolean[] data - ) ; - public final native void gluTessVertex ( - long tess, - double[] location, - long[] data - ) ; - public final native void gluTessVertex ( - long tess, - double[] location, - Buffer data - ) ; - -/** - * Original Function-Prototype : - * <pre> extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ; * </pre> */ diff --git a/gl4java/GLUFuncJauJNI.java b/gl4java/GLUFuncJauJNI.java index 82159a4..81d92af 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.1.0"; } +{ return "2.8.3.0"; } /** @@ -247,6 +247,26 @@ public final int gluUnProject(double winx, return r; } +public final native void gluTessBeginContour (long tess); +public final native void gluTessBeginPolygon (long tess, boolean[] data); +public final native void gluTessBeginPolygon (long tess, short[] data); +public final native void gluTessBeginPolygon (long tess, byte[] data); +public final native void gluTessBeginPolygon (long tess, int[] data); +public final native void gluTessBeginPolygon (long tess, long[] data); +public final native void gluTessBeginPolygon (long tess, float[] data); +public final native void gluTessBeginPolygon (long tess, double[] data); +public final native void gluTessEndContour (long tess); +public final native void gluTessEndPolygon (long tess); +public final native void gluTessNormal (long tess, double valueX, double valueY, double valueZ); +public final native void gluTessProperty (long tess, int which, double data); +public final native void gluTessVertex ( long tess, double[] location, boolean[] data ); +public final native void gluTessVertex ( long tess, double[] location, byte[] data ); +public final native void gluTessVertex ( long tess, double[] location, short[] data ); +public final native void gluTessVertex ( long tess, double[] location, int[] data ); +public final native void gluTessVertex ( long tess, double[] location, long[] data ); +public final native void gluTessVertex ( long tess, double[] location, float[] data ); +public final native void gluTessVertex ( long tess, double[] location, double[] data ); + /** * C2J Parser Version 3.0 * Jausoft - Sven Goethel Software Development @@ -1203,138 +1223,6 @@ public final int gluUnProject(double winx, /** * Original Function-Prototype : * <pre> - extern void gluTessBeginContour ( GLUtesselator * tess ) ; - * </pre> - */ - public final native void gluTessBeginContour ( - long tess - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ; - * </pre> - */ - public final native void gluTessBeginPolygon ( - long tess, - byte[] data - ) ; - public final native void gluTessBeginPolygon ( - long tess, - short[] data - ) ; - public final native void gluTessBeginPolygon ( - long tess, - int[] data - ) ; - public final native void gluTessBeginPolygon ( - long tess, - float[] data - ) ; - public final native void gluTessBeginPolygon ( - long tess, - double[] data - ) ; - public final native void gluTessBeginPolygon ( - long tess, - boolean[] data - ) ; - public final native void gluTessBeginPolygon ( - long tess, - long[] data - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessEndContour ( GLUtesselator * tess ) ; - * </pre> - */ - public final native void gluTessEndContour ( - long tess - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessEndPolygon ( GLUtesselator * tess ) ; - * </pre> - */ - public final native void gluTessEndPolygon ( - long tess - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ; - * </pre> - */ - public final native void gluTessNormal ( - long tess, - double valueX, - double valueY, - double valueZ - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ; - * </pre> - */ - public final native void gluTessProperty ( - long tess, - int which, - double data - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ; - * </pre> - */ - public final native void gluTessVertex ( - long tess, - double[] location, - byte[] data - ) ; - public final native void gluTessVertex ( - long tess, - double[] location, - short[] data - ) ; - public final native void gluTessVertex ( - long tess, - double[] location, - int[] data - ) ; - public final native void gluTessVertex ( - long tess, - double[] location, - float[] data - ) ; - public final native void gluTessVertex ( - long tess, - double[] location, - double[] data - ) ; - public final native void gluTessVertex ( - long tess, - double[] location, - boolean[] data - ) ; - public final native void gluTessVertex ( - long tess, - double[] location, - long[] data - ) ; - -/** - * Original Function-Prototype : - * <pre> extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ; * </pre> */ diff --git a/gl4java/GLUFuncJauJNInf.java b/gl4java/GLUFuncJauJNInf.java index 0e5e08d..6306c4b 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.1.0"; } +{ return "2.8.3.0"; } /** @@ -247,6 +247,26 @@ public int gluUnProject(double winx, return r; } +public native void gluTessBeginContour (long tess); +public native void gluTessBeginPolygon (long tess, boolean[] data); +public native void gluTessBeginPolygon (long tess, short[] data); +public native void gluTessBeginPolygon (long tess, byte[] data); +public native void gluTessBeginPolygon (long tess, int[] data); +public native void gluTessBeginPolygon (long tess, long[] data); +public native void gluTessBeginPolygon (long tess, float[] data); +public native void gluTessBeginPolygon (long tess, double[] data); +public native void gluTessEndContour (long tess); +public native void gluTessEndPolygon (long tess); +public native void gluTessNormal (long tess, double valueX, double valueY, double valueZ); +public native void gluTessProperty (long tess, int which, double data); +public native void gluTessVertex ( long tess, double[] location, boolean[] data ); +public native void gluTessVertex ( long tess, double[] location, byte[] data ); +public native void gluTessVertex ( long tess, double[] location, short[] data ); +public native void gluTessVertex ( long tess, double[] location, int[] data ); +public native void gluTessVertex ( long tess, double[] location, long[] data ); +public native void gluTessVertex ( long tess, double[] location, float[] data ); +public native void gluTessVertex ( long tess, double[] location, double[] data ); + /** * C2J Parser Version 3.0 * Jausoft - Sven Goethel Software Development @@ -1203,138 +1223,6 @@ public int gluUnProject(double winx, /** * Original Function-Prototype : * <pre> - extern void gluTessBeginContour ( GLUtesselator * tess ) ; - * </pre> - */ - public native void gluTessBeginContour ( - long tess - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessBeginPolygon ( GLUtesselator * tess , GLvoid * data ) ; - * </pre> - */ - public native void gluTessBeginPolygon ( - long tess, - byte[] data - ) ; - public native void gluTessBeginPolygon ( - long tess, - short[] data - ) ; - public native void gluTessBeginPolygon ( - long tess, - int[] data - ) ; - public native void gluTessBeginPolygon ( - long tess, - float[] data - ) ; - public native void gluTessBeginPolygon ( - long tess, - double[] data - ) ; - public native void gluTessBeginPolygon ( - long tess, - boolean[] data - ) ; - public native void gluTessBeginPolygon ( - long tess, - long[] data - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessEndContour ( GLUtesselator * tess ) ; - * </pre> - */ - public native void gluTessEndContour ( - long tess - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessEndPolygon ( GLUtesselator * tess ) ; - * </pre> - */ - public native void gluTessEndPolygon ( - long tess - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessNormal ( GLUtesselator * tess , GLdouble valueX , GLdouble valueY , GLdouble valueZ ) ; - * </pre> - */ - public native void gluTessNormal ( - long tess, - double valueX, - double valueY, - double valueZ - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessProperty ( GLUtesselator * tess , GLenum which , GLdouble data ) ; - * </pre> - */ - public native void gluTessProperty ( - long tess, - int which, - double data - ) ; - -/** - * Original Function-Prototype : - * <pre> - extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ; - * </pre> - */ - public native void gluTessVertex ( - long tess, - double[] location, - byte[] data - ) ; - public native void gluTessVertex ( - long tess, - double[] location, - short[] data - ) ; - public native void gluTessVertex ( - long tess, - double[] location, - int[] data - ) ; - public native void gluTessVertex ( - long tess, - double[] location, - float[] data - ) ; - public native void gluTessVertex ( - long tess, - double[] location, - double[] data - ) ; - public native void gluTessVertex ( - long tess, - double[] location, - boolean[] data - ) ; - public native void gluTessVertex ( - long tess, - double[] location, - long[] data - ) ; - -/** - * Original Function-Prototype : - * <pre> extern GLint gluUnProject ( GLdouble winX , GLdouble winY , GLdouble winZ , const GLdouble * model , const GLdouble * proj , const GLint * view , GLdouble * objX , GLdouble * objY , GLdouble * objZ ) ; * </pre> */ |