Android Open Source - picturepuzzle Render Host






From Project

Back to project page picturepuzzle.

License

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.

Java Source Code

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);
}




Java Source Code List

me.crr.interfaces.AABB.java
me.crr.interfaces.InputManagerReceiver.java
me.crr.interfaces.RenderHost.java
me.crr.picturepuzzle.Drawable.java
me.crr.picturepuzzle.FixedArray.java
me.crr.picturepuzzle.GameActivity.java
me.crr.picturepuzzle.InputManager.java
me.crr.picturepuzzle.MainMenuActivity.java
me.crr.picturepuzzle.PicturePuzzle.java
me.crr.picturepuzzle.PieceTransitionAnimation.java
me.crr.picturepuzzle.Piece.java
me.crr.picturepuzzle.Rectangle.java
me.crr.picturepuzzle.Render.java
me.crr.picturepuzzle.StatsActivity.java
me.crr.picturepuzzle.Texture.java
me.crr.picturepuzzle.WinTime.java