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; /*ww w. j ava2s . c om*/ import android.content.Context; import android.opengl.GLSurfaceView; public class CellmaticaLiveWallpaper extends GLSurfaceView { public CellmaticaLiveWallpaper(Context context) { super(context); // Create an OpenGL ES 2.0 context setEGLContextClientVersion(2); // Set the Renderer for drawing on the GLSurfaceView setRenderer(new CellmaticaRenderer()); // Render the view only when there is a change in the drawing data setRenderMode(GLSurfaceView.RENDERMODE_WHEN_DIRTY); } }