blob: c92900c84634162d6aa96bf9b36a68b477966c45 (
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
61
62
63
64
65
|
/*
* $RCSfile$
*
* Copyright (c) 2004 Sun Microsystems, Inc. All rights reserved.
*
* Use is subject to license terms.
*
* $Revision$
* $Date$
* $State$
*/
/*
* Portions of this code were derived from work done by the Blackdown
* group (www.blackdown.org), who did the initial Linux implementation
* of the Java 3D API.
*/
#include <jni.h>
#include <math.h>
#include "gldefs.h"
#if defined(SOLARIS) || defined(__linux__)
#include <X11/X.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#endif
#ifdef WIN32
#include <windows.h>
#endif
#if defined(SOLARIS) || defined(__linux__)
/*
* Class: javax_media_j3d_NativeScreenInfo
* Method: openDisplay
* Signature: ()J
*/
JNIEXPORT jlong JNICALL
Java_javax_media_j3d_NativeScreenInfo_openDisplay(
JNIEnv *env,
jobject obj)
{
Display* dpy;
dpy = XOpenDisplay(NULL);
return (jlong)dpy;
}
/*
* Class: javax_media_j3d_NativeScreenInfo
* Method: getDefaultScreen
* Signature: (J)I
*/
JNIEXPORT jint JNICALL
Java_javax_media_j3d_NativeScreenInfo_getDefaultScreen(
JNIEnv *env,
jobject obj,
jlong display)
{
Display* dpy = (Display*)display;
return (jint)DefaultScreen(dpy);
}
#endif
|