blob: db186f37356f14356903e60074196c6947788a0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/**
* @(#) GLUFunc14JauJNI.java
*/
package gl4java;
import java.nio.*;
/**
* The default implementation class for GLU native function mapping
*
* @version 2.00, 21. April 1999
* @author Sven Goethel
*/
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, DoubleBuffer location, Buffer data) ;
|