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/dynamic/DynamicRenderer.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

  
......
39 39
   {  
40 40
   private DynamicSurfaceView mView;
41 41
   private DistortedObject mBackground;
42
   private DistortedBitmapGrid mGrid;
42
   private GridFlat mGrid;
43 43
   private Canvas mCanvas;
44 44
   private Bitmap mBitmap;
45 45
   private Paint mPaint;
......
80 80
     texW = width;
81 81
     texH = height;
82 82

  
83
     mGrid       = new DistortedBitmapGrid(1,1);
83
     mGrid       = new GridFlat(1,1);
84 84
     mBackground = new DistortedObject(texW,texH,1);
85 85
     mBitmap     = Bitmap.createBitmap(texW,texH, Bitmap.Config.ARGB_8888);
86 86
     mCanvas     = new Canvas(mBitmap);

Also available in: Unified diff