mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-11-22 04:01:33 +00:00
4597b03873
Opens in Android Studio but haven't even tried to build it yet (it won't.. I know that much!)
25 lines
776 B
Java
25 lines
776 B
Java
|
|
package com.drbeef.jkquest;
|
|
|
|
import android.app.Activity;
|
|
import android.view.Surface;
|
|
|
|
import java.nio.ByteBuffer;
|
|
|
|
// Wrapper for native library
|
|
|
|
public class GLES3JNILib
|
|
{
|
|
// Activity lifecycle
|
|
public static native long onCreate( Activity obj, String commandLineParams );
|
|
public static native void onStart( long handle, Object obj );
|
|
public static native void onResume( long handle );
|
|
public static native void onPause( long handle );
|
|
public static native void onStop( long handle );
|
|
public static native void onDestroy( long handle );
|
|
|
|
// Surface lifecycle
|
|
public static native void onSurfaceCreated( long handle, Surface s );
|
|
public static native void onSurfaceChanged( long handle, Surface s );
|
|
public static native void onSurfaceDestroyed( long handle );
|
|
}
|