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.picturepuzzle; //w w w . j av a2s .c om import javax.microedition.khronos.opengles.GL10; public interface Drawable { public abstract void preDraw(GL10 gl); public abstract void draw(GL10 gl); public abstract void postDraw(GL10 gl); }