Project

General

Profile

« Previous | Next » 

Revision 10b7e588

Added by Leszek Koltunski over 7 years ago

Rename various classes; fix a bug in Around the World.

View differences:

src/main/java/org/distorted/examples/effectqueue/EffectQueueRenderer.java
29 29
import android.opengl.GLES20;
30 30
import android.opengl.GLSurfaceView;
31 31

  
32
import org.distorted.library.DistortedBitmapGrid;
32
import org.distorted.library.GridFlat;
33 33
import org.distorted.library.DistortedObject;
34 34
import org.distorted.library.Distorted;
35 35
import org.distorted.library.EffectNames;
......
51 51
  private int texWidth, texHeight;
52 52

  
53 53
  DistortedObject mBackground;
54
  DistortedBitmapGrid mGrid;
54
  GridFlat mGrid;
55 55

  
56 56
///////////////////////////////////////////////////////////////////////////////////////////////////
57 57

  
......
67 67
    texWidth = BWID;
68 68
    texHeight= BHEI;
69 69

  
70
    mGrid      = new DistortedBitmapGrid(80,80*texHeight/texWidth);
70
    mGrid      = new GridFlat(80,80*texHeight/texWidth);
71 71
    mBackground= new DistortedObject(texWidth,texHeight,1);
72 72

  
73 73
    mBackground.addEventListener(this);

Also available in: Unified diff