| 19 | // Wrapper for native library |
| 20 | |
| 21 | public class GL2JNILib { |
| 22 | |
| 23 | static { |
| 24 | System.loadLibrary("gl2jni"); |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * @param width the current view width |
| 29 | * @param height the current view height |
| 30 | */ |
| 31 | public static native void init(int width, int height); |
| 32 | public static native void step(); |
| 33 | } |
nothing calls this directly
no test coverage detected