aboutsummaryrefslogtreecommitdiffstats
path: root/C2J/manual/glu-manualCodedImplJNI1-14.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2002-04-13 04:31:11 +0000
committerSven Gothel <[email protected]>2002-04-13 04:31:11 +0000
commit4c7204560056fe3bb0289c64020cbb9df17a757b (patch)
tree8174ef61a11e798c30e9c009fd285015a29b2e15 /C2J/manual/glu-manualCodedImplJNI1-14.java
parent3792fcfde48b79cef2242990569a8aba15d7a690 (diff)
Merged the Tesselation patch by
Pepijn Van Eeckhoudt <[email protected]>. I have added minor cleanups .. to it.
Diffstat (limited to 'C2J/manual/glu-manualCodedImplJNI1-14.java')
-rw-r--r--C2J/manual/glu-manualCodedImplJNI1-14.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/C2J/manual/glu-manualCodedImplJNI1-14.java b/C2J/manual/glu-manualCodedImplJNI1-14.java
index 7f3837c..92af083 100644
--- a/C2J/manual/glu-manualCodedImplJNI1-14.java
+++ b/C2J/manual/glu-manualCodedImplJNI1-14.java
@@ -17,3 +17,19 @@ 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) ;
+