Quote from: EgonOlsen on August 11, 2016, 07:17:11 AM
Which deprecated features does it use?
Texture texture = new Texture(BitmapHelper.rescale(BitmapHelper.convert(getResources().getDrawable(R.drawable.icon)), 64, 64));
Android Studio reports 'getDrawable(int) is deprecated'
Do I need those import javax.microedition.khronos.opengles.GL10; statements or can I use an Android opengles library and an Android egl rather than the JDK versions?
If possible, could you help me modify this to be more modern Android best practice friendly. You said yourself you are doing things like
mGLView.setEGLConfigChooser(new GLSurfaceView.EGLConfigChooser() {
public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) {...
To support a very old Android device and things like this are no longer necessary.
Sorry if this is asking too much...I would just like to see a version of the code written in a more modern way. I'm trying to do this myself, but would appreciate something from someone with far more experience.
Thank you for a great project