diff options
author | Sven Gothel <[email protected]> | 2011-11-27 00:44:18 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-11-27 00:44:18 +0100 |
commit | 9bdc043059abc927a0cdb72b4e775d097e3c8876 (patch) | |
tree | d2852076c8211fbde96536e38d05a7a58e5b0308 /src/newt/classes/jogamp | |
parent | 457803bac0bf2328de160daa35542fd7c854dc4b (diff) |
NEWT OSX: Add stopNSApplication(), revert commit c26d6005e1fe74e9aee01d9d72942f566884fcd2
Diffstat (limited to 'src/newt/classes/jogamp')
-rw-r--r-- | src/newt/classes/jogamp/newt/driver/macosx/MacDisplay.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/newt/classes/jogamp/newt/driver/macosx/MacDisplay.java b/src/newt/classes/jogamp/newt/driver/macosx/MacDisplay.java index 527fdac6d..2ac98f255 100644 --- a/src/newt/classes/jogamp/newt/driver/macosx/MacDisplay.java +++ b/src/newt/classes/jogamp/newt/driver/macosx/MacDisplay.java @@ -72,8 +72,12 @@ public class MacDisplay extends DisplayImpl { public static void runNSApplication() { runNSApplication0(); } + public static void stopNSApplication() { + stopNSApplication0(); + } private static native boolean initNSApplication0(); private static native void runNSApplication0(); + private static native void stopNSApplication0(); } |