blob: 881b23fd613e003f214f1fc295b406e12ba57ddd (
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
36
|
/**
* @(#) GLFunc14.java
*/
package gl4java;
import java.nio.*;
/**
* The base interface for OpenGL native function mapping
*
* @version 2.00, 21. April 1999
* @author Sven Goethel
*/
public interface GLFunc14
extends GLFunc
{
//----------------------------------------------------------------------
// Special-case routines requiring hand coding
//
/** Access to the underlying wglAllocateMemoryNV or
glXAllocateMemoryNV routine, if present. Presence of this
routine can be queried by calling GLContext.gljTestGLProc with
the argument "glAllocateMemoryNV". */
public ByteBuffer glAllocateMemoryNV(int size,
float readFreq,
float writeFreq,
float priority);
//----------------------------------------------------------------------
// All other routines below are autogenerated
//
|