Back to project page picturepuzzle.
The source code is released under:
GNU General Public License
If you think the Android project picturepuzzle 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 me.crr.interfaces; /* ww w. jav a 2 s. c om*/ import javax.microedition.khronos.opengles.GL10; public interface RenderHost { /** * Called at the end of the screen being changed */ public void screenChanged(GL10 gl); /** * Called at the end of the screen being created */ public void screenCreated(GL10 gl); /** * Called when the frame is starting drawing */ public void frameStarted(GL10 gl); /** * Called when the frame has ended drawing */ public void frameEnded(GL10 gl); }