blob: 0ef534df13c1950669d13ecc1dee8c843b2dcc28 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# This .cfg file is used to generate the class which implements the GL
# interface on a particular platform.
Package net.java.games.jogl
Style ImplOnly
JavaClass GL
ImplPackage net.java.games.jogl.impl.x11
ImplJavaClass X11GLImpl
Include gl-common-x11.cfg
Include gl-glx-common.cfg
EmitProcAddressTable true
ProcAddressTableClassName GLProcAddressTable
ContextVariableName _context
CustomCCode #include <inttypes.h>
CustomCCode #include <X11/Xlib.h>
CustomCCode /* Define GL_GLEXT_PROTOTYPES so that the OpenGL extension prototypes in
CustomCCode "glext.h" are parsed. */
CustomCCode #define GL_GLEXT_PROTOTYPES
CustomCCode /* Define GLX_GLXEXT_PROTOTYPES so that the OpenGL extension prototypes in
CustomCCode "glxext.h" are parsed. */
CustomCCode #define GLX_GLXEXT_PROTOTYPES
CustomCCode /* Include the OpenGL headers */
CustomCCode #include <GL/gl.h>
CustomCCode #include <GL/glx.h>
CustomCCode #include <GL/glxext.h>
CustomCCode /* Provide Windows typedefs */
CustomCCode typedef void* LPVOID;
CustomCCode typedef unsigned int* PUINT;
CustomJavaCode X11GLImpl public X11GLImpl(X11GLContext context) {
CustomJavaCode X11GLImpl this._context = context;
CustomJavaCode X11GLImpl }
CustomJavaCode X11GLImpl public boolean isFunctionAvailable(String glFunctionName)
CustomJavaCode X11GLImpl {
CustomJavaCode X11GLImpl return _context.isFunctionAvailable(glFunctionName);
CustomJavaCode X11GLImpl }
CustomJavaCode X11GLImpl public boolean isExtensionAvailable(String glExtensionName)
CustomJavaCode X11GLImpl {
CustomJavaCode X11GLImpl return _context.isExtensionAvailable(glExtensionName);
CustomJavaCode X11GLImpl }
CustomJavaCode X11GLImpl private X11GLContext _context;
CustomJavaCode X11GLImpl /**
CustomJavaCode X11GLImpl * Provides platform-independent access to the wglAllocateMemoryNV /
CustomJavaCode X11GLImpl * glXAllocateMemoryNV extension.
CustomJavaCode X11GLImpl */
CustomJavaCode X11GLImpl public java.nio.ByteBuffer glAllocateMemoryNV(int arg0, float arg1, float arg2, float arg3) {
CustomJavaCode X11GLImpl return glXAllocateMemoryNV(arg0, arg1, arg2, arg3);
CustomJavaCode X11GLImpl }
IncludeAs CustomJavaCode X11GLImpl gl-impl-CustomJavaCode.java
IncludeAs CustomCCode gl-impl-CustomCCode.c
|