Back to project page cellmatica.
The source code is released under:
GNU General Public License
If you think the Android project cellmatica listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ensdac.cellmatica; // w w w . ja v a 2s .c om import javax.microedition.khronos.egl.EGLConfig; import javax.microedition.khronos.opengles.GL10; import android.opengl.GLSurfaceView.Renderer; public class CellmaticaRenderer implements Renderer { @Override public void onSurfaceCreated(GL10 gl, EGLConfig config) { // TODO Auto-generated method stub } @Override public void onSurfaceChanged(GL10 gl, int width, int height) { // TODO Auto-generated method stub } @Override public void onDrawFrame(GL10 gl) { // TODO Auto-generated method stub } }