blob: 5781fc2333efbed0fce67794e976e6dd774f3662 (
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
|
#ifndef OPENGLMISC
#define OPENGLMISC
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#ifdef _WIN32_
#include "winstuff.h"
#endif
#include <jni.h>
#include "jnitools.h"
#include "gltool.h"
#ifndef LIBAPIENTRY
#define LIBAPIENTRY
#endif
#ifndef LIBAPI
#define LIBAPI extern
#endif
LIBAPI char libGLName[800];
LIBAPI char libGLUName[800];
/**
* gets the capabilities outta java's GLCapabilities object 'capsObj'
* and puts those values to the C-Struct GLCapabilities !
*/
LIBAPI jboolean LIBAPIENTRY javaGLCapabilities2NativeGLCapabilities
( JNIEnv *env,
jobject capsObj,
GLCapabilities *glCaps );
/**
* gets the capabilities outta the C-Struct GLCapabilities
* and puts those values to java's GLCapabilities object 'capsObj'
*/
LIBAPI jboolean LIBAPIENTRY nativeGLCapabilities2JavaGLCapabilities
( JNIEnv *env,
jobject capsObj,
GLCapabilities *glCaps );
/* testJavaGLTypes does important implementation plattformspecific checks:
*
* o do fit the JNI <-> GL Variables-Type Mapping
* o IF ERROR OR VERBOSE -> DUMP JNI,GL Type-Length
*/
LIBAPI jboolean LIBAPIENTRY testJavaGLTypes(jboolean verbose);
#endif
|