diff options
Diffstat (limited to 'gl4java/GLUFuncJauJNI.java')
-rw-r--r-- | gl4java/GLUFuncJauJNI.java | 154 |
1 files changed, 21 insertions, 133 deletions
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> */ |