diff options
author | Sven Gothel <[email protected]> | 2002-04-13 04:31:11 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2002-04-13 04:31:11 +0000 |
commit | 4c7204560056fe3bb0289c64020cbb9df17a757b (patch) | |
tree | 8174ef61a11e798c30e9c009fd285015a29b2e15 /C2J/manual/glu-manualCodedImplJNI2.java | |
parent | 3792fcfde48b79cef2242990569a8aba15d7a690 (diff) |
Merged the Tesselation patch by
Pepijn Van Eeckhoudt <[email protected]>.
I have added minor cleanups .. to it.
Diffstat (limited to 'C2J/manual/glu-manualCodedImplJNI2.java')
-rw-r--r-- | C2J/manual/glu-manualCodedImplJNI2.java | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/C2J/manual/glu-manualCodedImplJNI2.java b/C2J/manual/glu-manualCodedImplJNI2.java index 24fe05d..ab3b206 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.1.0"; } +{ return "2.8.3.0"; } /** @@ -224,3 +224,23 @@ 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 ); + |