Add all functions that can be called platform independently.

This commit is contained in:
Mark Bernard 2004-12-08 19:16:28 +00:00
parent 0b746d6392
commit da5f3d9577
1 changed files with 3 additions and 0 deletions

View File

@ -451,9 +451,12 @@ public class IL {
*/ */
public static void create() throws LWJGLException { public static void create() throws LWJGLException {
if (!created) { if (!created) {
nCreate();
IL.initNativeStubs(); IL.initNativeStubs();
IL.ilInit(); IL.ilInit();
created = true; created = true;
} }
} }
public static native void nCreate();
} }