Update of /cvsroot/java-game-lib/LWJGL/src/native/common
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27855/src/native/common
Modified Files:
org_lwjgl_opengl_Display.h
Log Message:
Added setLocation support for linux
Index: org_lwjgl_opengl_Display.h
===================================================================
RCS file: /cvsroot/java-game-lib/LWJGL/src/native/common/org_lwjgl_opengl_Display.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- org_lwjgl_opengl_Display.h 9 Aug 2004 11:55:48 -0000 1.4
+++ org_lwjgl_opengl_Display.h 15 Sep 2004 17:44:38 -0000 1.5
@@ -11,6 +11,8 @@
/* Inaccessible static: initial_mode */
/* Inaccessible static: timeNow */
/* Inaccessible static: timeThen */
+/* Inaccessible static: x */
+/* Inaccessible static: y */
/* Inaccessible static: title */
/* Inaccessible static: fullscreen */
/* Inaccessible static: vsync */
@@ -27,10 +29,10 @@
/*
* Class: org_lwjgl_opengl_Display
* Method: nCreateWindow
- * Signature: (Lorg/lwjgl/opengl/DisplayMode;Z)V
+ * Signature: (Lorg/lwjgl/opengl/DisplayMode;ZII)V
*/
JNIEXPORT void JNICALL Java_org_lwjgl_opengl_Display_nCreateWindow
- (JNIEnv *, jclass, jobject, jboolean);
+ (JNIEnv *, jclass, jobject, jboolean, jint, jint);
/*
* Class: org_lwjgl_opengl_Display
@@ -184,6 +186,14 @@
JNIEXPORT void JNICALL Java_org_lwjgl_opengl_Display_nSetVSyncEnabled
(JNIEnv *, jclass, jboolean);
+/*
+ * Class: org_lwjgl_opengl_Display
+ * Method: nReshape
+ * Signature: (IIII)V
+ */
+JNIEXPORT void JNICALL Java_org_lwjgl_opengl_Display_nReshape
+ (JNIEnv *, jclass, jint, jint, jint, jint);
+
#ifdef __cplusplus
}
#endif
|