diff options
Diffstat (limited to 'gl4java/GLUFunc14JauJNI.java')
-rw-r--r-- | gl4java/GLUFunc14JauJNI.java | 179 |
1 files changed, 37 insertions, 142 deletions
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> */ |