From http://www.jwz.org/xscreensaver/xscreensaver-5.34.tar.gz
[xscreensaver] / android / project / xscreensaver / src / org / jwz / xscreensaver / CallNative.java
1 package org.jwz.xscreensaver;
2
3 public class CallNative {
4
5     void onSurfaceCreated() {
6         nativeInit();
7     }
8
9     void onSurfaceChanged(int w, int h) {
10         nativeResize(w, h);
11     }
12
13     void onDrawFrame() {
14         nativeRender();
15     }
16
17     void onDone() {
18         nativeDone();
19     }
20
21     public static native void nativeInit();
22     public static native void nativeResize(int w, int h);
23     public static native void nativeRender();
24     public static native void nativeDone();
25 }