diff options
author | Sven Gothel <[email protected]> | 2002-04-25 03:21:58 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2002-04-25 03:21:58 +0000 |
commit | 53a0faa0cce4546b441cb6af033adaabd2f1da94 (patch) | |
tree | e92bb216d2b13269c179d4e049ec5384bca1d25e /C2J/manual/glu-manualCodedVirt-14.java | |
parent | 6114297dac0848d470a3211915bea64f49d584e7 (diff) |
added pepijn's bugfix (jdk <= 1.3 GC, tesselation)
SGI Irix capable code ..
correct NIO usage for tesselation ..
minor stuff ..
Diffstat (limited to 'C2J/manual/glu-manualCodedVirt-14.java')
-rw-r--r-- | C2J/manual/glu-manualCodedVirt-14.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/C2J/manual/glu-manualCodedVirt-14.java b/C2J/manual/glu-manualCodedVirt-14.java index 642fb4f..470c16a 100644 --- a/C2J/manual/glu-manualCodedVirt-14.java +++ b/C2J/manual/glu-manualCodedVirt-14.java @@ -31,5 +31,5 @@ public void gluTessBeginPolygon ( long tess, Buffer data) ; extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ;
* </pre>
*/
-public void gluTessVertex ( long tess, double[] location, Buffer data) ;
+public void gluTessVertex ( long tess, DoubleBuffer location, Buffer data) ;
|